2024-25 Syllabus
2024-25 Syllabus
Pre-requisite Knowledge of
1. Inverse of a matrix, addition, multiplication and transpose of a matrix.
2. Algebra of Complex Numbers, Cartesian, polar and exponential form of complex number.
Course Objectives
1. To develop the basic Mathematical skills of engineering students that are imperative for effec-
tive understanding of engineering subjects. The topics introduced will serve as basic tools for
specialized studies in many fields of engineering and technology.
2. To provide hands on experience using SciLab software to handle real life problems.
Course Outcomes
COs Course Outcomes Blooms Blooms
Level Description
CO1 Apply principles of basic operations of matrices to find rank and L3 Apply
echelon form of matrices to solve system of simultaneous equations.
CO2 Illustrate the basic concepts of Complex numbers and apply the L4 Analyze
knowledge of complex numbers to solve problems in hyperbolic
functions and logarithmic functions.
CO3 Illustrate the knowledge of Expansion of function. L4 Analyze
CO4 Illustrate the basic principles of Partial differentiation and it’s ap- L4 Analyze
plication to find maxima and minima.
CO5 Illustrate SciLab programming techniques to the solution of linear L4 Analyze
and simultaneous algebraic equations.
5
Course Contents
3.1 Taylor’s Theorem (Statement only), Taylor’s series and Maclaurin’s series (Statement only). Ex-
pansion of standard functions.
Unit-IV Partial Differentiation 09 Hrs.
Prerequisite: Derivative
4.1 Partial Differentiation: Function of several variables, Partial derivatives of first and higher order,
Differentiation of composite function, Total differentials and Implicit functions.
4.2 Euler’s Theorem on Homogeneous functions with two and three independent variables (with proof).
Deductions from Euler’s theorem.
Unit-V Applications of Partial Differentiation 04 Hrs.
Prerequisite: Maxima and Minima of single variable function, Partial derivatives
6
Unit-VI Numerical Solutions of Transcendental Equations,
System of Linear and Non-Linear Equations, Curve fitting 04 Hrs.
Prerequisite: Solution of system of equations
Reference Books
2. Advanced Engineering Mathematics, Erwin Kreyszig, Wiley Eastern Limited, 9th Ed.
7. Applied Numerical Methods with MATLAB for Engineers and Scientists by Steven Chapra,
McGraw Hill.
8. Elementary Linear Algebra with Application by Howard Anton and Christ Rorres, 6th edition,
John Wiley and Sons, INC.
Text Books:
7
Mathematics - I Tutorial (RCP23FTBS101)
Teaching Scheme Examination Scheme
Lectures : - - - - Term Test : - - - -
Practical : - - - - Teacher Assessment : 25 Marks
Tutorial : 01 Hrs./week End Sem Exam :- - - -
Credit : 01 Total Marks : 25 Marks
Minimum eight tutorials batchwise (including SciLab programs) from the above sug-
gested list or any other experiment based on syllabus will be included, which would help
the learner to apply the concept learnt.
Reference Books
1. Foundations of Complex Analysis, S. Ponnusamy, Narosa Publications.
2. Advanced Engineering Mathematics, Erwin Kreyszig, Wiley Eastern Limited, 9th Ed.
3. Advanced Engineering Mathematics by H. K. Dass, 28th edition, S. Chand 2010.
4. Introductory Methods of Numerical Analysis, S.S. Sastry, Eastern Economy Edition.
5. Numerical Methods, M. K. Jain, R. K. Jain, S. R. K. Iyengar, New Age International Publishers.
6. Matrices, Shanti Narayan, S. Chand publication.
7. Applied Numerical Methods with MATLAB for Engineers and Scientists by Steven Chapra,
McGraw Hill.
8. Elementary Linear Algebra with Application by Howard Anton and Christ Rorres, 6th edition,
John Wiley and Sons, INC.
Text Books:
1. Higher Engineering Mathematics, Dr. B. S. Grewal, Khanna Publication.
2. Advanced Engineering Mathematics, Dennis G. Zill, Warren S. Wright
8
Structured Programming using C
(RCP23FCES101)
Course Objectives
1. To familiarize with the logic of Computer Programming.
2. To provide exposure in developing algorithm, flowchart and thereby writing efficient codes for
user defined problem.
Course Outcomes
COs Course Outcomes Blooms Blooms
Level Description
CO1 Implement the programs in C . L3 Apply
CO2 Debug the C programs. L3 Apply
9
Course Contents
10
6.2 Pointer Arithmetic.
6.3 Call by value, call by Reference.
Text Books
2. Behrouz Forouzan, “A Computer Science –Structure Programming Approaches using C”, Cen-
gage Learning.
3. Byron S. Gottfried, “Programming with C”, Schaum’s Outline Series, Tata McGraw-Hill, 2006.
Reference Books
4. Pradeep Day and Manas Gosh, “Programming in C”, Oxford University Press.
11
Structured Programming using C Laboratory
(RCP23FLES101)
Course Objectives
1. To familiarize with the logic of Computer Programming.
2. To provide exposure in developing algorithm, flowchart and thereby writing efficient codes for
user defined problem.
Course Outcomes
COs Course Outcomes Blooms Blooms
Level Description
CO1 Implement the programs in C . L3 Apply
CO2 Debug the C programs. L3 Apply
12
List of Practicals/ Experiments/ Assignments
1. Write a program to swap two variables values with and without using third variable. Write
algorithm and draw flowchart for the same.
2. Write a program to check odd or even number: (a) using modulus operator (b) using conditional
operator.
3. Design and develop a C program to read a year as an input and find whether it is leap year or
not. Also consider the end of the centuries. Write algorithm and draw flowchart for the same.
5. Design and develop a flowchart or an algorithm that takes three coefficients (a, b and c) of a
Quadratic equation (ax2 +bx+c=0) as input and compute all possible roots. Implement a C
program for the developed flowchart/algorithm and execute the same to output the possible
roots for a given set of coefficients with appropriate messages.
7. Write a menu driven program to perform simple arithmetic operations based on the user’s choice.
The user will indicate the operation to be performed using the signs e.g. + for addition, etc.
Write an algorithm and draw flowchart for same.
8. Write a program to read a number of more than one digit, reverse the number and display the
sum of digits of numbers. Write algorithm and draw flowchart for the same.
9. Write programs to display each of the following patterns. Write algorithm and draw flowchart
for the same.
A) 1 B) A
2 1 A B A
3 2 1 A B C B A
4 3 2 1 A B C D C B A
5 4 3 2 1 A B C D E D C B A
10. Write a C program to find maximum and minimum between two numbers using functions. Write
algorithm and draw flowchart for the same.
11. Write a C program to find GCD of two integers by using recursive function.
12. Write a C program to find both the largest and smallest number in a list of integers. Write
algorithm and draw flowchart for the same.
13
13. Develop, implement and execute a C program that reads two matrices A (m x n) and B (p x q)
and Compute product of matrices A and B. Read matrix A and matrix B in row major order
and in column major order respectively. Print both the input matrices and resultant matrix
with suitable headings and output should be in matrix format only.
14. Write a program for deletion of an element from the specified location from Array.
15. Write a C program using user defined functions to determine whether the given string is palin-
drome or not.
16. Write C program to count the number of lines, words and characters in a given text.
17. Write a program to swap two numbers using a function. Pass the values to be swapped to this
function using the call-by-value method and call-by-reference method.
18. Write a C program to find the length of the string using pointer.
Text Books
2. Behrouz Forouzan, “A Computer Science –Structure Programming Approaches using C”, Cen-
gage Learning.
3. Byron S. Gottfried, “Programming with C”, Schaum’s Outline Series, 2nd Edition, Tata McGraw-
Hill, 2006.
Reference Books
3. Pradeep Day and Manas Gosh, “Programming in C”, Oxford University Press.
14
Physics (RCP23FCBS102)
Pre-requisite
1. Foundations of physics and mathematics till HSc or equivalent is necessary to comprehend
engineering physics curriculum effectively.
Course Objectives
1. Identify and understand the fundamental physical principles underlying engineering technolo-
gies—a prerequisite to become successful engineer.
Course Outcomes
COs Course Outcomes Blooms Blooms
Level Description
CO1 Relate the scope and foundation of quantum mechanics, quantum L2 Understand
computing and its role in development of modern technology.
CO2 Apply the foundations of Optics and Photonics in precision mea- L3 Apply
surements indispensable for the development of modern commu-
nication technology.
CO3 Assimilate the concepts of Electrodynamics, which are prerequi- L2 Understand
site in modern developments for signal communications, Antenna
Theory etc.
CO4 Explore basic sensing techniques for physical measurements in L4 Analyze
modern instrumentation.
15
Course Contents
Introduction (Matter waves, De Broglie hypothesis, Wave Packet). Concept of Phase velocity and
group velocity and relation with particle velocity. Heisenberg Uncertainty Principle. Wave function;
Physical interpretation of wave function. Schrodinger’s time dependent wave equation; time indepen-
dent wave equation; Particle trapped in one dimensional infinite potential well.
Fundamentals of Quantum Computing (Difference between classical computing & quantum comput-
ing, Qubits, Quantum Superposition theorem, Quantum Entanglement theorem, Quantum cryptog-
raphy)
periment, diffraction
Thin Film Interference: Introduction (division of amplitude), Stoke’s relation, Interference in thin
film of constant thickness in reflected light, Formation of colors in thin film (point source & extended
source); Interference in Wedge shaped film; Formation of Newton’s rings; Applications (Antireflecting
& High reflecting films).
Diffraction: Introduction (distinguish between interference & diffraction), Fresnel & Fraunhofer diffrac-
tion, Fraunhofer diffraction at single slit & double slit (qualitative), Diffraction Grating, Absent spec-
tra, Resolving power & Dispersive power of a grating (qualitative), Applications.
Laser: Spontaneous emission and Stimulated emission; Einstein’s coefficients, Metastable state, Res-
onant cavity, Population inversion, three & four level lasers, types of pumping, Helium Neon laser;
Nd:YAG laser, Applications.
Fiber optics: Structure of an optical fiber, Types: Single mode & Multimode, Step index & Graded
index, Numerical Aperture for step index fiber, Modes of propagation, V number, Attenuation, Ap-
plications (Optical fibre Transmission).
16
Unit-IV Electrodynamics 04 Hrs
Prerequisite: Coulomb’s law-force between two-point charges, electric field due to a point charge, electric field
due to a dipole, Cartesian cylindrical & Spherical co-ordinate system, Gauss’s law for electrostatics & magneto
Scalar and Vector fields, Physical significance of gradient, curl and divergence in Cartesian co-ordinate
system. Divergence theorem, Stokes theorem. Maxwell’s equations (Free space and time varying fields)
& Applications.
Reference Books
1. Introduction to Quantum Mechanics- David. J. Griffiths, Cambridge university Press.
8. Handbook of Modern Sensors Physics design and application- Jacob Fraden, Springer, AIP
press.
Text Books
1. A textbook of Engineering Physics-Avadhanulu and Kshirsagar, S. Chand.
17
7. Engineering Physics- Wiley Editors, Wiley Publication.
18
Physics Laboratory & Tutorial
(RCP23FLBS102)
Course Objectives
1. To provide hands-on experience of basic physics instruments.
2. To introduce students to the modern equipments, precision techniques and experimental meth-
ods for observing, understanding and verifying laws optics.
3. To provide students with a basic understanding of the Physics concept through experiments
that may be required by engineers in the course of their careers.
4. To introduce the learners with the basics of light wave and electron conduction in semiconductor
to facilitate his learning of the concepts in modern physics.
5. This course will cultivate skills for formulating and solving physics problems.
Course Outcomes
COs Course Outcomes Blooms Blooms
Level Description
CO1 Develop skill to impart practical knowldge in real time solution L6 Create
CO2 Ability to state and verify various laws which they have studied, L3 Apply
through experiments
CO3 Understand principle, concept, working and application of new L2 Understand
tehnology and comparision of results with theoretical calculations
CO4 Gain knowldge of new concept in the solution of pratical oriented L2 Understand
problem and to understand more deep knowldge about the solution
to therotical knowldge
19
List of Practical /Experiments/Assignments:
Tutorials
A minimum of 8 tutorial sessions on topics covering the entire syllabus should be con-
ducted batchwise for effective interactive sessions focusing on better understanding of
the subject.
Books Recommended
1. A textbook of Engineering Physics-Avadhanulu and Kshirsagar, S. Chand.
20
11. Engineering Physics – V Rajendran, McGraw Hill Educations.
Reference Books
1. Introduction to Quantum Mechanics- David. J. Griffiths, Cambridge university Press.
8. MHandbook of Modern Sensors Physics design and application- Jacob Fraden, Springer, AIP
press.
21
Computational Engineering Mechanics
(RCP23FCES102)
Pre-requisite
1. Basics of Trigonometry and Matrices.
Course Objectives
1. To acquaint learners with the concept of equilibrium.
Course Outcomes
COs Course Outcomes Blooms Blooms
Level Description
CO1 Illustrate the effect of force and moment to determine the resultant L2 Understand
of force system.
CO2 Apply the concept of equilibrium systems with the help of free L3 Apply
body diagram.
CO3 Correlate real life application to friction and estimate the Power L4 Analyse
transmitted by the belt.
CO4 Apply the concept of geometric transformations to find the trans- L5 Evaluate
formed position of an element/object.
CO5 Analyze general plane motion of rigid bodies. L4 Analyze
22
Course Contents
Books Recommended:
Text Books
23
Reference Books
3. Beer, F. P. and Johnston, E. R., Vector Mechanics for Engineers - Statics and Dynamics, 3rd
Edn., Tata McGraw Hill Publishing Company, 2001.
4. Bhattacharya B., Engineering Mechanics, 3rd Edn., Oxford University press, 2008.
5. Ramkumar Agarwal, Engineering Mechanics, 1st Edn., Agarwal Education Centre: Self Publi-
cation, 2021.
6. Nelson and Mc Lean, Engineering Mechanics, 5th Edn., Tata McGraw Hill, 1997.
7. Harsh Bhasin, Python For Beginners, 1st Edn., New Age International Publishers, 2018.
8. M. Groover, CAD/CAM: Computer-Aided Design and Manufacturing, 1st Edn., Pearson Edu-
cation India, 2013.
9. Rudra Pratap, Getting Started with MATLAB: A Quick Introduction for Scientists and Engi-
neers, 1st Edn., Oxford University Press, 2010.
24
Computational Engineering Mechanics
Laboratory (RCP23FLES102)
Course Objectives
1. To study basic laws of engineering mechanics and its applications to solve the problems.
Course Outcomes
COs Course Outcomes Blooms Blooms
Level Description
CO1 Understand basic principles of mechanics L2 Understand
CO2 Analyze the law’s of forces for coplaner, concurrent force systems L5 Evaluate
CO3 Analyze the characteristics of coplaner, non concurrent force sys- L5 Evaluate
tems
CO4 Determine coefficients of friction and coefficients of restitution L5 Evaluate
CO5 Use software programming packages for solving Engineering Me- L3 Apply
chanics problems
25
List of Practicals/Experiments:
10. Programming exercises on Friction. (Application of software packages for computation of friction
forces.)
11. Plotting of Motion Curves. (Application of software packages for plotting of motion curves.)
13. Simulating Kinematics of Rigid Body. (Application of software packages for simulating Kine-
matics of Rigid Body.)
Laboratory work should contain total 8 experiments/exercises (Any five from 1 to 7 and
any three from 8 to 13).
Books Recommended:
Text Books
1. A. K. Tayal, Engineering Mechanics, 14th Edn., Umesh Publication, 2011.
26
Reference Books
3. Beer, F. P. and Johnston, E. R., Vector Mechanics for Engineers - Statics and Dynamics, 3rd
Edn., Tata McGraw Hill Publishing Company, 2001.
4. Bhattacharya B., Engineering Mechanics, 3rd Edn., Oxford University press, 2008.
5. Ramkumar Agarwal, Engineering Mechanics, 1st Edn., Agarwal Education Centre: Self Publi-
cation, 2021.
6. Nelson and Mc Lean, Engineering Mechanics, 5th Edn., Tata McGraw Hill, 1997.
7. Harsh Bhasin, Python For Beginners, 1st Edn., New Age International Publishers, 2018.
8. M. Groover, CAD/CAM: Computer-Aided Design and Manufacturing, 1st Edn., Pearson Edu-
cation India, 2013.
9. Rudra Pratap, Getting Started with MATLAB: A Quick Introduction for Scientists and Engi-
neers, 1st Edn., Oxford University Press, 2010.
27
Basic Electrical Engineering & Digital
Electronics (RCP23FCES103)
Pre-requisite
1. Knowledge of basic physics.
Course Objectives
1. To develop basic understanding of concepts of DC and AC circuits, and analyse their operations
using various methods and techniques.
Course Outcomes
COs Course Outcomes Blooms Blooms
Level Description
CO1 Apply the knowledge of theorems/laws to analyse the DC circuits. L3 Apply
CO2 Analyse single phase AC circuits. L4 Analyse
CO3 Demonstrate knowledge of basic number system, logic gates and L3 Apply
sequential circuits.
28
Course Contents
Source Transformation
Superposition Theorem
Thevenin’s Theorem
Phasor representation
Decimal, Binary, Binary coded decimal, Octal, Hexadecimal number systems and conversions
Basic gates
Universal gates
Boolean algebra
De Morgan’s Laws
29
Unit-V Latches and Flip flops 03 Hrs.
Introduction to latches
Reference Books
1. D. P. Kothari and I. J. Nagrath, “Basic Electrical Engineering”, Tata McGraw Hill, 2010.
Text Books
2. R. R. Singh, “Network Analysis and Synthesis”, McGraw Hill, 2nd Edition, 2019.
30
Basic Electrical Engineering & Digital
Electronics Laboratory & Tutorial
(RCP23FLES103)
Course Objectives
1. To develop basic understanding of concepts of DC and AC circuits and analyse their operations
using various techniques.
Course Outcomes
COs Course Outcomes Blooms Blooms
Level Description
CO1 Verification of DC theorems/laws to analyse the DC circuits. L3 Apply
CO2 Understand basic operation of AC circuits L2 Understand
CO3 Verify and analyze the truth table of different logic gate and cir- L3 Apply
cuits.
CO4 Design and implement basic gates using universal gates. L6 Create
31
Suggested experiments:
NOTE: Batchwise laboratory work of minimum eight experiments from the above
suggested list or any other experiment based on syllabus will be included, which would
help the learner to apply the concept learnt.
NOTE: Batchwise tutorial sessions are to be conducted on topics which would help
the learner to identify/analyze the problem and to apply problem solving techniques
learnt.
Reference Books
1. D. P. Kothari and I. J. Nagrath, “Basic Electrical Engineering”, Tata McGraw Hill, 2010.
Text Books
1. B. R. Patil, “Basic Electrical Engineering”, Oxford Higher Education, 2016.
32
Liberal Learning- Health and Wellness- Mind
and Body Management (RCP23FTLL101)
Course Objectives
1. To acquaint learners with the basic concept of Health and wellbeing.
Course Outcomes
COs Course Outcomes Blooms Blooms
Level Description
CO1 Implement the knowledge of Health and wellness in daily lives. L3 Apply
CO2 Apply appropriate & innovative methods to avoid risks from harm- L3 Apply
ful habits.
CO3 Employ personal development (both physical& emotional) strate- L3 Apply
gies for better living.
CO4 Create a plan for good health through a positive mindset. L6 Create
33
Course Contents
Unhealthy) to explore.
Ask them to discuss the potential effects on health and present their findings to the class.
Select a Relevant Topic: Choose a specific health-related topic such as hygiene practices,
Script Development: Develop a script that combines informative content with creative elements.
Include key messages, facts, and practical tips related to the health issue. Use humor, drama, and
Characterization: Each character should have a distinct personality and contribute to the overall
Create a safe and supportive space for students to discuss and share their stressors.
Organize a stress awareness discussion group where students can openly express their concerns,
the group.
34
1. Role-Play on Conflict Resolution
a. Find a partner: Choose a friend who is willing to participate in this role-play activity
with you
b. Select a scenario: Together with your partner, select a conflict scenario to role-play. It
could be a common situation that often leads to conflicts, such as a disagreement over how
limited resources
c. Assign roles: Decide who will play each role in the conflict scenario. One person will
take on the role of one party involved in the conflict, and the other person will take on the
d. Practice conflict resolution techniques: Use the conflict resolution techniques you
have learned, such as active listening, expressing feelings using ”I” statements, seeking
e. Reflect and switch roles: After the initial role-play, take a moment to reflect on the
experience. Discuss what worked well and areas that could be improved. Then, switch
roles and repeat the role-play, allowing each participant to experience the situation from
Remember, the purpose of the activity is not to ”win” the conflict but rather to practice
Approach the role-play with an open mind, a willingness to learn, and a commitment to
respectful communication.
Begin the tutorial by facilitating self-assessment activities that encourage students to reflect
Provide questionnaires or reflective exercises that prompt students to identify their strengths,
35
Unit-V Self-Reflection and Wellness Goal Setting 01 Assignment
Gratitude journaling: Have students maintain a gratitude journal where they write down three
things, they are grateful for each day on the following indicators:
4. Do you think maintaining a gratitude journal can have a positive impact on your well-being as
an engineering student?
Conduct surveys or interviews to assess the health and wellness needs of your community.
Identify specific areas where improvements can be made, such as physical fitness, mental
Arrange fitness events, such as community walks or runs, group exercise classes, yoga
Launch health education campaigns to raise awareness about specific health issues relevant
to your community.
Choose a health issue you are passionate about and design a health and wellness advocacy
project.
Students can create a Persuasive Video, Infographic or Social Media Campaign to raise
36
Reference Books
1. Physical Activity and Health by Claude Bouchard, Steven N. Blair, William L. Haskell.
3. Mental Health Workbook for Women: Exercises to Transform Negative Thoughts and Improve
4. Lifestyle Diseases: Lifestyle Disease Management, by C. Nyambichu & Jeff Lumiri, 2018.
5. Physical Activity and Mental Health by Angela Clow & Sarah Edmunds, 2013
7. Emotional Intelligence: Why It Can Matter More Than IQ By Daniel Goleman,Bantam, 2006
8. Atomic Habits: An Easy & Proven Way to Build Good Habits & Break Bad Ones by James
Clear, Penguin,2018
37
Chemistry (RCP23FCBS103)
Pre-requisite
1. Properties of light and spectrum, wavelength and wave number.
Course Objectives
1. To obtain a strong hold on basic concepts of Chemistry that form fundamental principles of
technology.
Course Outcomes
COs Course Outcomes Blooms Blooms
Level Description
CO1 Recognize new approaches of analysis, which are more convenient, L2 Understand
less hazardous and sustainable to perform.
CO2 Describe applications based on nanomaterials and modern poly- L2 Understand
mers in engineering techniques.
CO3 Analyze the quality of fuel for energy efficiency. L5 Evaluate
CO4 Recognize properties of materials and alloys with phase transfor- L2 Understand
mation.
CO5 Identify the parameters responsible for water pollution using suit- L1 Knowledge
able methods of water treatment.
38
Course Contents
Unit 1 Sustainable approach to Chemistry 08 Hrs.
(A) Spectroscopic Techniques and Applications
Applications of fluorescence.
Conventional and green synthesis of :(i) Carbaryl (ii) Indigo (iii) Adipic acid (iv) Acrylamide
Introduction to nanomaterials
(B) Polymers
Calorific value: Definition, Units, Gross or Higher calorific value and Net or lower calorific value,
Dulongs formula and numerical for calculations of Gross and Net calorific values.
39
Combustion: Calculations for requirement of oxygen and air (by weight and by volume) for
given fuels.
Power alcohol
Green fuel: Biodiesel (Synthesis and advantages)
Unit 4 Phase Rule and Applications 04 Hrs.
40
Chemistry Laboratory and Tutorial
(RCP23FLBS103)
Course Objectives
1. To learn basic laboratory concepts of Chemistry through experimental procedures.
Course Outcomes
COs Course Outcomes Blooms Blooms
Level Description
CO1 Measure some properties of water such as chloride content and L5 Evaluate
hardness of water.
CO2 Estimate the percentage value of moisture content of coal sample L5 Evaluate
and Zn or Cu in brass.
CO3 Measure pH of different solutions and surface tension by specific L5 Evaluate
instruments.
CO4 Explain the properties of oils such as saponification value and acid L4 Analyze
value.
41
Suggested Experiments:
2. To determine total, temporary and permanent hardness of water sample by EDTA method.
7. Determination of COD.
Minimum eight experiments from the above suggested list or any other experiment based on syl-
labus will be included, which would help the learner to apply the concept learnt.
Tutorials: Minimum eight tutorials based on syllabus will be conducted. Mini project relevant
to the subject may be included, which would help the learner to apply the concept learnt.
42
Text Books
4. An introductory text on green chemistry: for undergraduate students - Indu Tucker Sidhwani,
Rakesh Kumar Sharma (Wiley)
Reference Books
7. Basic Atomic and Molecular Spectroscopy - J. Michael Hollas (Royal Society of Chemistry)
43
Engineering Graphics (RCP23FCES104)
Teaching Scheme Examination Scheme
Lectures : 02 Hrs./week Term Test : 20 Marks
Practical : - - - - Teacher Assessment : 20 Marks
Tutorial : - - - - End Sem Exam : 60 Marks
Credit : 02 Total Marks : 100 Marks
Pre-requisite
Course Objectives
Course Outcomes
CO2 Construct orthographic views of lines, and basic shapes of solids. L3 Apply
44
Course Contents
Unit-I 02 Hrs.
Introduction to Engineering Drawing:
Types of Lines, Dimensioning Systems as per IS conventions, Types of Projections.
**Introduction to Auto CAD:
Basic Drawing and Editing Commands. Knowledge of setting up layers, Dimensioning, Hatching,
plotting and Printing.
Unit-II 05 Hrs.
Orthographic projections:
Different views of simple machine parts as per the first angle projection method recommended
by I.S.
Unit-III 05 Hrs.
Sectional Orthographic projections:
Unit-IV 06 Hrs.
Isometric Views Isometric Views/Drawings of blocks (plain and cylindrical, excluding spheres).
**Drawing of Isometric Views using Auto CAD.
Unit-V 08 Hrs.
Projection of Solids: (Prism, Pyramid, Cylinder & Cone only) Projections of Solids with the axis
inclined to HP and VP. (Exclude Spheres, Composite, Hollow solids and frustum). Use change of
position or Auxiliary plane method.
**Drawing of Projection of Solid using Auto CAD.
45
** Should be covered during Auto CAD Practical.
Reference Books
1. K. Venugopal (2007), ’Engineering Drawing and Graphics + AutoCAD New Age International
Publishers.
Text Books
3. Basant Agrawal, C M Agrawal, Engineering Drawing,Third Edidtion, Tata McGraw Hill Edu-
cation Private Limited.
Reference Books
1. K. Venugopal (2007), Engineering Drawing and Graphics + AutoCAD, New Age International
Publishers.
46
Engineering Graphics Lab (RCP23FLES104)
Practical Scheme Examination Scheme
Lectures : - - - - - Teacher Assessment : 25 Marks
Practical : 02 Hrs./week
Credit : 01 Total : 25 Marks
Course Objectives
Course Outcomes
COs Course Outcomes Blooms Blooms
Level Description
CO2 Construct orthographic views of lines, and basic shapes of solids L3 Apply
47
Suggested Exercises
9. Projection of solids (Prism and Pyramid only) model 1 Using Auto CAD.
10. Projection of solids (Prism and Pyramid only) model 2 Using Auto CAD.
Minimum eight exercises from the above suggested list covering all the topics or any
other experiment based on syllabus will be included, which would help the learner to
apply the concept learnt.
Reference Books
1. K. Venugopal (2007), ’Engineering Drawing and Graphics + AutoCAD’, New Age International
Publishers.
Text Books
48
Effective Communication Skills
(RCP23FCHS101)
Teaching Scheme Examination Scheme
Lectures : 02 Hrs./week Term Test : 20 Marks
Practical : - - - - Teacher Assessment : 20 Marks
Tutorial : - - - - End Sem Exam : 60 Marks
Credit : 02 Total Marks : 100 Marks
Pre-requisite
Course Objectives
3. To enable learners to use the principles of business writing for effective communication
Course Outcomes
COs Course Outcomes Blooms Blooms
Level Description
CO1 Use skills related to the various aspects of communication to ex- L3 Apply
press ideas with greater clarity
49
Course Contents
Definition
Objectives
Verbal Communication
Non-verbal Communication
Physical/Environmental
Mechanical
Linguistic
Psychological
Socio-Cultural
Informal (Grapevine)
50
Articles
Prepositions
Popularity of Email
51
Problems in Email Communication
Email etiquette
Books Recommended
1. Hemphill, P. D., McCormick, D. W., & Hemphill, R. D. (2001). Business Communication with
Writing Improvement Exercises. Upper Saddle River, NJ: Prentice Hall.
2. Locker, Kitty O. Kaczmarek, Stephen Kyo. (2019). Business Communication: Building Critical
Skills. Place of publication not identified: Mcgraw-hill.
4. Raman, M., & Sharma, S. (2016). Technical Communication: Principles and Practice. New
Delhi: Oxford University Press.
5. Kaul, A. (2015). Effective Business Communication. Place of publication not identified: Prentice-
Hall of India.
6. Rizvi, A. M. (2010). Effective Technical Communication: A guide for scientists and engineers.
New Delhi: Tata McGraw Hill.
8. Sanjay Kumar & Pushp Lata (2018). Communication skills with CD. New Delhi: Oxford
University Press.
52
Effective Communication Skills Laboratory
(RCP23FLHS101)
Practical Scheme Examination Scheme
Lectures : - - - - - Teacher Assessment : 25 Marks
Practical : 02 Hrs./week
Credit : 01 Total : 25 Marks
Course Objectives
3. To enable learners to use the principles of business writing for effective communication
Course Outcomes
COs Course Outcomes Blooms Blooms
Level Description
CO1 Use skills related to the various aspects of communication to ex- L3 Apply
press ideas with greater clarity
CO2 Apply appropriate verbal/non-verbal cues in social and workplace L3 Apply
situations and overcome the barriers to communication.
CO3 Employ personal development strategies for self-assessment, goal L3 Apply
setting and maintaining a professional persona online.
53
List of Practicals/Assignments:
1. Self Introduction
2. Group Discussion
3. Mock Press
4. Extempore
5. Expansion of an Idea
Books Recommended
1. Hemphill, P. D., McCormick, D. W., & Hemphill, R. D. (2001). Business Communication with
Writing Improvement Exercises. Upper Saddle River, NJ: Prentice Hall.
2. Locker, Kitty O. Kaczmarek, Stephen Kyo. (2019). Business Communication: Building Critical
Skills. Place of publication not identified: Mcgraw-hill.
4. Raman, M., & Sharma, S. (2016). Technical Communication: Principles and Practice. New
Delhi: Oxford University Press.
5. Kaul, A. (2015). Effective Business Communication. Place of publication not identified: Prentice-
Hall of India.
6. Rizvi, A. M. (2010). Effective Technical Communication: A guide for scientists and engineers.
New Delhi: Tata McGraw Hill.
8. Sanjay Kumar & Pushp Lata (2018). Communication skills with CD. New Delhi: Oxford
University Press.
54
Workshop Practice (RCP23FLVS101)
Practical Scheme Examination Scheme
Lectures : - - - - - Teacher Assessment : 25 Marks
Practical : 02 Hrs./week
Credit : 01 Total : 25 Marks
Course Objectives
2. To identify tools, work material and measuring instruments useful for fitting, welding, carpentry,
sheet metal, plumbing, PCB and house wiring practice.
4. To handle tools and instruments and use them to prepare joints/jobs of specific shape and size.
5. To understand the basic concept and structure of computer hardware and networking
6. To understand the basic work tools of house wiring and house wiring connection etc
Course Outcomes
COs Course Outcomes Blooms Blooms
Level Description
CO2 Select proper job material, tools, equipments and machines re- L4 Analyze
quired for operations according to the job drawing with safety
measures
CO4 Acquire hands-on experience and complete job as per job drawing L5 Create
within allotted time adhering to safety norms and set procedures
55
Course Contents
Group A
1 Fabrication Processes 12 Hrs.
Use of setting of fitting tools for chipping, cutting, filing, making, center punching, drilling, tapping
and finishing.
Edge preparation for welding jobs, Arc welding for different job like, Lap welding of two plates, butt
welding of plates with simple cover, are welding to join plates at right angles.
Use and setting of hand tools likes handsaws, jack planes, chisels and gauges for construction of vari-
ous joints, wood turning and modern wood turning methods.
2 PCB 12 Hrs.
Design, Layout drawing, Positive and negative film making, PCB etching and drilling, Tinning and
soldering technique, Component mounting and circuit testing.
3 House Wiring 12 Hrs
Electrical safety in the workplace and safe work practices, Protection equipment, measures and tools.
Introduction to house wiring, different types of cables, types of power supply, distribution of power
supply, electrical wiring symbols. Wiring for two lamps (bulbs) with independent switch controls with
or without looping, wiring for staircase lamp.
4 Computer Hardware and Networking 12 Hrs
Dismantling of a Personal computer (PC), Identification of components of a PC such as power sup-
ply, motherboard, processors, hard disk, memory (RAM, ROM), CMOS battery, CD Drive, monitor,
keyboard, mouse, printers, disk drives etc. Assembling of PC, Installation of Operating System (any
one), and Device drives, Boot-up sequence, Installation of Application software (at least one). Basic
trouble shooting and maintenance. Identification of network components: LAN card, wireless card,
switch, hub, router, different types of network cables (straight cables, crossover cables, rollover cables.
Basic networking and crimping
Group B
56
Machines, CNC controller, types of motion controls in CNC Machines, application of CNC Machines.
Manual part programing for turning and milling.
8 3D Printing 8 Hrs.
Introduction to Additive Manufacturing Technologies for engineering applications, 3D printing of a
simple custom object using FDM, SLA and SLS technologies.
9 Drone 8 Hrs.
Introduction to drone and its applications, Fabrication and testing of mini drone.
Reference Books
1. Mechanical Workshop Practice, 2nd Edition, K.C. John, PHI Learning Pvt. Ltd. 2014
2. Manufacturing Technology- Vol 1, 4th Edition, P. N. Rao Tata McGraw Hill, 2014.
3. Printed Circuit Boards: Design, fabrication, assembly and testing, 1st Edition, R. S. Khandpur,
Tata McGraw Hill 2005.
Text Books
57
1. Manufacturing Process and Systems, 9th Edition, P.F. Ostwald, John Wiley and Sons INC. UK
2008.
58
Indian Knowledge System (RCP23FTHS102)
Teaching Scheme Examination Scheme
Lectures : - - - Term Test : - - -
Practical : - - - Teacher Assessment : 25 Marks
Tutorial : 02 Hrs./week End Sem Exam : 25 Marks
Credit : 02 Total Marks : 50 Marks
Course Objectives
1. To impart knowledge about basic principles of thought process, reasoning and inferencing.
2. To make students aware of Indian Traditional knowledge Systems connecting society and nature.
3. To acquaint students with holistic lifestyle of yogic science and wisdom in modern society with
rapid technological advancements and societal disruptions.
Course Outcomes
COs Course Outcomes Blooms Blooms
Level Description
CO3 Understand and appreciate the various art forms and architecture L2 Understand
in India.
CO5 Know the various religions followed in India and their philosophies. L1 Knowledge
59
Course Contents
Buddhist stupas
Buddhism
60
List of Tutorials/Assignments
1. Indian Education System
Group Poster project on different painting forms and Harappa and Mohenjo-Daro civiliza-
tion.
Group presentation on different archaeological structures in India
OR
Dramatic Adaptations
Ask students to adapt a scene or act from Indian classical literature into a dramatic per-
formance.
They can write scripts, create props and costumes, and rehearse their adaptations.
Encourage creativity while staying true to the essence of the original work.
Students can perform their adaptations for the class or in a larger setting..
61
Mathematics - II (RCP23FCBS201)
Teaching Scheme Examination Scheme
Lectures : 03 Hrs./week Term Test : 20 Marks
Practical : - - - - Teacher Assessment : 20 Marks
Tutorial : - - - - End Sem Exam : 60 Marks
Credit : 03 Total Marks : 100 Marks
Pre-requisite Knowledge of
1. Methods of integration.
2. Methods of differentiation.
Course Objectives
1. The course is aimed to develop the Mathematical skills of engineering students that are imper-
ative for effective understanding of engineering subjects. The topics introduced will serve as
basic tools for specialized studies in many fields of engineering and technology.
2. To provide hands on experience in using SciLab software to handle real life problems.
Course Outcomes
CO1 Illustrate the concepts of Beta and Gamma function, DUIS and L4 Analyze
rectification of plane curves.
CO3 Apply the concepts of Multiple Integrals to find Area, Volume, L3 Apply
and mass of lamina.
CO4 Solve various types of First Order and Higher Order differential L3 Apply
equations.
CO5 Apply the principles of Numerical Method for solving differential L3 Apply
equation and numerical integration analytically and using SciLab.
62
Course Contents
4.1 Exact differential Equations, Equations reducible to exact form by using four rules of integrating
factors.
4.2 Linear differential equations (Review), equation reducible to linear form, Bernoulli’s equation.
63
Unit-V Higher Order Linear Differential Equations with
Constant Coefficients and Variable Coefficients
07 Hrs
Prerequisite: Unit-IV
5.1 Linear Differential Equation with constant coefficient: complementary function, particular inte-
grals of differential equation of the type f(D)y = X, where X is eax , sin(ax+b), cos(ax+b), xm , xm sin ax,
xm cos ax, eax V, xV.
5.2 Method of variation of parameters (upto 3rd order).
5.3 Cauchy’s homogeneous linear differential equation.
6.1 Numerical solution of ordinary differential equation using: (a) Taylor series method, (b) Runge-
Kutta method of order four.
6.2 Numerical integration by (a) Trapezoidal rule, (b) Simpson’s 1/3rd rule, (c) Simpson’s 3/8th rule
(all without proof).
Reference Books
2. Advanced Engineering Mathematics, Erwin Kreyszig, Wiley Eastern Limited, 9th Ed.
4. Applied Numerical Methods with MATLAB for Engineers and Scientists by Steven Chapra,
McGraw Hill.
Text Books:
64
Mathematics - II Tutorial (RCP23FT2010T)
Teaching Scheme Examination Scheme
Lectures : - - - - Term Test : - - - -
Practical : - - - - Teacher Assessment : 25 Marks
Tutorial : 01 Hrs./week End Sem Exam :- - - -
Credit : 01 Total Marks : 25 Marks
Double integration.
Triple Integration.
Curve Tracing.
Numerical Solution of Ordinary Differential Equations of first order and first degree.
Numerical Solution of Ordinary Differential Equations using Runge-Kutta fourth order method.
Minimum eight tutorials batchwise (including SciLab programs) from the above sug-
gested list or any other experiment based on syllabus will be included, which would help
the learner to apply the concept learnt.
Reference Books
2. Advanced Engineering Mathematics, Erwin Kreyszig, Wiley Eastern Limited, 9th Ed.
65
4. Applied Numerical Methods with MATLAB for Engineers and Scientists by Steven Chapra,
McGraw Hill.
Text Books:
66
Object Oriented Programming using Java
(RCP23FCES201)
Teaching Scheme Examination Scheme
Lectures : 02 Hrs./week Term Test : 20 Marks
Practical : - - - - Teacher Assessment : 20 Marks
Tutorial : - - - - End Sem Exam : 60 Marks
Credit : 02 Total Marks : 100 Marks
Pre-requisite
1. Basics of Programming
Course Objectives
2. To expose students to analyze a problem statement, develop suitable logic and implement it in
Java.
Course Outcomes
67
Course Contents
68
cation, Designing Swing GUI Application and Event handling.
Text Books
1. Herbert Schildt, “Java-The Complete Reference”, 11th Edition, Tata McGraw Hill Publication,
2018.
2. E. Balguruswamy, “Programming with Java: A Primer”, 5th edition, Tata McGraw Hill Publi-
cation, 2017.
3. Sachin Malhotra and Saurabh Chaudhary, “Programming in Java”, Oxford University Press,
2010.
Reference Books
Digital Material
1. www.nptelvideos.in
2. www.w3schools.com
3. http://spoken-tutorial.org
4. www.staredusolutions.org
69
Object Oriented Programming using Java
Laboratory (RCP23FLES201)
Practical Scheme Examination Scheme
Lectures : - - - - - Teacher Assessment : 25 Marks
Practical : 02 Hrs./week End Sem Exam : 25 Marks
Credit : 01 Total : 50 Marks
Course Objectives
2. To expose students to analyze a problem statement, develop suitable logic and implement it in
Java.
Course Outcomes
COs Course Outcomes Blooms Blooms
Level Description
70
List of Practicals/ Experiments/ Assignments
1. Program to demonstrate input using Scanner, BufferedReader and command line arguments.
14. Program on dynamic method dispatch using base class and interface reference.
Minimum 10-15 experiments from the above suggested list or any other experiment based on syllabus
will be included, which would help the learner to apply the concept learnt.
71
Reference Books
Text Books
1. Herbert Schildt, “Java-The Complete Reference”, 11th Edition, Tata McGraw Hill Publication,
2018.
2. E. Balguruswamy, “Programming with Java: A Primer”, 5th edition, Tata McGraw Hill Publi-
cation, 2017.
3. Sachin Malhotra and Saurabh Chaudhary, “Programming in Java”, Oxford University Press,
2010.
Digital Material
1. www.nptelvideos.in
2. www.w3schools.com
3. http://spoken-tutorial.org
4. www.staredusolutions.org
72
Foundation of Computing Technologies
(RCP23FCPC2CE)
Teaching Scheme Examination Scheme
Lectures : 02 Hrs./week Term Test : 20 Marks
Practical : - - - - Teacher Assessment : 20 Marks
Tutorial : - - - - End Sem Exam : 60 Marks
Credit : 02 Total Marks : 100 Marks
Course Objectives
2. To learn and practice data modelling using the Entity-Relationship and develop database design.
5. To introduce fundamentals of Big Data, Data Science, Data Analytics, Data Warehouse and
Data Mining.
Course Outcomes
CO2 Understand the concept of signals, error detection, wired and wire- L2 Understand
less networks.
CO3 Design and draw ER diagram for the real-life applications. L6 Create
CO6 Understand fundamentals of big data, data science, data analytics, L2 Understand
data warehouse and data mining.
73
Course Contents
74
Introduction to Cyber Security: Hacking, Data Theft, Cyber Terrorism, Virus and Worm’s,
Email Bombing, Pornography, online gambling, Forgery, Web Defacements, Web Jacking, Illegal on-
line Selling, Cyber Defamation, Software Piracy, Electronics/ Digital Signature, Phishing, Password
Cracking.
Text Books
2. Andrew Tanenbaum, David Wetherall, “Computer Networks”, Pearson 5th Edition, 2010.
3. Abraham Silberschatz, Henry F. Korth, S. Sudarshan, “Database System concepts”, TMH 7th
Edition, 2021.
4. Abraham Silberschatz, Peter Galvin, “Operating System Concept”, Wiley 9th Edition, 2018.
5. Behrouz Forouzan, Depdeep Mukhopadhyay, “Cryptography and Network Security”, TMH 3rd
Edition, 2015.
6. Nilakshi Jain, Ramesh Menon, “Cyber Security and Cyber Laws”, Wiley 1st Edition, 2020.
Reference Books
75
2. Behrouz Forouzan, “Data Communications and Networking with TCP/IP Protocol”, Mc Graw
Hill 6th Edition, 2022.
3. Elmasri Ramez, Navathe Shamkant, “Fundamentals of Database System”, Pearson 7th Edition,
2017.
4. Achyut Godbole, Atul Kahate, “Operating Systems”, Mc Graw Hill 3rd Edition, 2017.
5. William Stallings, Lawrie Brown, “Computer Security - Principles and Practice”, Pearson 4th
Edition, 2019.
6. Nina Godbole, Sunit Belapure, “Cyber Security- Understanding Cyber Crimes, Computer Foren-
sics and Legal Perspective”, Wiley 1st Edition, 2011.
76
Electrical Networks
(RCP23FCPC2EC/RCP23FCPC2EE)
Teaching Scheme Examination Scheme
Lectures : 02 Hrs./week Term Test : 20 Marks
Practical : - - - - Teachers Assessment : 20 Marks
Tutorial : - - - - End Sem Exam : 60 Marks
Credit : 02 Total Marks : 100 Marks
Pre-requisite
2. Mathematics - I.
Course Objectives
Course Outcomes
77
Course Contents
Objectives of graph theory, Linear Oriented Graphs, graph terminologies, Matrix representation of
a graph: Incidence matrix, Circuit matrix, Cut-set matrix, reduced incident matrix, tieset matrix,
f-cutset matrix. KVL & KCL using matrix, solution of resistive networks and principle of duality
Transient Analysis of circuits containing R, L and C, Time domain analysis of R-L, R-C and R-
L-C Circuits, Forced and natural response.
Network functions for the one port and two port networks, driving point and transfer functions,
Poles and Zeros of Network functions, necessary condition for driving point functions, necessary con-
dition for transfer functions, Hurwitz Criterion.
Concept of positive real function, testing for necessary and sufficient conditions for Positive Real
Functions, Synthesis of LC, RC & RL Circuits: properties of LC, RC & RL driving point functions,
LC, RC & RL network Synthesis in Cauer-I & Cauer-II, FosterI & Foster-II forms.
Parameters: Open Circuits, Short Circuit, Transmission and Hybrid parameters, relationship among
parameters, conditions for reciprocity and symmetry (without dependent sources)
Reference Books
1. A Chakrabarti, “Circuit Theory”, Dhanpat Rai & Co., Delhi, 6th Edition
78
Text Books
1. Franklin F Kuo, “Network Analysis and Synthesis”, Wiley, 2nd .ed. 1966
2. M E Van Valkenburg, “Network Analysis”, Prentice-Hall of India Pvt Ltd, New Delhi, 26th
Indian Reprint, 2000.
3. Ravish Singh, “Circuit Theory and Networks”, Tata McGraw-Hill education, 2e, 2016.
79
Elements of Civil Engineering
(RCP23FCPC2CE)
Teaching Scheme Examination Scheme
Lectures : 02 Hrs./week Term Test : 20 Marks
Practical : - - - - Teacher Assessment : 20 Marks
Tutorial : - - - - End Sem Exam : 60 Marks
Credit : 02 Total Marks : 100 Marks
Course Objectives
Course Outcomes
CO1 To understand the role of civil engineer in society and to relate L3 Understand,
the various disciplines of Civil Engineering. Remember
80
Course Contents
Superstructure, Sub Structure, functions of foundation, types of shallow and deep foundations, suit-
ability in different situation, Load on Structure.
Part B: Introduction to various parts of buildings
Plinth, walls, lintels, beams, columns, slabs, roofs, staircases, floors, doors, windows, sills, ventilation,
basics of plumbing and sanitation.
Introduction and use of AutoCAD and ZWCAD for making drawings, 3D modelling software’s
– 3D Max, Revit Architecture, Revit for BIM (Building Information Modelling), 3D Printing.
Software’s related to Structural Engineering: STAAD-Pro, ETABS, SAP, MIDAS, ATENA etc.
Software’s related to Construction Management and Estimation: MSP, Primavera, Sage Esti-
mation.
81
Reference Books / Text Books
5. Kanetkar T. P. and Kulkarni S. V., Surveying and Levelling, Vols. I, II and III, Vidyarthi Gruh
Prakashan, Pune.
9. NBC 2005, National Building Code of India, Parts III, IV, VII and IX, B.I.S. New Delhi.
82
Fundamentals of Data Analysis
(RCP23FCPC2DS)
Teaching Scheme Examination Scheme
Lectures : 02 Hrs./week Term Test : 20 Marks
Practical : - - - - Teacher Assessment : 20 Marks
Tutorial : - - - - End Sem Exam : 60 Marks
Credit : 02 Total Marks : 100 Marks
Course Objectives:
83
Course Contents
84
Text Books:
1. Sharada Sringeswara, Purvi Tiwari, U. Dinesh Kumar, “Data Visualization Storytelling using
Data”, 1st Edition, Wiley, 2022.
2. Han Kamber, Morgan Kaufmann, “Data Mining Concepts and Techniques”, Elsevier, 2022.
Reference Books:
1. Jason Browniee, “Data Preparation for Machine Learning”, ebook by Machine Learning Mastry,
2020.
2. Jason Osborne, “Best Practices in Data Cleaning: A Complete Guide to Everything you Need
to Do Before and After Collecting Your Data”, Sage Publication, 2012.
3. Ethan McCallum, “Bad Data Handbook: Cleaning Up the Data so you can get back to work”,
O’Reilly, 2012.
4. Max Kuhn and Keijell Johnson, “Feature Engineering and Selection: A practical Approach for
Predictive Models”, CRC Press, 2020.
85
Fundamentals of Artificial Intelligence &
Machine Learning (RCP23FCPC2AM)
Teaching Scheme Examination Scheme
Lectures : 02 Hrs./week Term Test : 20 Marks
Practical : - - - - Teacher Assessment : 20 Marks
Tutorial : - - - - End Sem Exam : 60 Marks
Credit : 02 Total Marks : 100 Marks
Course Objectives:
To familiarize the fundamentals of Artificial Intelligence and Machine Learning.
CO1 Understand the basics of Artificial Intelligence and its ap- L2 Understand
plications.
86
Course Contents
Text Books:
1. Stuart J. Russell and Peter Norvig, “Artificial Intelligence A Modern Approach”, 4th Edition,
Pearson Education, 2022.
3. George F Luger, “Artificial Intelligence”, 5th Edition, Low Price Edition, Pearson Education,
2005.
4. Deepak Khemani, “A First Course in Artificial Intelligence”, 6th reprint 2018 Edition (1 July
2017), McGraw Hill Education (India).
87
Reference Books:
1. Ivan Bratko, “PROLOG Programming for Artificial Intelligence”, 4th Edition, Addison-Wesley,
2011.
2. Elaine Rich and Kevin Knight, “Artificial Intelligence”, 3rd Edition, 2017.
3. Davis E.Goldberg, “Genetic Algorithms: Search, Optimization and Machine Learning”, Addison
Wesley, N.Y., 1989.
5. Han Kamber, “Data Mining Concepts and Techniques”, Morgann Kaufmann Publishers, 3rd
Edition, 2011.
Online References:
1. https://onlinecourses.swayam2.ac.in/aic20 sp06/preview
2. https://onlinecourses.swayam2.ac.in/arp19 ap79/preview
88
Foundation of Information Technology
(RCP23FCPC2IT)
Teaching Scheme Examination Scheme
Lectures : 02 Hrs./week Term Test : 20 Marks
Practical : - - - - Teacher Assessment : 20 Marks
Tutorial : - - - - End Sem Exam : 60 Marks
Credit : 02 Total Marks : 100 Marks
Course Objectives:
The objective of the course is to introduce the learner to the basics of computers, viz., the archi-
tecture, computer arithmetic, operating system and network basics. The course will also abreast the
learner of the basics of computer security.
89
Course Contents
Text Books:
1. “Introduction to Computer Science”, ITL Education Solutions Limited, 2nd Edition, Pearson,
2011.
2. Atul Kahate, “Cryptography and Network Security”, 4th Edition, McGraw-Hill, 2019.
3. R. P. Jain, “Modern Digital Electronics”, 4th Edition, Tata McGraw Hill, 2009.
4. M. Morris Mano, “Digital Logic and computer Design”, 1st Edition, Pearson Education India,
90
2016.
Reference Books:
1. Anand Kumar, “Fundamentals of Digital Circuits”, 4th Edition, Prentice Hall India, 2003.
2. Donald P Leach, Albert Paul Malvino, “Digital Principles and Applications”, 8th Edition, Tata
McGraw Hill, 2014.
3. Behrouz A. Forouzan, “Cryptography & Network Security”, 3rd Edition, Tata McGraw Hill,
2015.
4. William Stallings, “Computer Organization and Architecture: Designing for Performance”, 10th
Edition, Pearson, 2015.
91
Fundamentals of Artificial Intelligence & Data
Science (RCP23FCPC2AD)
Teaching Scheme Examination Scheme
Lectures : 02 Hrs./week Term Test : 20 Marks
Practical : - - - - Teacher Assessment : 20 Marks
Tutorial : - - - - End Sem Exam : 60 Marks
Credit : 02 Total Marks : 100 Marks
Course Objectives:
CO1 Understand the basics of Artificial Intelligence and its ap- L2 Understand
plications.
92
Course Contents
Text Books:
1. Stuart J. Russell and Peter Norvig, “Artificial Intelligence A Modern Approach”, 4th Edition,
Pearson Education, 2022.
3. George F Luger, “Artificial Intelligence”, 5th Edition, Low Price Edition, Pearson Education,
2005.
4. Deepak Khemani, “A First Course in Artificial Intelligence”, 6th reprint 2018 Edition (1 July
2017), McGraw Hill Education (India).
Reference Books:
1. Ivan Bratko, “PROLOG Programming for Artificial Intelligence”, 4th Edition, Addison-Wesley,
2011.
93
2. Elaine Rich and Kevin Knight, “Artificial Intelligence”, 3rd Edition, 2017.
3. Davis E.Goldberg, “Genetic Algorithms: Search, Optimization and Machine Learning”, Addison
Wesley, N.Y., 1989.
5. Han Kamber, “Data Mining Concepts and Techniques”, Morgann Kaufmann Publishers, 3rd
Edition, 2011.
6. N.P.Padhy, “Artificial Intelligence and Intelligent Systems”, Oxford University Press, 2005.
Online References:
1. https://onlinecourses.swayam2.ac.in/aic20 sp06/preview
2. https://onlinecourses.swayam2.ac.in/arp19 ap79/preview
94