Open navigation menu
Close suggestions
Search
Search
en
Change Language
Upload
Sign in
Sign in
Download free for days
0 ratings
0% found this document useful (0 votes)
44 views
Syllabus
Uploaded by
aayanshy26
Copyright
© © All Rights Reserved
Available Formats
Download as PDF or read online on Scribd
Download now
Download
Save Syllabus For Later
Download
Save
Save Syllabus For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
0 ratings
0% found this document useful (0 votes)
44 views
Syllabus
Uploaded by
aayanshy26
Copyright
© © All Rights Reserved
Available Formats
Download as PDF or read online on Scribd
Download now
Download
Save Syllabus For Later
Carousel Previous
Carousel Next
Save
Save Syllabus For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
Download now
Download
You are on page 1
/ 47
Search
Fullscreen
Syllabus for 1°Sem CSE/CE/AT/ETC/EEE INTRODUCTION TO PROGRAMMING (Compulsory Course) CSXXX Introduction to Programming Credits: 3(3-0-0) understanding of the principles of programming Course The course aims to provide exposure to problem-solving through Objective: programming, It aims to train the student to the basic concepts of the C- programming language. This course involves a lab component which is designed to give the student hands-on experience with the concepts, Course After the course the students are expected to be able to: Outcome: + Identify situations where computational methods and computers would be useful + Given a computational problem, identify and abstractthe programming task involved + Approach the programming tasks using techniques learned and write pseudo-code. + Choose the right data representation formats based on the requirements of the problem. + Use the comparisons and limitations of the various programming constructs and choose the right one for the task in hand. + Write the program on a computer, edit, compile, debug, correct, recompile, and run it. + Identify tasks in which the numerical techniques learned are applicable and apply them to write programs, and hence use computers effectively to solve the task RotepelesSyllabus for 1"Sem CSE/CE/AT/ETC/EEE INTRODUCTION TO PROGRAMMING (Compulsory Course) Syllabus Module-1 Introduction to C: The Structure of a C program, Some basic C commands, Character input and output. ‘Types, Operators and Expressi Operators, Expressions. Control Flow: if, switch, Conditional Expressions, while, break and continue, for loop. s:Variables and constants, Data Types, Module-II ‘Arraysand Pointers: Pointers and addresses, Organization of Memory, Pointers and Arrays, Managing and manipulating memory. Functions and Program Structure: Passing parameters to C programs, Multi- file programs, Scoping, Recursion, The C Pre-processor, Pointers to functions Module-IIl Structures and Unions: Basics, Passing and returning structures, Pointers and structures, Arrays of Structures, Self-referential pointers, Linked Lists. Managing Memory in C: malloc{), calloc(), realloc(), free() Manipulating files: File Pointers, Opening and Closing Files, Reading from and writing to files, Reading from stdin and writing to stdout, stderr, Moving the file pointer. Suggested Books: 1. Kemighan, Brian, and Dennis Ritchie. The C Programming Language. 2nd ed. Upper Saddle River, NJ: Prentice Hall, 1988. ISBN: 9780131103627. 2. E. Balagurusamy. Programming in ANSI C.8" ed.McGraw Hill Education, 2019. ISBN: 978-9351343202 Evaluation: Quizzes: 15% Mid-term: 30% Teacher's Assessment: 5% End-term Exam: 50%Syllabus for 1'Sem CSE/CE/IT/ETC/EEE INTRODUCTION TO PROGRAMMING LAB (Compulsory Course) (CSXXX Tntroduetion to Programming Lab Credits: 1(0-0. ) Prerequisites for this course: Basie understanding of the principles of programming The course aims to provide exposure to problem-solving through programming. It aims to train the student to the basic concepts of the C- programming language. This course involves a lab component which is designed to give the student hands-on experience with the concepts. Course Outcome: ‘After the course the students are expected to be able to: + Identify situations where computational methods and computers would be useful + Given a computational problem, identify and abstractthe programming task involved. + Approach the programming tasks using techniques learned and write pseudo-code. © Choose the right data representation formats based on the requirements of the problem. + Use the comparisons and limitations of the various programming constructs and choose the right one for the task in hand. + Write the program on a computer, edit, compile, debug, correct, recompile, and run it. + Identify tasks in which the numerical techniques learned are applicable and apply them to write programs, and hence use computers effectively to solve the taskSyllabus for 1'Sem CSE/CEAT/ETC/EEE INTRODUCTION TO PROGRAMMING LAB (Compulsory Course) wyllabus Assignments on statements, variables, constants, operators Assignments on using control statements like if..else ‘Assignments on using loop statements Assignments on using arrays Assignments on using functions Assignments on using pointers Assignments on using structures and unions ‘Assignments on using dynamic memory management Assignments on File Input Output Assignments on numerical methods Suggested T. Kemighan, Brian, and Dennis Ritchie. The C Programming Language. Books: 2nd ed. Upper Saddle River, NJ: Prentice Hall, 1988. ISBN: 9780131103627. 2. E. Balagurusamy. Programming in ANSI C.8" ed.McGraw Hill Education, 2019. ISBN: 978-9351343202_ Evaluation: T. Continuous Evaluation through assignments: 70% 2. Project-based Evaluation: 30%cs 102 Data Structure Credits: 3 (3-0-0) Pre-requisite for this course: Introduction to Programming Course Objective: The course aims to: * To introduce the concept of data structure for easy access of data, To distinguish between linear and non-linear data structures * To introduce linear data structures like arrays, linked list, queues, dictionaries etc, * To introduce non-linear data structures like trees, graphs ete. * To teach the various searching and sorting techniques and hashing techniques. ‘On completion of the course, a student should be able tor Course Outcome: * Identify ‘suitable data structures to solve a given problem efficiently. * They can choose the appropriate sorting and searching technique to solve a real-world programming problem at hand. ° They shall be able to use the suitable data structures to work on various problems on compiler design, graph theory, computer networking, social media analytics, database management systems etc. Syllabus Module I [8] Hours Introduction to Data Structures: arrays, strings, sparse matrices. Linear Data Structures: Stacks, Queues and Circular Queues Operations and Applications. dequeue, priority queue, Linked lists: Single linked lists, linked list representation of Stacks and Queues Operations on polynomials, Double linked list, Circular linked list. Dynamic storage management-garbage collection and compaction, infix to postfix conversion, postfix expression evaluation,Module It [8] Hours Trees: Tree terminology, Binary tree, Binary search tree, General tree, B tree, B+ tree, AVL Tree, Complete Binary Tree (Heap), Tree representation, Tree Haversals, operation on Binary search tree and AVL tree: find, insertion, deletion. expression manipulation, Heaps Module TT [14] Hours Graphs: Graph terminology, Representation of graphs, path matrix, BFS (breadth first search), DFS (depth first search), Minimum Spanning Tree, Shortest Path (Warshalls algorithm), All pairs Shortest Path (Dijkstra), topological sorting porting and Searching techniques ~ Bubble sort, selection sort, Insertion sort, Quick sort, merge sort, Heap sort, Radix sort. Linear and binary search methods, Hashing techniques and hash functions. ‘Suggested Books: [Minimum 4/5 Books] (Include E-books also, if any) |. Seymour Lipschutz , “Fundamental of Data Structure” (Schaums Series) Tata-MeGraw-Hill, 2. Mark A. Weiss Pai: “Data Structures & Algorithms; Concepts, Techniques & Algorithms” Tata McGraw Hill. 3. Thomas H. Cormen, Charles E. Leiserson, Ronald L. Rivest and Clifford Stein , “Introduction to Algorithms”, PET publication 4. Horowitz, Sahani& Freed ,"Fundamentals of data structure in C”, Computer Science Press. 5. Tanenbaum, “Data structure in C”, PHI publication / Pearson Publication 6. Pal, Debdutta. “Data Structure and Algorithm with C”, Alpha Science International, 2018. ProQuest Ebook Central, Evaluation: SoS Quiz: 15% Mid Term: 30% End Term Exam: 50% Teacher's Assessment: 5%cs 402 Data Structure Introduction to Programming Course Objective: _ | The course aims to: * To introduce the concept of data structure for easy access of data. * To distinguish between linear and non-linear data structures, * To introduce linear data structures like arrays, linked list. queues, dictionaries ete ¢ To introduce non-linear data structures like trees, geaphs ete * To teach the various searching and sorting techniques and hashing techniques. Course Outcome: _ | On completion of the course, a student should be able to: © Hdentify suitable data structures to solve a given problem efficiently * They can choose the appropriate sorting and searchis to solve a real-world programming problem at hand. * They shall be able to use the suitable data structures to work on various problems on compiler design, graph theory, computer networking.social media analytics. database management systems et. chnique Experiment No.1 Basic C program review: mattix operation, strin Experiment No.2 (2) Write a C program to create a stack using an array and perform i) push operation ii) pop operation (b) Write a C program to create a queue and perform i) delete operation operation sert operation ii)Write a C program that uses Stack operations to perform the following: i) Converting infix expression into postfix expression ii) Evaluating the postfix expression Experiment No. 4 Write a C program that uses functions to perform the following operations on Single linked list: }) Creation ii) Insertion ifi) Deletion iv) Traversal Experiment No. 5 Write a C program that uses functions to perform the following operations on Double linked list and Circular linked list: i) Creation ii) Insertion iii) Deletion Experiment No. 6 Write a C program that uses functions to perform the following operations on Binary Search Tree: i) Creation ii) Insertion iti) Deletion iv) Traversal (Inorder, Preorder, Postorder) Experiment No. 7 (a) Write C program to perform the Linear search operation for a Key value in a given list of integers (b) Write C program that use both recursive and non recursive functions to Perform the Binary search operation for a Key value in a given list of integers. Experiment No. 8 Write C programs that implement Bubble Sort. Insertion Sort and Selection Sort method to sort a given list of integers in ascending order. Experiment No.9 Tite C programs that implement Quick Sort, Merge Sort and Heap Sort method to sort a given list of integers in ascending order Experiment No.10 Write a C program that uses functions to perform the following operations on a Graph: i) Creation (Adjacency Matrix) ii) Node Insertion iii) Node Deletion iv) Edge insertion v) Edge deletion vi) Traversal (DI’S. BFS) Evaluation: Experiments: 50 Project: 30 Viva: 20Credits: 3 (3-0-0) Pre-requisites “The course ams to | Course Onjectiv Physies + To introduce the fundamental aspects of Electronics and Circuits Enable the students to design circuits using Diodes, BITS, FETs, and Op-Amps. ‘+ Enable the students to determine the characteristics of amplifiers such as gain et, + Enable the students to analyze oscillator + Enable he students to use simulation software for citi analysis wits Course Outcome: ‘On completion ofthe course, a student should be able to * Understand the fundamental concepts of electronics components, and measuring instruments + Design and analysis of various electronic circuits using Diodes, BITS, FETs, and Op-Amps: + Understand the fundamental concepts amplifier and oscillator cireuits Sullabus Module 112] Hours, Module 11 Diodes: Physical operation of PN junction diode, Zener diode, and LED, Applications of PN junction diode (Rectifiers, Clippers, Clampers, Applications of | Zener die (Voltage regulators, Clippes), Applications oF LED. | Bipolar Junction Transistors (BITS): Physical operation of BIT: Active, Saturation, 1121 Hours and Cuff operating regions, DC basing, Tansstor ab a wich, i Traitor tmodel CB, CE, CC amples Field Effet Transistors FETs & MOSFETs: Induction, Physical Design and pesto np nd output Cernctersics, Moca pentions! Amplifier (Op Amp) Difeenial amplifier, Weal Op-Amp Characteristics and parameters, Feedback concepts, Applications of Op-Amp averting and non-inverting amplifier, Difference amplifier, Summing amplifier, Integrator and Differentiator, Oscillator circuits- Wien-Bridge oscillator, RC phase-shift oscillator, Crystal oscillator), Electronic Instruments: Basic principle and function of Oscilloscope and Function generator, Application of oscilloscope for measurement of voltage, time period, frequency and phase. 1. Elecronie Devices and Circuit Theor (Ninh Eon), Robes L. Boyles sand Louis Nashelsky, Pearson Education 2. Integrated Blectronics: Analog Digital Circuits and Systems, Jacob << Se aeEval Millman, Christos Halkias. McGraw-Hill, Inc., New York, NY, USA 1972 Mictoeleetronie Circuits (Fifth Edition), Adel 8. Sedra and Kenneth C. Smith, Electronic Devices (Seventh Edition), Thomas L. Floyd, Pearson Education 1 Quiz: 15% 2. Mid Term! Course Project: 30% 3. End Term Exam: 50% 4. Teacher's Assessment: 5%Basic Electronics Engineering Lab Credits: 1 (0-0-2) Course Objective: "The course aims to ‘+ Familiar with basic electronic components and instruments + Demonstrate the circuit simulation software ‘+ Hand on experience on basie experiments like different types of diodes nd transistor characterization using breadboard, multimeter, DC power supply, CRO ete. ‘+ Design and analysis of rectifier, clipper and clampers circuits using diode * Design and analysis of basic operations using Op-Amp. Course Outcome: ‘On completion of the Lab, a student should be able to: + Know how to use the electronic components on the breadbowrd and instruments, + Design and analyze any basic electronic cireit well asin hardware, ‘+ Understand the fundamental aspects of design and implementation of any clectronic projects used for dedicated applications. using software and as ‘SullabusExpt | 1 Expt2: 2, Eapt3: 3 Expt: 4 Expt: Familiarization of 1. Components (R, L, C, Diode, Transistors, IC, Breadboard ete ) and 2, Instruments (CRO, Function Generators, Multi-meter, DC power supply) ‘Study of RC series circuit 1. RC circuit as integrator and differentiator i. Study integration of square, triangular, and sine wave ii, Study differentiation of square, triangular, and sine wave 2. RC circuit as low pass and high pass i. Study the frequency response of low pass and high pass filter Series and parallel resonant circuit 1. Study the frequency response of series and parallel RLC circuit \V-I Characteristics of PN junction diode 1 Plot the forward VI characteristics of Silicon and Germanium PN junction diodes 2. Determine the static and dynamic resistances 3. Determine the cut-in voltage 5. V-I Characteristies of Zener junction diode 1. Plot the reverse V-I characteristis of Zener diode 2. Determine the breakdown voltage 6, Vel Characteristies of LED 1. Plot the forward V-I characteristics of Blue, Yellow, and Red LEDs. 2, Explain the difference in the V-I characteristics Recifier cireuits 1. Study half-wave, bridge, and full-wave rectifier with center-tapped transformer without and with capacitor filter 2. Determine the peak, average, and rms output and ripple factor 3. Application of Zener diode to regulate the rectified output& Clipping cirouits Realize clipping circuits to obtain the given waveforms Expt 7: 9. Clamping circuits 1. Realize clamping circuits to obtain the given waveforms. Expt 10. Transistor charaetersties |. Obtain static input and output characteristics of BJT in common-emitter configuration, Expt: 1. Op-Amp applications 1 Inverting amplifier 2. Non-inverting amplifier 3. Integrator 4. Differentiator pt 10: 12. Oscillator Design 1. Coplitt Oscillator 2. Heartly Oscillator 3. RC Phase shift Oscillator csanereea List of experiments will be provided Student can also select a project based upon the theory course. Evaluation: 1, Attendance [10%] 2, Performance: (202%) 3. Lab Record [20%] 4. Lab Test! Course Project [30%] 5. Viva/ Quia (20%)BASIC ELECTRICAL’ Objectives: This is a foundation course for all branches. A reasonable understanding on the basics of applied electricity is important for every engineer. Apart from de and ac circuit analysis both under steady state and transient conditions; it will cover basic working principle and analysis of transformer, de machines and induction motor. Finally working principles of some measuring, instruments and basies of power systems are introduced, Module-1 (10 Hours) Introduction to electrical cireuits: Essence of electricity, Electric field, electric current, potential and potential difference, electric power, basic circuit components, ohm’s law, Ideal and Practical Sources, Source Conversion, independent, and dependent sources, Energy Stored in Inductor, and Capacitor. Series and parallel combination of circuit components, DC Networks: Laws and Theorems applicable to DC networks (KCL & KVL, Node voltage & Mesh current analysis, Delta-Star & Star-Delta conversion, Superposition principle, Thevenin’s & Norton’s theorem), Transients in R-L and R-C circuits with DC excitation, Simple problems. Module-2 (10 Hours) Single-Phase AC Circuits: Single-phase EMF Generation, Average and Effective value of periodic ac signals, Peak factor & Form factor, Phasor and Complex representation of sinusoids, Power factor, Complex power, Phasor solution of circuits with sinusoidal excitations. Three-Phase AC Cireuits: Comparison between single-phase and three-phase systems, three phase EMF Generation, Line and Phase quantities in star and delta networks, Module-3 (12 Hours) Introduction to Magnetic Circuits: Introduction to Electromagnetism, B-H curve, Permeability, Reluctance, Solution of magnetic circuits, Hysteresis and Eddy current loss. Single-Phase Transformers: Construction and principle of operation, EMF Equation, Transformation ratio, Practical and Ideal transformers, Transformer losses and efficiency, Brief idea on Transformer Phasor diagram, Equivalent circuit, transformer rating, Auto transformer. A.C. Machines: Basic concept of rotating Electrical machine. Introduction to Three-phase Induction Motor, Concept of Slip, Equivalent circuit of induction motor, Single-phase Induction Motor, Basic concept of synchronous machine. Module-4 (08 Hours) D.C. Machines: Principle of operation, construction, classification of DC machines, EMF equation of DC generator, Speed Equation of DC Motor. Measuring Instruments: PMMC Ammeters and Voltmeters with extension of range, Moving-Iron Ammeters and Voltmeters, Dynamometer type Wattmeter. Power measurement in three-phase balanced circuits (Two wattmeter method), energy meters. Power Systems: Brief introduction to power system, Generation, transmission aid distribution of AC power, Basic idea on grounding and safety, Illumination, Renewable energy sources: Brief introduction to renewable energy sources, Common Forms of Energy, Salient Features of Non-Conventional Energy Sources, World Energy Status and Energy Scenario in India, Solar Cell Fundamentals and Cell Characteristics.Text/reference books: 1. G. Rizzoni, “Principles and Applications of Electrical Engineering”, McGraw-Hill 2. Hughes, “Electrical & Electronic Technology”, Pearson Education 3. N. KK. De and Dipu Sarkar “Basic Electrical Engineering”, Universities Press 4. V. D. Toro, “Basic Electrical Engineering”, Prentice-Hall of India 5. B. L. Theraja and A. K. Theraja, “A Textbook of Electrical Technology”, S. Chand & Co. Ltd. 6. Rajendra Prasad, “Fundamentals of Electrical Engineering”, Prentice-Hall of India 7. DP. Kothari and 1.J. Nagrath, “Basic Electrical Engineering”, TMH 8. N.N. Parker Smith, “Problems in Electrical Engineering”, CBS Publisher 9, Ravish R Singh, “Basic Electrical Engineering”, McGraw Hill Education (India) Private Ltd. 10.C.L Wadhwa, “Basic Electrical Engineering”, New age International PublishersBasic Electrical -chnology Laborato! Objectives: To explain the concept of circuit laws and network theorems and apply them inthe laboratory.To learn the practical experience with operation and applications of electromechanical energy conversion devices such as DC machines, Transformer and Single-Phase Induction Motor.It also makes the students to learn how to measure the electrical quantities with different measuring devices.To learn the practical experience of solar photovoltaic cell. List of Experiments: 1. Connection and measurement of power consumption of various lamps, Verification of superposition, Thevenin’s and Norton's theorem, 3. Calculation of current, voltage and power in series R-L-C circuit ex AC supply and calculation of power factor. 4, Vel Characteristics of incandescent lamps and time fusing current characteristics of a fuse. 5, Study of single phase energy meter. 6. Open circuit and short circuit test of single phase transformer. 7. Study of various parts of DC machine. 8. 9. 1 -d by single phase . Measurement of armature and field resistance of DC machine. Study of single phase induction motor and fan motor. 0. Study of solar photovoltaic system. Text/reference books: 1..G. Rizzoni, “Principles and Applications of Electrical Engineering”, McGraw-Hill 2. Hughes, “Electrical & Electronic Technology”, Pearson Education 3. NK.De and Dipu Sarkar, “Basic Electrical Engineering”, Universities Press 4. V.D.Toro, “Basic Electrical Engineering”, Prentice-Hall of India 5. B.L.Theraja and A.K.Theraja, “A Textbook of Electrical Technology”, S-Chand& Co. Ltd. 6. Rajendra Prasad, “Fundamentals of Electrical Engineering”, Prentice-Hall of India 7. D.P-Kothari and 1,J.Nagrath, “Basie Electrical Engineering”, TMH 8. NN ParkerSmith, Problems in Electrical Engineering”, CBS Publisher 9.Ravish R Singh, Basic Electrical Engineering” McGraw Hill Education (India) Private Lid. 10.C.L Wadhwa,“Basic Electrical Engineering”, New age International PublishersSyllabus for First Year B.Tech aeas Semester): CSE, IT, CE, ETC, EEE BASIC MECHANICAL ENGINEERING (Compulsory Course) [_ MEXXx Basic Mechanical Engineering Credit:4(3-1-0) Prerequisites No prerequisites of the course ‘ ee Course This course is designed to give a platform to the engineering students as Objective beginners, a smooth transition from science-based formulation of problems to engineering-based formulation. Analysis and design of basic structural clements used in engineering applications for dynamically changing society Course At the end of the course a student comes to know Outcome * Different kinds of vectors and loads, free-body diagram of structural elements under different loading conditions * Physical nature of the internal forces in structural member in real complex loading situations + Importance of properties of area from design point of view * Basic thermodynamic principles and applications * Use of Matlab / Octave (Open source) to solve engineering problems, Syllabus | Module-I[13] | Force systems, Equilibrium, Free body diagram, problems in two dimensions; Moment of a force about a point and about an axis; System of Parallel forces, plane trusses. Properties of areas: Centroid, Moments of inertia and product of inertia of areas, polar moment of inertia, Free vibration, damped free vibration and forced vibration of M-S-D system. (Simulation through Matlab/Octave (Open source)). Module-I]12] Concept of stress and strain: Normal stress, shear stress, state of stress at a point, ultimate strength, allowable stress, factor of safety; normal strain, shear strain, Hooke's law, Poisson's ratio, analysis of axially loaded members Simple Bending: pure bending of beam. Torsion: Torsion of cylindrical bars, torsional stress, modulus of rigidity and deformation, Flexural loading: Shear force and bending moment in beams: shear and moment relationship; shear and moment diagrams; flexure formula: shear stress in beamsSyllabus for First Year B.Tech (1" /2" Semester): CSE, IT, CE, ETC, EEE BASIC MECHANICAL ENGINEERING (Compulsory Course) | Module-I11[8] Basic concept of thermodynamics, Zeroth law and concept of thermal equilibrium, heat and work transfer principles First law of thermodynamics: I's application to closed systems and open systems (only steady flow considered) Module-IV[7] Second law of thermodynamics: reversible and irreversible processes Heat engines, heat pump and refrigerator, Equivalence of Kelvin-Plank and Clausius statement, Carnot cycle and its efficiency. Inequality of Clausiuis and entropy concept. Principle of increase of entropy. Suggested | 1. Engineering Mechanics - S. Timoshenko, D-H. Young, J. V, Rao and books S. Pati (TMH) 2. Strength of Materials, G.H. Ryder, Macmillan Publishers India Limited, 2002 3. Mechanics of Materials, R.C Hibbeler, PHI ‘4. Elements of Strength of Materials -S. Timoshenko, D. H. Young (East West Press Private Ltd.) 5. Strength of Materials , R. Subramanium, Oxford University press ©. Mechanics of Materials - Ferdinand Beer , E. Russell Johnston, Jr, J DeWolf (TMH) 7. Engineering Thermodynamics by P.K. Nag, Publisher: TMH 8. Fundamentals of Thermodynamics by RE. Sontang, C. Borgnakke, and G.J. Van Wylen, Wiley- India 9. Fundamental of Engineering Thermodynamics by B. Rathakrishnan, publisher. PHI Evaluation 1. Quiz:15% 2. Mid-sem: 30% Teacher's Assessment; 5% 4. End-sem: 50%Syllabus for 1 Year (1°/2" Semester) CSE/CE/IT/ETC/EEE Engineering Graphics (Compulsory Course) Engineering Graphics Credits: 1.5 [0-0-3] Prerequisites] None for this courss Course Prepare students for graphical design oF a system or component to meet desired needs Objective: ‘Within realistic constraints such as economic, environmental, social, ethical, health and safety, manufacturability, and sustainability. Further it prepares one to communicate effectively and to use the techniques, skills, and modern engineering tools necessary for engineering practice Course On completion of course, the students will learn Outcome: |. Exposure to the visual aspects of engineering design 2. Exposure to engineering graphics standards Exposure to solid modeling Exposure to computer-aided geometric design Exposure to creating working drawings Exposure to engineering communication Syllabus Engineering Graphics (Manual Mode) Principles of Engineering Graphics; Drawing Instruments; Lines, Lettering & Dimensioning; Geometric constructions; Principles of Orthographic Projection(applied to points, lines, planes and Solids); Angle of Projections;Isometric Projection; Surface Development; Reading a Drawing; Sectional Views, Engineering Graphics (Computer Mode) Introduction to computer aided drafting software; Use of software to draw orthographic projection Wiews, sectional views of diferent objects. Development of surface modeling and solid modeling of various machine elements Suggested '. Bhatt N.D., Panchal VM. & Ingle P-R., (2014), Engineering Drawing, Charolar Books: Publishing House 2 Shah, M.B. & Rana B.C. (2008), Engineering Drawing and Computer Graphics, Pearson Education 3. Agrawal B. & Agrawal C. M. (2012), Engineering Graphics, TMH Publication %Syllabus for 1" Year (1°/2™ Semester) CSE/CET/ETC/EEE Engineering Graphics (Compulsory Course) [ Evaiuation: |. Continuous Evaluation through each class: 60% 2. Quiz:20% 3._End Sem. Exam:20 wySyllabus for 1 Year (1°/2™ Semester) CSE/CE/IT/ETC/EEE Workshop Practice (Compulsory Course) Workshop Practice Credits: 1.5 [0-0-3] Prerequisites | None a | for this course: Course “The students will gain knowledge of the different manufacturing processes Objective: which are commonly employed in the industry, to fabricate ‘components using different materials, Cours Upon completion of this laboratory course, Outcome: |. Students will be able to fabricate components with their own hands, 2. They will also get practical knowledge of the dimensional accuracies and dimensional tolerances possible with different manufacturing processes. 3. By assembling different components, they will be able to produce small devices of their interest. Introducing to various machine tools and demonstration on machining, Turing a cylindrical job according toa drawing that involves the following operations- straight turning, taper turning, grooving, threading 2. Milling a eylindrical job to hexagonal shape using indexing head 5. Practice on electric arc welding. Lap and butt joining of low earbon steel using manual metal are welding method 4, Plastic moulding and glass cutting 5. Carpentry: Corner Lap joint and Devetail Lap joint 6. Fitting: Male-female joint ‘Suggested |. Elements of Workshop Technology, Vol. land Ii by Hajra choudhary, Books: Khanna Publishers 2. Workshop Technology by WAJ Chapman, Viva Books 3. Workshop Manual by Kannaiah/ Narayana, Scitech Evaluation 1. Continuous Evaluation through Job preparation: 60% 2. Quiz and viva: 20% 3._Record Evaluation:20% _|Mathematics Syllabus for CSE, IT, CE Branches Discrete Structures for CSE, IT & CE (Earlier it was under math Dept.) now is not under Math Department. It should be under CSE department (as per AICTE guidelines) Math-I-Calculus, ODE and Complex analysis (4-0-0) Detailed contents: Module 1: Differential Calculus (Functions of one Variable): (8 lectures) Rolle’s theorem, Cauchy’s mean value theorem (Lagrange’s mean value theorem as a special case), Taylor's and Maclaurin’s theorems with remainders, indeterminate forms, concavity and convexity of a curve, points of inflexion, asymptotes and curvature. ‘Module 2: Multivariable Calculus (Differential Calculus): (8 lectures) Limit, continuity and differentiability of functions of several variables, partial derivatives and their geometrical interpretation, differentials, derivatives of composite and implicit funetions, derivatives of higher order and their commutativity, Euler's theorem on homogeneous functions, harmonic functions, Taylor’s expansion of functions of several variables, maxima and minima of functions of several variables — Lagrange’s method of multipliers. Module 3: First order ordinary differential equations: (12 lectures) First order differential equations - exact, linear and Bernoulli's form, second order differential equations with constant coefficients, method of variation of parameters, general linear differential equations with constant coefficients, Euler's equations, system of differential equations. Sequences and Series: Sequences and their limits, convergence of series, comparison test, Ratio test, Root test, Absolute and conditional convergence, alternating series, Power series, Module 4: Complex Variables: (12 lectures) Limit, continuity, differentiability and analyticity of functions, Cauchy-Riemann equations, line integrals in complex plane, Cauchy's integral theorem, independence of path, existence of indefinite integral, Cauchy's integral formula, derivatives of analytic functions, Taylor's series, Laurent's series, Zeros and singularities, Residue theorem, evaluation of real integrals. Suggested Text/Reference Books 1. Erwin Kreyszig, Advanced Engineering Mathematics, 10* Edition, John Wiley & Sons, 2. Ramana B.V., Higher Engineering Mather Reprint, 2010. 3. Differential and Integral Calculus, N. Piskunov, Vo;-1, McGraw Hill, Moscow. 4. BS. Grewal, Higher Engineering Mathematics, Khanna Publishers, 36" Edition, 2010. 5. Caleulus: One-Variable Calculus with An Introduction to Linear Algebra, Vol 1, 2ed: Tom M. Apostol. 6. Calculus: Multi-Variable Calculus and Linear Algebra with Applications to Differential Equations and Probability, Vol 2, 2ed: Tom M. Apostol. ., Tata McGraw Hill New Delhi, 11* Course Outcomes‘The objective of this course is to familiarize the prospective engineers with techniques in | calculus, multivariate analysis and linear algebra. It aims to equip the students with standard concepts and tools at an intermediate to advanced level that will serve them well towards tackling more advanced level of mathematics and applications that they would find useful in their disciplines. The students will learn: To apply differential and integral calculus to notions of curvature and to improper integral. The fallouts of Rolle’s Theorem that is fundamental to application of analysis to Engineering problems. The tool of power series and Fourier series for learning advanced Engineering Mathematics. To deal with functions of several variables that are essential in most branches of ‘engineering. Math-II- Linear Algebra, Integral Calculus, Vector Calculus, Numerical Analysis (4-0-0) Detailed contents Module 1: Linear Algebra: (10 lectures) Linear Algebra: Algebra of matrices. Vector spaces - linear dependence of vectors, basis, linear transformations, rank and inverse of a matrix, solution of algebraic equations - consistency conditions, Hermitian, skew Hermitian and unitary matrices, bilineat forms, eigenvalues and eigenvectors. Numerical solution of system of linear equations: Gauss, Gauss-Jordan elimination and Gauss-Seidel iteration methods. Module 2: Integral Calculus: (10 lectures) Integral Calculus: Fundamental theorem of integral calculus, mean value theorems, evaluation of definite integrals - reduction formulae. Convergence of improper integrals, tests of convergence, Beta ‘and Gamma functions - elementary properties. Differentiation under integral sign, differentiation of integrals with variable limits - Leibnitz rule. Rectification, double and triple integrals, computations of area, surfaces and volumes, change of variables in double integrals - Jacobians of transformations, integrals dependent on parameters - applications. Module 3: Vector Calculus: (10 lectures) Vector Calculus: Scalar and vector fields, level surfaces, directional derivative, Gradient, Curl, Divergence, Laplacian, line and surface integrals, theorems of Green, Gauss and Stokes, line integrals independent of path. Module 4: Numerical Analysis: (10 lectures) Solution of polynomial and transcendental equations - bisection, Newton-Raphson and regula-falsi methods. Finite differences, Newtons forward and backward interpolation formulae, central difference interpolation formulae. Trapezoidal and Simpsons 1/3rd rules for numerical integration. Suggested Text/Reference Books 1. Erwin Kreyszig, Advanced Engineering Mathematics, 10° Edition, John Wiley & Sons, 2, Ramana B.V., Higher Engineering Mathematics, Tata MeGraw Hill New Delhi, 11* Reprint, 2010. 3, Differential and Integral Calculus, N. Piskunov, Vo;-1, McGraw Hill, Moscow. 4. BS. Grewal, Higher Engineering Mathematics, Khanna Publishers, 36° Edition, 2010. 5. Calculus: One-Variable Calculus with An Introduction to Linear Algebra, Vol 1, 2ed: Tom M. Apostol. 6. Calculus: Multi-Variable Calculus and Linear Algebra with Applications to Differential Equations and Probability, Vol 2, 2ed: Tom M. Apostol. Course Outcomes The objective of this course is to fami ize the prospective engineers with techniques in‘multivariate integration, ordinary and partial differential equations and complex variables. It aims to equip the students to deal with advanced level of mathematics and applications that would be essential for their disciplines. The students will learn: ‘The mathematical tools needed in evaluating multiple integrals and their usage. The tools of differentiation and integration of vector functions that are used in various techniques dealing engineering problems. ‘Apart from some other applications they will have a basic understanding of Beta and Gamma functions. The essential tool of matrices and linear algebra in a comprehensive manner. To understand numerical computations of Transcendental equations. Math-III-Probal Module 1: Basic Probability: (12 lectures) Probability: Classical, relative frequency and axiomatic definitions of probability, addition rule and conditional probability, multiplication rule, total probability, Bayes’ Theorem and independence. and Statistics (3-0-0) Random Variables: Discrete, continuous and mixed random variables, probability mass, probability density and cumulative distribution functions, mathematical expectation, moments, moment generating function, Chebyshev’s inequality. Module 2: Distributions (10 lectures) Special Distributions: Discrete uniform, Binomial, Negative Binomial Distribution, Geometric, Poisson, Exponential, Gamma, Normal distributions. Functions of a Random Variable. Joint Distributions: Joint, marginal and conditional distributions, product moments, correlation, independence of random variables, bivariate normal distribution, Sampling Distributions: The Central Limit Theorem, distributions of the sample mean and the sample variance for a normal population, Chi-Square, t and F distributions. Module 3: (8 lectures) Estimation and Data analysis: Estimators, confidence intervals for the mean(s) and variance(s) of ‘normal populations, exploratory data analysis. ‘Testing of Hypotheses: Null and alternative hypotheses, the critical and acceptance regions, two types of error, power of the test, the most powerful test and Neyman-Pearson Fundamental Lemma, tests for one sample problems for normal populations. References: + Probability & Statisties for Engineers & Scientists: R. E. Walpole, R. H. Myers, S.L. Myers, &K. Ye, Pearson Prentice Hall ‘+ Fundamentals of probability and statistics for engineers: T.T. Soong, Wiley. ‘+ Mathematical statistics & data analysis: J.A. Rice © Probability and mathematical statistics: Prasanna Sahoo, Department of Mathematics University of Louisville, USA © Allof statistics: Larry A. Wasserman Course Outcomes The objective of this course is to familiarize the students with statistical techniques. It ‘ims to equip the students with standard concepts and tools at an intermediate to advanced Ievel that will serve them well towards tackling various problems in the discipline.The students will learn: ‘The ideas of probability and random variables and various di continuous probability distributions and their properties. ‘The basic ideas of statistics including measures of central tendency, correlation and regression, ‘The statistical methods of studying data samples. crete and MATH-IV-Discrete Mathematics (CSE) (3-1-0) Module-1 (10 lectures) Logic Propositional logic, Propositional Equivalence, Predicates and Quantifiers, Nested Quantifiers, Rules of Inference, Proof methods and Strategies, Sequences and Summations, Mathematical Induction, Recursive definition and structural induction, Program Correction. ‘Module-2: (10 lectures) Relation: Recurrence relation, Solution to recurrence relation, Generating functions, Inclusion and exclusion, “Application of Inclusion and Exclusion Principle, Relation and their properties, Closure of relations, Equivalence relations, Partial orderings. Module-3: (10 lectures)-Graph & Tree Introduction to graph theory, Graph terminology, Representation of graphs, Isomorphism, Connectivity, Euler and Hamiltonian paths, shortest path problems, Planar graph, Graph colouring, Introduction to trees, Application of trees, Tree Traversal, Minimum Spanning tree. Module-4 (10 lectures) -Group & Boolean Algebra Groups, Subgroups, Cossets, Lagrange theorem, Group codes. Algebraic systems, Lattices, Distributive and Complemented Lattices, Boolean Lattices and Boolean Algebra, Boolean Functions and Boolean Expressions. References: © Kenneth H, Rosen, “Discrete Mathematics and its Applications”, Sixth Edition, 2008, Tata ‘McGraw Hill Education, New Delhi. +L. Liu and D. Mohapatra, “Elements of Discrete Mathematics”, Third Edition, 2008, Tata McGraw Hill Education, New Delhi MATH: Optimization Techniques (Ele ive) (3-0-0) Module-1: Idea of Engineering optimization problems, Classification of optimization algorithms, ‘modelling of problems and principle of modelling, Linear programming: Formulation of LPP, Graphical solution, Simplex method, Big-M method, Revised simplex method, Duality theory and its application, Dual simplex method, Sensitivity analysis in linear programming,Module-2: ‘Transportation problems: Finding an initial basic feasible solution by Northwest Comer rule, Least Cost rule, Vogel's approximation method, Degeneracy, Optimality test, MODI method, Stepping stone method; Assignment problems: Hungarian method for solution of Assignment problems. Integer Programming: Branch and Bound algorithm for solution of integer Programming Problems Queuing models: General characteristics, Markovian que capacity, Multiple servers, Finite sources, Queue discipline. 1g model, M/M/1 model, Limited queue Module-3: Convex sets, convex functions and their properties, Non-linear programming: Introduction to non-linear programming. Unconstraint optimization: Fibonacci and Golden Section Search method. Constrained optimization with equality constraint: Lagrange multiplier, Constrained ‘optimization with inequality constraint: Kuhn-Tucker condition, Quadratic programming, Recommended Reference books: * Stephen G. Nash, A. Sofer, “Linear and Non-linear Programming”, McGraw Hill © 2. A. Ravindran, K, M. Ragsdell, G. V. Reklaitis,” Engineering Optimization”, Second edition, Wiley India Pvt. Lid © 3.H.A. Taha, A. M. Natarajan, P. Balasubramanie, A. Tamilarasi, “Operations Research”, Eighth Edition, Pearson Education 4. F. 8. Hiller, G. J, Lieberman, “Operations Research”, Eighth Edition, Tata MeDraw Hill 5, P-K.Gupta, D-S.Hira, “Operations Research”, S.Chand and Company Ltd. K, Swarup, P-K. Gupta, Man Mohan, “Operations Research”, Sultan Chand and sons. Course Learning Outcomes: Upon successful completion of this course, the student will be able to understand: ‘* basic theoretical principles in optimization; formulation of optimization models; + solution methods in optimization; «methods of sensitivity analysis and post processing of results applications to a wide range of engineering problems Mathematics Syllabus for ETC & EEE Branches Math-I-Calculus, ODE and Complex analysis (4-0-0) Detailed contents: Module 1: Differential Calculus (Functions of one Variable): (8 lectures) Rolle’s theorem, Cauchy's mean value theorem (Lagrange’s mean value theorem as a special case), Taylor's and Maclaurin’s theorems with remainders, indeterminate forms, concavity and convexity of a curve, points of inflexion, asymptotes and curvature.Module 2: Multivariable Calculus (Differential Calculus): Limit, continuity and differentiability of functions of several variables, partial derivatives and their geometrical interpretation, differentials, derivatives of composite and implicit functions, derivatives of higher order and their commutativity, Euler's theorem on homogeneous functions, harmonic functions, Taylor's expansion of functions of several variables, maxima and minima of functions of several variables — Lagrange’s method of multipliers, Module 3: First order ordinary differential equations: (12 lectures) First order differential equations - exact, linear and Bernoulli's form, second order differential ‘equations with constant coefficients, method of variation of parameters, general linear differential ‘equations with constant coefficients, Euler's equations, system of differential equations. Sequences and Series: Sequences and their limits, convergence of series, comparison test, Ratio test, Root test, Absolute and conditional convergence, alternating series, Power series. Module 4: Complex Variables: (12 lectures) Limit, continuity, differentiability and analyticity of functions, Cauchy-Riemann equations, line integrals in complex plane, Cauchy's integral theorem, independence of path, existence of indefinite integral, Cauchy’s integral formula, derivatives of analytic functions, Taylor's series, Laurent’s series, Zeros and singularities, Residue theorem, evaluation of real integrals. Suggested Text/Reference Books 1. Erwin Kreyszig, Advanced Engineering Mathematics, 10% Edition, John Wiley & Sons, 2, Ramana B.V., Higher Engineering Mathematics, Tata McGraw Hill New Delhi, 11* Reprint, 2010. 3. Differential and Integral Calculus, N. Piskunov, Vo;-1, McGraw Hill, Moscow. 4. BS. Grewal, Higher Engineering Mathematics, Khanna Publishers, 36" Edition, 2010. 5. Calculus: One-Variable Calculus with An Introduction to Linear Algebra, Vol 1, 2ed: Tom M Apostol 6. Calculus: Multi-Variable Calculus and Linear Algebra with Applications to Differential Equations and Probability, Vol 2, 2ed: Tom M. Apostol. Course Outcomes The objective of this course is to familiarize the prospective engineers with techniques in calculus, multivariate analysis and linear algebra. It aims to equip the students with standard concepts and tools at an intermediate to advanced level that will serve them well towards tackling more advanced level of mathematics and applications that they would find useful in their disciplines. ‘The students will learn: To apply differential and integral calculus to notions of curvature and to improper integrals. ‘The fallouts of Rolle’s Theorem that is fundamental to application of analysis to Engineering problems. The tool of power series and Fourier series for learning advanced Engineering Mathematics. To deal with functions of several variables that are essential in most branches of engineering. . Math-II- Linear Algebra, Integral Calculus, Vector Caleulus, Numerical Analysis (4-0-0)Detailed contents Module 1: Linear Algebra: (10 lectures) Linear Algebra: Algebra of matrices. Vector spaces - linear dependence of vectors, basis, linear transformations, rank and inverse of a matrix, solution of algebraic equations - consistency conditions, Hermitian, skew Hermitian and unitary matrices, bilinear forms, eigenvalues and eigenvectors, Numerical solution of system of linear equations: Gauss, Gauss-Jordan elimination and Gauss-Seidel iteration methods. Module 2: Integral Calculus: (10 lectures) Integral Calculus: Fundamental theorem of integral calculus, mean value theorems, evaluation of definite integrals - reduction formulae. Convergence of improper integrals, tests of convergence, Beta and Gamma functions - elementary properties. Differentiation under integral sign, differentiation of integrals with variable limits - Leibnitz rule. Rectification, double and triple integrals, computations of area, surfaces and volumes, change of variables in double integrals - Jacobians of transformations, integrals dependent on parameters - applications. Module 3: Vector Calculus: (10 lectures) Vector Calculus: Scalar and vector fields, level surfaces, directional derivative, Gradient, Curl, Divergence, Laplacian, line and surface integrals, theorems of Green, Gauss and Stokes, line integrals independent of path. Module 4: Numerical Analysis: (10 lectures) Solution of polynomial and transcendental equations - bisection, Newton-Raphson and regula-falsi methods. Finite differences, Newtons forward and backward interpolation formulae, central difference interpolation formulae. Trapezoidal and Simpsons 1/3rd rules for numerical integration. Suggested Text/Reference Books 1. Erwin Kreyszig, Advanced Engineering Mathematics, 10 Edition, John Wiley & Sons, 2. Ramana B.V., Higher Engineering Mathematics, Tata McGraw Hill New Delhi, 11* Reprint, 2010. 3, Differential and Integral Calculus, N. Piskunov, Vo;-1, McGraw Hill, Moscow. 4, BS. Grewal, Higher Engineering Mathematics, Khanna Publishers, 36" Edition, 2010. 5. Calculus: One-Variable Calculus with An Introduction to Linear Algebra, Vol 1, 2ed: Tom M. Apostol 6. Caloulus: Multi-Variable Calculus and Linear Algebra with Applications to Differential Equations and Probability, Vol 2, 2ed: Tom M. Apostol. Course Outcomes The objective of this course is to familiarize the prospective engineers with techniques in multivariate integration, ordinary and partial differential equations and complex variables. It aims to equip the students to deal with advanced level of mathematics and applications that would be essential for their disciplines. ‘The students will learn: The mathematical tools needed in evaluating multiple integrals and their usage The tools of differentiation and integration of vector functions that are used in various techniques dealing engineering problems, Apart from some other applications they will have a basic understanding of Beta and Gamma functions. The essential tool of matrices and linear algebra in a comprehensive manner. To understand numerical computations of Transcendental equations. & Stochastic Process (3-0-0) Module-1:Module 1: Basic Probability: (10 lectures) Classical, relative frequency and axiomatic definitions of probability, addition rule and conditional probability, multiplication rule, total probability, Bayes’ Theorem, and independence, Random Variables: Discrete, continuous, and mixed random variables, probability mass, probability density and cumulative distribution functions, mathematical expectation, moments, ‘moment generating function, Chebyshev’s inequality. ‘Module 2: Special Distributions: (10 lectures) Discrete uniform, Binomial, Geometric, Poisson, Exponential, Gamma, Normal distributions. Functions of a Random Variable. Joint Distributions: Joint, marginal, and conditional distributions, product moments, correlation, independence of random variables, bivariate normal distribution, Module-3: Stochastic Processes: (10 lectures) Definition and classification of stochastic processes, Poisson process, birth and death process, applications to queues, discrete time Markov chains, References: Fundamentals of probability and statistics for engineers: T.T. Soong, Wiley. + Probability and mathematical statistics: Prasanna Sahoo, Department of Mathematics University of Louisville, USA + Probability, Statistics, and Queuing Theory with computer Science Applications, A.O. Allen, Academic Press (ELSEVIER), Indian Reprint + An Introduction to Probability Models, 5. M. Ross, Academic Press (Elsevier-10* Edition), Indian reprint, Math-IV-Transform Calculus & Matrix Algebra-(-0-0) Module-1: Transform Calculus-I: Laplace transformation and its use in getting solution to differential equations, Convolution, Integral equations. Module-2: Transform Calculus-II: Fourier series, Fourier expansion of functions of any period, Even and odd functions, Half- range expansion, Fourier transform and Fourier Integral. Brief Introduction of Z-Transform. Module-3: Matrix Algebr: Analytic geometry: Norms, Inner Products, lengths and distances, orthogonality, orthonormal basis, ‘orthogonal projections, rotations, Gram-Schmiat’s orthogonalization, orthogonal, unitary matrices and their properties, generalized inverse, Moore-Penrose inverse, minimum-norm g-inverse, idempotent matrix, projection matrices, quadratic forms, positive definite, non-negative definite, negative definite matrices and their properties. Matrix Decomposition: QR, Cholesky, LDU, UDU, SVD, References: 1. Erwin Kreysig, Advanced Engineering Mathematics, 9th Edition, John Wiley & Sons, 2006. 2. B.S. Grewal, Higher Engineering Mathematics, Khanna Publishers, 36th Edition, 2010. 3. Introduction to Linear Algebra, Gilbert Strang, 2016. MATH-VI-Optimization Techniques (Elective) (3-0-0)Module-1: Idea of Engineering optimization problems, Classification of optimization algorithms, modelling of problems and principle of modelling. Linear programming: Formulation of LPP, Graphical solution, Simplex method, Big-M method, Revised simplex method, Duality theory and its application, Dual simplex method, Sensitivity analysis in linear programming, Module-2: ‘Transportation problems: Finding an initial basic feasible solution by Northwest Comer rule, Least Cost rule, Vogel’s approximation method, Degeneracy, Optimality test, MODI method, Stepping stone method; Assignment problems: Hungarian method for solution of Assignment problems. Integer Programming: Branch and Bound algorithm for solution of integer Programming Problems. Queuing models: General characteristics, Markovian queuing model, M/M/I model, Limited queue capacity, Multiple servers, Finite sources, Queue discipline. Module-3: Convex sets, convex functions and their properties, Non-linear programming: Introduction to non-linear programming, Unconstraint optimization: Fibonacci and Golden Section Search method. Constrained optimization with equality constraint: Lagrange multiplier, Constrained optimization with inequality constraint: Kuhn-Tucker condition, Quadratic programming. Recommended Reference books: * Stephen G. Nash, A. Sofer, “Linear and Non-linear Programming”, McGraw Hill * A. Ravindran, K. M. Ragsdell, G. V. Reklaitis,” Engineering Optimization”, Second edition, Wiley India Pvt. Lid * HLA. Taha, A. M. Natarajan, P. Balasubramanie, A. Tamilarasi, “Operations Research”, Eighth Edition, Pearson Education FS. Hiller, G. J. Lieberman, “Operations Research”, Eighth Edition, Tata McDraw Hill P. K. Gupta, D. S, Hira, “Operations Research”, S. Chand and Company Ltd. K. Swarup, P.K. Gupta, Man Mohan, “Operations Research’, Sultan Chand and sons. Course Learning Outcomes: Upon sucessful completion of this course, the student will be able to understand: ‘+ _ basic theoretical principles in optimization; formulation of optimization models; * solution methods in optimization; * methods of sensitivity analysis and post processing of results applications to a wide range of engineering problems. A Hepat“Course: Physics Code: PH101 Credits: 4 Objective: The main goal of this course isto familiarize the engineering students with the funda- ‘mental concepts and principles of physics, which will help to lay the foundation for the various engineering courses, and its applications in various engineering fields: Module-1: Oscillation & Optics tion! [5] lectures ‘Various oscillatory systems- overview; harmonic oscillator: simple harmonic oscillation, damped harmonic oscillation and forced-damped harmonic oscillation; resonance; coupled oscillator: spring-mass system, pendulums, normal modes and frequencies. Chapter 2: Optics? [8] lectures Light as (electromagnetic) wave; superposition of waves, coherent and incoherent superposition (and their intensity distributions); coherent sources of light. Imerference of light: Newton's rings. Diffraction of light: Fresnel and Fraunhofer diffractions; theory of diffraction (Fraun- hofer diffraction due to a single sli): intensity distribution, principal maximum and secondary maxima; grating (diffraction due to large number of slits). Polarization of light: plane, cir- cular and elliptically polarized light; optical effects: law's of Reflection and Refraction, total internal reflection, Brewster's law and Malus’ law; double refracting crystal: ordinary ray (o- ray), extraordinary ray(e-ray) and optic axis; polarizer and analyzer; wave plates: quarter- and half-wave plates construction and use Module-2: Quantum Physics Chapter 3: Basics of Quantum Physics" [6} lectures Historical overviews: black body radiation, photoelectric effect and stability of hydrogen atom; \wave-particle duality: wave nature of particles (Davisson-Germer expriment) and particle na- ture of waves (Compton scattering); de Broglie hypothesis and its applications; Heisenberg uncertainty principle, application of the uncertainty principle- nonzero minimum energy. Basic features (or formulation) of Quantum mechanics-a transition from deterministic to probabilistic description; wave function; probability density; superposition principle; Schrédinger equation- ‘ime dependent and time independent; observables and operators; eigenfunctions and eigenval- ues; expectation values, Chapter 4: Application of Quantum Mechanics" [5] lectures Free particles- continuous states; potential steps- reflection and transmission; potential barrier- tunneling; infinite deep potential well (particle in a box)- energy eigenvalues and eigenfunctions; harmonic oscillator- eigenstates and energy eigenvalues. Module-3: Electromagnetic Theory Chapter 5: Electromagnetism? [4} lectures Vector calculus: scalar and vector fields, gradient, divergence and curl operators; line-, surface- and volume integrals; Gauss divergence theorem, Stoke’s theorem and Green's theorem. Elec- trostatics: Coulomb's law, electric field(E), electric displacement(D) and electric flux(d); Gauss’ law in free space and dielectric medium. Magnetism: Lorentz force, magnetic field(B), magnetic intensity (1) and magnetic flux(g); Biot-Savart law; Ampere's citcuital law, dis- placement current; Faraday’s law of electromagnetic induction; Maxwell's electromagnetic ‘equations in differential form and in integral form, wheChapter 6: Electromagnetic waves? [4] lectures Electromagnetic wave equations in (a) free space, (b) medium, (c) charge free conducting and nonconducting media; vector potential and scalar potential; gauge conditions; wave equation in terms of scalar and vector potentials; transverse nature of electromagnetic wave; electromag- netic energy, Poynting vector, Poynting theorem, intensity of electromagnetic wave. Module-4: Statistical Physics Chapter 7: Elementary Statistical Physics and Its Applications” [9] lectures Statistical systems: classical and quantum; statistical distributions: Maxwell-Boltzmann, Fermi- Dirac and Bose-Einstein statistics. Molecular energies: molecular energy distribution and av- erage molecular energy: molecular speeds: root-mean-square speed, average molecular speed ‘and most probable speed. Blackbody radiation: Rayleigh-Jeans formula, Planck’s radiation law, Wien’s displacement law and Stefan-Boltzmann law; Bose-Einstein condensation. Einstein's theory of stimulated emission of radiation. Specific heat of solids: Dulong-Petit law, Einstein’s theory and Debye’s theory; free electrons in metal: fermi-energy, average electron energy and electron specific heat; dying stars: white dwarfs, neutron stars and black holes. Text and Reference Books: 1. “Engineering Physics”, H.K. Malik and A.K, Singh, McGraw-Hill. 2. “Optics”, Ajoy K. Ghatak, McGraw-Hill 3. “Concepts of Modern Physics", Arthur Beiser, McGraw-Hill 4, “Quantum Physics”, Robert Bisberg and Robert Resnick, Wiley. 5, “Introduction to Electrodynamics”, David J. Griffiths, Pearson. 6. “Physics for Engineering Students”, B.B Swain and P.K. Jena, Kitab Mahal.PHYSICS LAB SYLLABUS IIIT BHUBANESWAR 1. To determine frequencies of oscillation for (i) Uncoupled oscillation (ii) coupled pendulum oscillation (in phase, out of phase and beat case). 2. To determine wavelength of Sodium light by forming Newton’s rings. 3. To determine grating element of a plane diffraction grating. 4, To determine damping constant in various medium (air & water). 5. To demonstrate the existence of discrete energy level in neon atom and determine its excitation energy using Frank Hertz unit. 6. To study the characteristics of polarization of light using half wave plate. 7. To determine the energy band gap of a given semiconductor by using four probe setup. To determine the dielectric constant of various dielectric materials. To study Hall effect and to determine {i) type of semiconductor (ii) Majority carrier concentration. (iii) Mobility of majority carrier by using Hall apparatus. 10. To determine Resonance frequency of the forced oscillation.International Institute of Information Technology Bhubaneswar Proposed Syllabus for English Total Credit: 6 ( English for ‘Semester-l All Branches | Credit- | Full Marks: 100 | Classes per Lab per Week: | Communication Compulsory week: 1 (I hour) | I (I! hours) 2. Professional | Semester-il__| All Branches | Credit- | Full Marks: 100 | Classes per Lab per Week: | English Compulsory | 1+1: week: 1 (I hour) | 1 (II hours) 3.Critical Reading | Semester-ill | CSE,ITand | Credit- | Full Marks: 100 | Classes per Lab per Week: and cE 141: week: (I hour) | | (II hours) Communication Compulsory 4.Critical Reading | Semester-IV ETC and EEE | Credit- | Full Marks: 100 Classes per Lab per Week: and Compulsory | 1+1: week: | (Ihour) | | (I! hours) Coy aunication 5. Open Elective: | Semester Prerequisites | Credit- | Full Marks: 100 | Classes per “Introduction to | II/IV/V for the 3 week: 3 (3 Digital Elective: | hours) Humanities” None TaanPingbr baratProposed Detail Syllabus for Semester | , Il and MI/IV Semester | Communication Skills |; English for Communication & Credit-2 B. Tech All Branches Course Objectives a. To obtain a basic understanding of how human communication works b. To obtain a general knowledge of the basic theories of human communication, their origin, and their proponents c. To Develop an understanding of the various models of communication d. To obtain a general knowledge of the various contexts of human communication and how they differ from each other: interpersonal, small group, organizational, «e intercultural and business e. To develop an understanding of the processes of Oral and Written communication in English f. To learn how to communicate effectively in English with others of varying professions, beliefs and values and in a variety of contexts To develop listening skills To develop analytical skills i. To develop critical thinking skills Course Outcomes a. Students will improve their speaking ability in English both in terms of fluency andcomprehensibility. b. Students will improve their accuracy and fluency in producing and understanding spoken and written English Tan Tavtlnw Prspte« vse Students willdevelop their abilities in grammar, oral skills, reading, writing and study skills Students will attain and enhance competence in the four modes of language learning: writing, speaking, reading and listening. ‘students will heighten their awareness of correct usage of English in writing and speaking and use them in specific communicative contexts. Studentswill become a more competent, efficient, and perceptive academic reader who is able to communicate to others through writing and speaking the contents and main ideas of what is read. Students will develop abilities as critical thinkers, readers and writers. ‘students will learn to be sensitive, respectful and ethical communicators. Students will develop public speaking abilities both informally and formally. Students will develop self-awareness about the English language and the culturally- bound conventions of International academic and professional speaking and writing. Students will learn to present ideas clearly and logically to achieve a specific purpose and to be appropriate for an intended audience. Detail Syllabus Module -I: Introduction to Communication Definition, Nature and Scope of Communication Importance and Purpose of Communication Process of Communication Models of Communication and Types of Communic Components of Communication Issues in Communication: Registers, Dialects, Home Language Influence and Interference and Bias free Communication Verbal and Non-verbal Communication Module -II: Effective Communication Essentials of Effective Communication Communication Techniques Barriers to Communication Language for Communication Communication in English and Its Importance Age of Globalization and the Need for Communicating in English Uses of English in academic and professional situations Module -Ill: Oral and Written Communication in English Difference between Speech and Writing International Phonetic Alphabet (IPA) Symbols Stress and Intonation English Pronunciation Writing Principles Tam Testes Papal‘© English Grammar for Communication ‘+ Communication in Context: Speech and Writing Semester II Communication Skills II: Professional English Credit-2 B. Tech All Branches Course Objectives a. To develop communication skills in a professional/business context and to provide an overview of the prerequisites to Business Communication b. To provide an outline to effective Organizational Communication and to underline ‘the nuances of Business communication c. To impart the correct practices of the strategies of Effective Business reading, speaking and writing d. To introduce students to problem-solving, critical thinking, and professional communication through integrated skills. The emphasis is on how to use formal vocabulary and expressions in business-related environments both orally and in written form. e. To enable students to manage and actively participate in business communication activities like meetings, discussions, presentations and debates f. To enable students to express opinion, tendencies, cause and effect, and reasons; provide suggestions and recommendations and talk about advantages and disadvantages g. Tomake them write descriptions, definitions, e-mails, memos, reports, business and information letters etc. h. To enable the students toengage in telephone conversations with English-speakers, negotiate with English-speaking clients and customers and to give clear and compelling presentations and project updates to them i, To develop in students productive skills through group/pair work, presentations, discussions, and role-plays etc. & Course Outcomes Tan Toustun Poypolia. Students will develop improved reading comprehension, writing, and grammar skills; business vocabulary development and understanding of current global business culture. b. Students will develop language skills for business management and marketing through role-playing, group, discussions, negotiations, oral interviews, and oral presentations. c. Students will develop basic skills to deal with people in business situations d. Students will increase their knowledge of key business concepts worldwide, expand vocabulary related to general business situations develop confidence to deal with people and basic issues in the business world. e. Students will interpret and present information in graphs and charts. f. Students will describe statistical trends and products. g. Students will write and read business reports, faxes, and memos, proposals, letters, press documents, resumes, applications and other professional business scripts. h. Students will prepare and formulate questionnaires/questions. i. Students will categorize and use formal and informal registers in business/profession j. Students will discuss, brainstorm, and evaluate ideas by listening and taking notes. k. Students will listen and read for specific information, gist, key ideas, general ideas and understand implied ideas. Detail Syllabus Module I: Professional English Basics eee Professional English: Definition, Scope, Extent & Coverage, Dimensions and Limitations Professional English and Business English Business Communication in English ‘Types, Patterns and Forms of Business Communication Business Communication Approaches: Direct and Indirect, Objective, Clear and simple Oral and written Business Communication Role of Non-verbal Communication Module I: Oral Business Communication in English Principles of Business Speaking Importance of Pronunciation and Right Speech Presentation Strategies: Analysis of situation and locale, Audience, Modulating Style & Content Speaking with confidence: Kinesics, Paralinguistic features of Voice-Dynamics like Pitch, Intonation, Stress & Rhythm Various Work-place Communications: Meetings, Interviews, Press Conferences, Conversations and Dialogues Torn Tescphen Fenspeaks© Effective Listening in Business Communication © Use of Appropriate Technology Module-IiI: Written Business Communi English ‘© Basic Business Writing Principles: Sentence Structure, Phrases & Clauses in Sentences, Coherence, Cohesion, Unity, Emphasis in Writing and Devices Writing Methods and Styles: Inductive, Deductive, Exposition, Linear, Spatial & Chronological etc. Writing Process: pre-writing, drafting, re-writing Various Work-place Communications: OfficialLetters, Memos, Reports, Proposals, Press Release, Agenda and Minutes of Meeting etc. Common Grammatical Errors: Subject-verb agreement, Correct Usage of Nouns, Pronouns, Agreement, Modifiers,Articles, Prepositions, Cliches and Redundancies Referencing © Punctuations Suggested Lab Activities: Semester I/II Practice Exercises Oral/Written Business Communication Practice Syllabus The Communication practices are oriented to practices of the prescribed modules. The faculty will design exercises following the prescribed guidelines mentioned below to improve and refine the communication skills of the students. The list below is suggestive and not exhaustive. Communication Skills in Semester | will focus on General Communication using English language and Semester Il on Professional/Business Communication using English language both oral and written. The practice outcomes include the following: Linguistic and communicative proficiency in General/Business English Interpretive Mode of Communication Presentational Mode of Communication Negotiation and influence mode of communication Cultural communication in business Interpersonal mode of communication Critical Thinking Skills ‘Writing ability to generate relevant and sufficient content Ability to organize his or her thoughts coherently in writing Ability to adhere to the conventions of correct mechai structure Ability to use correct terminology and rich vocabulary Practice Exercises/ Guidelines 's and sentence Teanotites ip1. Practice of the modules through role play and simulation exercises in many creative ways can be adopted by the faculty. 2. Presentations of jeas, concepts, cases, examples and discourses on communication 3. Expression and interpretation of business English through cases, role play, group discussions and visuals 4, Listening to a List of Recordings/online exercises/books. The resource may include the following list. The faculty can choose one or several of them and guide the students how to use the resource: 1. ACommunicative Grammar of English by Geoffrey Leech 2. English Pronunciation by J.D. O'Connor (BBC) 3, Listen and Read with Peter and Molly by G. Bronghton (BBC) 4, Stress, Rhythm and Intonation by J.D. O'Connor (BBC) 5, Pronunciation Practice (BBC) 6. What to Say by Viola Hughes (BBC) 7. Keep Up your English by W. Stannard Allen (BBC) 8. Getting On in English by John Haycraft and Jo Barnett (BBC) 9. Choosing your English by John Haycraft and Terence Creed (BBC) 10. The Play's the Thing (BBC) 11. The English Teaching Theatre (BBC) 12. Countdown to English by Roger Owen (BBC) 13. Better Spoken English by Geoffrey Bernard (Macmillan) 14, Say It Again by Chris Faram and John Wright (BBC) 15. Exercises in Spoken English: Accent, Rhythm, Intonation (CIEFL, Hyderabad) 16. English Course (The Linguaphone Institute) 17. Advanced English Course (The Linguaphone Institute) 18. American English Course (The Linguaphone Institute) 5. English for Specific Purposes (Sets of Textbooks/ and Listening materials). Students will read and listen from these sources in the practice sessions. a. The Language of Business by Angela Mack (BBC) b. English for International Co-operation by Peter Roe (BBC) «, Scientifically Speaking (BBC) Tertindton Fepnahid. Project Aftermath by Tim and Sue Hodlin (BBC) e. Export English by Susan Norman (BBC) f. Going to Work in English by Susan Norman and Chris Faram (BBC) g. The English Language Laboratory Drills for Students of Science and Technology by G. Mauger 6. Write various business communi n forms prescribed in the modules that include: ‘* Memos © Letters © Reports * Proposals * Minutes Agenda Press release © Emails 7. Group Writing Projects (topics related to syllabus) 8. Individual Writing Projects (topics related to syllabus) 9. Writing mechanics and referencing 10. Bibliography Semester III/IV Communication Skills III:Critical Reading and Communication Credit-2 B. Tech All Branches Course Objectives a. To develop critical reading ability and the ability to link critical reading to critical thinking b. To develop the ability to recognize the explicit and implicit features available in the texts Feros Papc, To be able to identify and analyse: Figurative language + Intentions «Attitude and tone = Ambiguity Deep layer meanings To be able to value conflicts, judgments and assumptions To be able to develop contrasting perspectives To be able to accurately assess differences and similarities in point of view To be able to connect reading skills with effective communication Fepmee To be able to identify techniques for strengthening vocabulary i. To be able to use reading material/input in communication A Course Outcomes i. Students will be able to read a variety of authentic college level readings: academic prose, literary forms, journalistic articles, biographies and scientific readings, and respond thoughtfully and critically, by drawing connections between personal experience, world knowledge and/or other sources (lectures, readings, films) and the assigned text. Students will be able to expand vocabulary through practice. Students will be able to distinguish between definitions and any accompanying negative and/or positive connotations and use those to help determine facts, opinions, blended statements or an author's bias. Students will be able to refine their communication skills on the basis of their learning to read critically and gather a huge amount of comprehensible input. v. Students will be able to read analytically and think critically at a higher level and demonstrate the ability to transfer critical thinking skills to the interpretation « and analysis of ideas encountered in academic reading. vi. Students will be able to demonstrate their ability to collect, organize and evaluate relevant evidence necessary to make decisions, solve problems and/or develop convincing, supported and well-founded conclusions on issues related to them. vii, Identify the common types of support in arguments, their relevance or irrelevance, common argument flaws, opposing points of views, and refutations. Detail Syllabus Module-I: The Importance of Reading and Its Principles ‘+ The importance of developing Critical Reading skills © Strategies of Critical Reading: Previewing, Annotating, Summarizing, Analysing, Re- reading and Responding Tannticilas baat
You might also like
Cse Programming For Problem Solving Lecture Notes
PDF
No ratings yet
Cse Programming For Problem Solving Lecture Notes
185 pages
27 Computer Programming CS100 Syllabus
PDF
No ratings yet
27 Computer Programming CS100 Syllabus
2 pages
Andhra Pradesh State Council of Higher Education
PDF
No ratings yet
Andhra Pradesh State Council of Higher Education
32 pages
Deviation Syllabus of CP
PDF
No ratings yet
Deviation Syllabus of CP
7 pages
CS documents
PDF
No ratings yet
CS documents
19 pages
B.Sc. 1 Semester Computer Science Syllabus Under CBCS
PDF
No ratings yet
B.Sc. 1 Semester Computer Science Syllabus Under CBCS
9 pages
Syllabus
PDF
No ratings yet
Syllabus
129 pages
Syllabus CSE
PDF
No ratings yet
Syllabus CSE
129 pages
Choice Based Credit System (CBCS) : Kazi Nazrul University
PDF
No ratings yet
Choice Based Credit System (CBCS) : Kazi Nazrul University
27 pages
Besck104e-204e
PDF
No ratings yet
Besck104e-204e
3 pages
Course Outline Prog Fundamental Session2014
PDF
No ratings yet
Course Outline Prog Fundamental Session2014
3 pages
PU Syllabus PDF
PDF
No ratings yet
PU Syllabus PDF
5 pages
CSE101 Syl 2
PDF
No ratings yet
CSE101 Syl 2
2 pages
PROGRAMMING IN C Syllabus Sage University
PDF
No ratings yet
PROGRAMMING IN C Syllabus Sage University
3 pages
Syllabus
PDF
No ratings yet
Syllabus
12 pages
Pec Cse Pps Course File (5units)
PDF
No ratings yet
Pec Cse Pps Course File (5units)
309 pages
BSC Ecs Syllabus
PDF
No ratings yet
BSC Ecs Syllabus
9 pages
Bidyanagar, Mahura, Janla, Bhubaneswar - 752 054 (Orissa) : C.V.Raman College of Engineering
PDF
No ratings yet
Bidyanagar, Mahura, Janla, Bhubaneswar - 752 054 (Orissa) : C.V.Raman College of Engineering
5 pages
1.Syllabus Book Updated.docx
PDF
No ratings yet
1.Syllabus Book Updated.docx
4 pages
KUK CSE 2nd Yr - SY
PDF
No ratings yet
KUK CSE 2nd Yr - SY
23 pages
CSF 102 Course Description
PDF
No ratings yet
CSF 102 Course Description
3 pages
CS F111 Computer Programming I Sem 2024-25 HO
PDF
No ratings yet
CS F111 Computer Programming I Sem 2024-25 HO
5 pages
Bachelor of Technology Cse
PDF
No ratings yet
Bachelor of Technology Cse
8 pages
DSC LAB MANUAL_NEW
PDF
No ratings yet
DSC LAB MANUAL_NEW
79 pages
10 ECSDCDSA001P Data Structures & Algorithms Lab Updated
PDF
No ratings yet
10 ECSDCDSA001P Data Structures & Algorithms Lab Updated
2 pages
BPOPS103-203 (1)
PDF
No ratings yet
BPOPS103-203 (1)
4 pages
Fundamentals of Computer Programming 21CSH-101
PDF
No ratings yet
Fundamentals of Computer Programming 21CSH-101
4 pages
CCCS 111 - T104 Course Specifications
PDF
No ratings yet
CCCS 111 - T104 Course Specifications
7 pages
CP Syllabus
PDF
No ratings yet
CP Syllabus
5 pages
syllabus 2020-23
PDF
No ratings yet
syllabus 2020-23
24 pages
2. Syllabus-PSUC-2024-2025_FINAL
PDF
No ratings yet
2. Syllabus-PSUC-2024-2025_FINAL
3 pages
Programming For Problem Solving - Syllabus - R22
PDF
No ratings yet
Programming For Problem Solving - Syllabus - R22
2 pages
Syllabus PDF
PDF
No ratings yet
Syllabus PDF
127 pages
COS1077B C Programming
PDF
No ratings yet
COS1077B C Programming
48 pages
CSE 115 - 115L Course Objective and Outcome
PDF
No ratings yet
CSE 115 - 115L Course Objective and Outcome
6 pages
cse-101-syllabus
PDF
No ratings yet
cse-101-syllabus
3 pages
28 - BCA Syllabus (2017-18)
PDF
No ratings yet
28 - BCA Syllabus (2017-18)
24 pages
B.Tech CSE 34th Sem
PDF
No ratings yet
B.Tech CSE 34th Sem
21 pages
c Programming Syllabus
PDF
No ratings yet
c Programming Syllabus
3 pages
Computer Pgming PDF
PDF
No ratings yet
Computer Pgming PDF
2 pages
CC109 - FUNDAMENTALS OF PROGRAMMING
PDF
No ratings yet
CC109 - FUNDAMENTALS OF PROGRAMMING
3 pages
CSE1011
PDF
No ratings yet
CSE1011
2 pages
CSC 110 C Programming
PDF
No ratings yet
CSC 110 C Programming
2 pages
Effective english
PDF
No ratings yet
Effective english
12 pages
Computer Science Application 1
PDF
No ratings yet
Computer Science Application 1
5 pages
3. BPOPC103
PDF
No ratings yet
3. BPOPC103
4 pages
CSE115 Taken
PDF
No ratings yet
CSE115 Taken
2 pages
R20 PPSC Unit Wise Imp Questions
PDF
No ratings yet
R20 PPSC Unit Wise Imp Questions
4 pages
20 Computer Science ANU 2020-21
PDF
No ratings yet
20 Computer Science ANU 2020-21
56 pages
C Programming Syllabus
PDF
No ratings yet
C Programming Syllabus
1 page
Course Outline Introduction to Programming
PDF
No ratings yet
Course Outline Introduction to Programming
2 pages
HDS 1st Sem C Lang Syllabus
PDF
No ratings yet
HDS 1st Sem C Lang Syllabus
3 pages
BSC Sand Model Paper
PDF
No ratings yet
BSC Sand Model Paper
4 pages
CSE2010_ADVANCED-C-PROGRAMMING_ETH_1.0_57_CSE2010_59 ACP
PDF
No ratings yet
CSE2010_ADVANCED-C-PROGRAMMING_ETH_1.0_57_CSE2010_59 ACP
3 pages
AI & DS Sylabus Book - PMD
PDF
No ratings yet
AI & DS Sylabus Book - PMD
6 pages
CSE-113: Structured Programming Language CSE-114: Structured Programming Language Lab
PDF
No ratings yet
CSE-113: Structured Programming Language CSE-114: Structured Programming Language Lab
21 pages
Detailed Syllabus C Programming BIT102 (1)
PDF
No ratings yet
Detailed Syllabus C Programming BIT102 (1)
6 pages
CSE101
PDF
No ratings yet
CSE101
1 page
Related titles
Click to expand Related Titles
Carousel Previous
Carousel Next
Cse Programming For Problem Solving Lecture Notes
PDF
Cse Programming For Problem Solving Lecture Notes
27 Computer Programming CS100 Syllabus
PDF
27 Computer Programming CS100 Syllabus
Andhra Pradesh State Council of Higher Education
PDF
Andhra Pradesh State Council of Higher Education
Deviation Syllabus of CP
PDF
Deviation Syllabus of CP
CS documents
PDF
CS documents
B.Sc. 1 Semester Computer Science Syllabus Under CBCS
PDF
B.Sc. 1 Semester Computer Science Syllabus Under CBCS
Syllabus
PDF
Syllabus
Syllabus CSE
PDF
Syllabus CSE
Choice Based Credit System (CBCS) : Kazi Nazrul University
PDF
Choice Based Credit System (CBCS) : Kazi Nazrul University
Besck104e-204e
PDF
Besck104e-204e
Course Outline Prog Fundamental Session2014
PDF
Course Outline Prog Fundamental Session2014
PU Syllabus PDF
PDF
PU Syllabus PDF
CSE101 Syl 2
PDF
CSE101 Syl 2
PROGRAMMING IN C Syllabus Sage University
PDF
PROGRAMMING IN C Syllabus Sage University
Syllabus
PDF
Syllabus
Pec Cse Pps Course File (5units)
PDF
Pec Cse Pps Course File (5units)
BSC Ecs Syllabus
PDF
BSC Ecs Syllabus
Bidyanagar, Mahura, Janla, Bhubaneswar - 752 054 (Orissa) : C.V.Raman College of Engineering
PDF
Bidyanagar, Mahura, Janla, Bhubaneswar - 752 054 (Orissa) : C.V.Raman College of Engineering
1.Syllabus Book Updated.docx
PDF
1.Syllabus Book Updated.docx
KUK CSE 2nd Yr - SY
PDF
KUK CSE 2nd Yr - SY
CSF 102 Course Description
PDF
CSF 102 Course Description
CS F111 Computer Programming I Sem 2024-25 HO
PDF
CS F111 Computer Programming I Sem 2024-25 HO
Bachelor of Technology Cse
PDF
Bachelor of Technology Cse
DSC LAB MANUAL_NEW
PDF
DSC LAB MANUAL_NEW
10 ECSDCDSA001P Data Structures & Algorithms Lab Updated
PDF
10 ECSDCDSA001P Data Structures & Algorithms Lab Updated
BPOPS103-203 (1)
PDF
BPOPS103-203 (1)
Fundamentals of Computer Programming 21CSH-101
PDF
Fundamentals of Computer Programming 21CSH-101
CCCS 111 - T104 Course Specifications
PDF
CCCS 111 - T104 Course Specifications
CP Syllabus
PDF
CP Syllabus
syllabus 2020-23
PDF
syllabus 2020-23
2. Syllabus-PSUC-2024-2025_FINAL
PDF
2. Syllabus-PSUC-2024-2025_FINAL
Programming For Problem Solving - Syllabus - R22
PDF
Programming For Problem Solving - Syllabus - R22
Syllabus PDF
PDF
Syllabus PDF
COS1077B C Programming
PDF
COS1077B C Programming
CSE 115 - 115L Course Objective and Outcome
PDF
CSE 115 - 115L Course Objective and Outcome
cse-101-syllabus
PDF
cse-101-syllabus
28 - BCA Syllabus (2017-18)
PDF
28 - BCA Syllabus (2017-18)
B.Tech CSE 34th Sem
PDF
B.Tech CSE 34th Sem
c Programming Syllabus
PDF
c Programming Syllabus
Computer Pgming PDF
PDF
Computer Pgming PDF
CC109 - FUNDAMENTALS OF PROGRAMMING
PDF
CC109 - FUNDAMENTALS OF PROGRAMMING
CSE1011
PDF
CSE1011
CSC 110 C Programming
PDF
CSC 110 C Programming
Effective english
PDF
Effective english
Computer Science Application 1
PDF
Computer Science Application 1
3. BPOPC103
PDF
3. BPOPC103
CSE115 Taken
PDF
CSE115 Taken
R20 PPSC Unit Wise Imp Questions
PDF
R20 PPSC Unit Wise Imp Questions
20 Computer Science ANU 2020-21
PDF
20 Computer Science ANU 2020-21
C Programming Syllabus
PDF
C Programming Syllabus
Course Outline Introduction to Programming
PDF
Course Outline Introduction to Programming
HDS 1st Sem C Lang Syllabus
PDF
HDS 1st Sem C Lang Syllabus
BSC Sand Model Paper
PDF
BSC Sand Model Paper
CSE2010_ADVANCED-C-PROGRAMMING_ETH_1.0_57_CSE2010_59 ACP
PDF
CSE2010_ADVANCED-C-PROGRAMMING_ETH_1.0_57_CSE2010_59 ACP
AI & DS Sylabus Book - PMD
PDF
AI & DS Sylabus Book - PMD
CSE-113: Structured Programming Language CSE-114: Structured Programming Language Lab
PDF
CSE-113: Structured Programming Language CSE-114: Structured Programming Language Lab
Detailed Syllabus C Programming BIT102 (1)
PDF
Detailed Syllabus C Programming BIT102 (1)
CSE101
PDF
CSE101