CCF Electronics
CCF Electronics
SYLLABUS
FOR
and
IN
ELECTRONICS
UNDER CCF-2022
2023
1|Page
FOUR-YEAR (EIGHT SEMESTER)
UNDER GRADUATE COURSES OF STUDIES
IN ELECTRONICS
ELT-H-CC-1-1-TH
Course Name: Fundamentals of Circuit Theory and Electronic Devices
[Credits: 3; Lecture Hours: 45]
2|Page
UNIT-III [11 Hours]
Bipolar Junction Transistor: Wafer Level Structure, and Brief Manufacturing Techniques
(Growth, Alloy or Fused, Diffusion, Epitaxy), Energy Band Diagram, Doping Profile, PNP and
NPN Transistors, Common Base (CB), Common Emitter (CE) and Common Collector (CC)
Configurations, Working Principle, Emitter (Injection) Efficiency, Base Transportation Factor,
Current Components in BJT, Current Gains: α, β and , Input and Output Characteristics in
CB, CE and CC Modes, Early Effect and Voltage, Leakage Currents.
Transistor Biasing: Need for Biasing and Bias Stabilization, Load Line and Q-Point, Stability
and Stability Factor, Thermal Runaway, Fixed Bias, Collector to Base Bias, Voltage Divider
Bias and Emitter Bias.
ELT-H-CC-1-1-P
Course Name: Fundamentals of Circuit Theory and Electronic Devices Laboratory
[Credits: 1; Contact Hours: 30]
Reference Books:
• Nasar, Electric Circuits, Schaum’s Solved Problems Series, Tata McGraw Hill.
• Nahvi and Edminister, Electric Circuits, Schaum’s Outline Series, Tata McGraw Hill.
• Boylestad, Essentials of Circuit Analysis, Pearson.
• Chattopadhyay and Rakshit, Fundamentals of Electric Circuit Theory, S. Chand.
• Hyat, Kemmerly and Durbin, Engineering Circuit Analysis, Tata McGraw Hill.
• Sadiku, Musa and Alexander, Applied Circuit Analysis, Tata McGraw-Hill.
3|Page
• Bel, Electric Circuits, Oxford.
• Kuo, Network Analysis and Synthesis, Wiley.
• DeCarlo and Lin, Linear Circuit Analysis, Oxford.
• Ghosh, Network Theory: Analysis and Synthesis, PHI.
• Smith and Alley, Electrical Circuits: An Introduction, Cambridge.
• Ryder, Network, Lines and Fields, Pearson.
• Boylestead and Nashelsky, Electronic Devices and Circuit Theory, Pearson.
• Bell, Electronic Devices and Circuits, Oxford.
• Chattopadhyay and Rakshit, Electronics: Fundamentals And Applications, New Age.
• Sedra, Smith and Chandorkar, Microelectronic Circuits, Oxford.
• Millman and Halkias, Integrated Electronics: Analog and Digital Circuits and Systems, Tata
McGraw Hill.
• Cathey, 2000 Solved Problems in Electronics, Schaum’s Outline Series, Tata McGraw Hill.
• Mottershead, Electronic Devices and Circuits: An Introduction, PHI.
• Dutta, Semiconductor Devices and Circuits, Oxford.
• Rashid, Electronic Devices and Circuits, Cengage.
Practical:
1. Basic Electronics: A Text Lab Manual, Zbar, TMH
2. Laboratory Manual for Electronic Devices and Circuits, Bell, PHI
3. Advanced Practical Physics, Volume 2, B. Ghosh.
ELT-H-SEC-1-1-TH
Course Name: Introduction to Programming in Python
[Credits:3; Lecture Hours: 45]
4|Page
UNIT II [15 Hours]
Python Strings: String Methods and Operations, Use of Escape Characters in String.
Python Collections: Lists, List Items, List Constructor, List Operations, Tuples, Tuple Items,
Tuple Constructor, Tuple Operations, Sets, Set Items, Set Constructor, Set Operations,
Dictionaries, Dictionary Items, Dictionary Constructor, Dictionary Operations.
Branching and Looping Constructs, if, if-else, if-elif Statements, while loop and for loop,
Continue and Break Statements, Range Function, Pass Statement, Nested Loops.
User Defined Functions, def Keyword, Calling a Function, Function Arguments, Arbitrary
Arguments, Keyword Arguments, Return Statement, Recursive Functions., built-in Functions:
Built-in Math Functions in Python.
ELT-H-SEC-1-1-P
Course Name: Introduction to Programming in Python Laboratory
[Credits: 1; Contact Hours: 30]
1. Generate and print Fibonacci Numbers, starting from 0 to N (the number N being read
from the keyboard). Also calculate and print the number of elements in the series.
2. Generate and print Prime numbers up to an Integer N (N being read from the keyboard).
Also obtain and print the sum of these numbers.
3. Find the Highest Common Factor of two Integer numbers read from the keyboard. Print
the result.
4. Calculate and print the Factorial of a given number read from the keyboard.
5. Find and print all the two real roots of a Quadratic equation Ax2 + Bx + C = 0 (the
coefficients A, B and C are to be read from the keyboard) using the pertinent formula.
Print a relevant message if an exception occurs.
6. Calculate and print the values of sin(x) and cos(x) using their respective Power Series
representations. Also compare the values with those obtained using the corresponding
Math library functions in Python.
7. Read in elements of a List of integer numbers from the keyboard. Find and print all the
numbers in the list which are less than a given number N (N to be read from the keyboard).
8. Read strings as elements of a List from the keyboard. Sort the list. Change an item, add an
item, and remove an item from the list. Print the list before sorting, after sorting, and also
after making each change. Repeat the problem with integers instead of strings.
9. Create a Tuple constructor with strings and integers as items. The items are to be read from
the keyboard. Unpack the items from the tuple to corresponding variables. Print the value
of the variables.
5|Page
10. Create one or more sets of items whose values are read from the keyboard. Make use of
Set related methods copy(), difference(), difference_update(), intersection(),
intersection_update(), union(), update(). Print the set(s) before and after invoking the
methods.
11. Create a dictionary where the keys are numbers between 1 and N (keys and N to be read
from the keyboard) and the values are square of keys. Copy the dictionary to another using
the copy() and dict() methods. Print both the dictionaries.
12. Program making using of inheritance and polymorphism in Python.
Reference Books:
1. Think Python, Allen Downey, O’Reilly.
2. Introduction to Problem Solving with Python, E. Balaguruswamy, TMH.
3. Learning Python, Mark Lutz, O’Reilly.
4. Python Programming for the Absolute Beginner, Michael Dawson, Cengage Learning.
5. Introduction to Computation and Programming Using Python, John V. Guttag, MIT Press.
6. Scientific Computing in Python, Abhijit Kar Gupta, Techno World.
ELT-H-CC-2-2-TH
Course Name: Operational Amplifier and Digital Systems
[Credits: 3; Lecture Hours: 45]
6|Page
Boolean Algebra and Logic Gates: Positive and Negative Logic, Basic Postulates and
Fundamental Theorems of Boolean Algebra, De Morgan’s Theorems, Logic Symbol and Truth
Tables of Basic Logic Gates (AND, OR, NOT), Derived Logic Gates (NAND, NOR, XOR and
XNOR), Universal Property of NOR and NAND gates.
Digital Logic Families: Characteristics of Logic Families (TTL and CMOS), Fan-in, Fan-out,
Noise Immunity, Noise Margin, Power dissipation, Figure of Merit, Speed Power Product,
Propagation Delay, Comparison of TTL and CMOS Families.
Combinational Logic Analysis: Standard Representation of Logic Functions (SOP and POS),
Karnaugh Map Minimization (up to 4 Variables).
ELT-H-CC-2-2-P
Course Name: Operational Amplifier and Digital Systems Laboratory
[Credits: 1; Contact Hours: 30]
Practical:
1. Practical Physics, Rakshit and Chattopadhyay.
2. Advanced Practical Physics, Volume II, B. Ghosh, New Central Book Agency
3. Laboratory Manual for Electric Circuits, Bell.
8|Page
Interdiscplinary Course (IDC)
ELT-IDC-TH
Course Name: Fundamentals of Electronics
[Credits: 2; Lecture Hours: 30]
Unit-I [9 Hours]
Basic Circuit Components: Circuit Elements: Resistors, Inductors, Capacitors, Transformers,
concept of voltage and current sources, Kirchhoff’s current and voltage laws, concept of
impedance, equivalent impedance of series and parallel combinations of R, L and C.
Operational Amplifiers and Its Applications: Op-Amp and its Characteristics (Ideal and
practical), Open and Closed Loop Configuration, Concept of virtual ground, Inverting, Non-
Inverting, Summing and Difference Amplifiers.
9|Page
Reference Books:
• Boylestad, Essentials of Circuit Analysis, Pearson.
• Chattopadhyay and Rakshit, Fundamentals of Electric Circuit Theory, S. Chand.
• Sadiku, Musa and Alexander, Applied Circuit Analysis, Tata McGraw-Hill.
• Boylestead and Nashelsky, Electronic Devices and Circuit Theory, Pearson.
• Bell, Electronic Devices and Circuits, Oxford.
• Chattopadhyay and Rakshit, Electronics: Fundamentals And Applications, New Age.
• Rashid, Electronic Devices and Circuits, Cengage.
• Gayakwad, Op-Amps and Linear Integrated Circuits, Pearson.
• Coughlin and Driscoll, Operational Amplifiers and Linear Integrated Circuits, Pearson.
• Malvino, Electronic Principals, Tata McGraw-Hill.
• Kishore, Operational Amplifiers and Linear Integrated Circuits, Pearson.
• Jacob, Analog Integrated Circuits Applications, Pearson.
• Flyod, Digital Fundamentals, Pearson.
• Raychaudhuri, Digital Circuits, Vol. 1&2, Platinum.
• Gothmann, Digital Electronics: An Introduction to Theory and Practice, PHI.
• Kumar, Fundamentals of Digital Circuits, PHI.
• Comer, Digital Logic and State Machine Design, Oxford.
• Salivahanan and Kumar, Digital Circuits and Design, Vikas.
10 | P a g e
THREE-YEAR (SIX SEMESTER) MULTIDISCIPLINARY
UNDER GRADUATE COURSES OF STUDIES
IN ELECTRONICS
Multidiscplinary Course (MDC)
ELT-MD-CC-1-1-TH
Course Name: Fundamentals of Circuit Theory and Electronic Devices
[Credits: 3; Lecture Hours: 45]
11 | P a g e
UNIT-III [11 Hours]
Bipolar Junction Transistor: Wafer Level Structure, and Brief Manufacturing Techniques
(Growth, Alloy or Fused, Diffusion, Epitaxy), Energy Band Diagram, Doping Profile, PNP and
NPN Transistors, Common Base (CB), Common Emitter (CE) and Common Collector (CC)
Configurations, Working Principle, Emitter (Injection) Efficiency, Base Transportation Factor,
Current Components in BJT, Current Gains: α, β and , Input and Output Characteristics in
CB, CE and CC Modes, Early Effect and Voltage, Leakage Currents.
Transistor Biasing: Need for Biasing and Bias Stabilization, Load Line and Q-Point, Stability
and Stability Factor, Thermal Runaway, Fixed Bias, Collector to Base Bias, Voltage Divider
Bias and Emitter Bias.
ELT-MD-CC-1-1-P
Course Name: Fundamentals of Circuit Theory and Electronic Devices Laboratory
[Credits: 1; Contact Hours: 30]
Reference Books:
• Nasar, Electric Circuits, Schaum’s Solved Problems Series, Tata McGraw Hill.
• Nahvi and Edminister, Electric Circuits, Schaum’s Outline Series, Tata McGraw Hill.
• Boylestad, Essentials of Circuit Analysis, Pearson.
• Chattopadhyay and Rakshit, Fundamentals of Electric Circuit Theory, S. Chand.
• Hyat, Kemmerly and Durbin, Engineering Circuit Analysis, Tata McGraw Hill.
• Sadiku, Musa and Alexander, Applied Circuit Analysis, Tata McGraw-Hill.
12 | P a g e
• Bel, Electric Circuits, Oxford.
• Kuo, Network Analysis and Synthesis, Wiley.
• DeCarlo and Lin, Linear Circuit Analysis, Oxford.
• Ghosh, Network Theory: Analysis and Synthesis, PHI.
• Smith and Alley, Electrical Circuits: An Introduction, Cambridge.
• Ryder, Network, Lines and Fields, Pearson.
• Boylestead and Nashelsky, Electronic Devices and Circuit Theory, Pearson.
• Bell, Electronic Devices and Circuits, Oxford.
• Chattopadhyay and Rakshit, Electronics: Fundamentals And Applications, New Age.
• Sedra, Smith and Chandorkar, Microelectronic Circuits, Oxford.
• Millman and Halkias, Integrated Electronics: Analog and Digital Circuits and Systems, Tata
McGraw Hill.
• Cathey, 2000 Solved Problems in Electronics, Schaum’s Outline Series, Tata McGraw Hill.
• Mottershead, Electronic Devices and Circuits: An Introduction, PHI.
• Dutta, Semiconductor Devices and Circuits, Oxford.
• Rashid, Electronic Devices and Circuits, Cengage.
Practical:
1. Basic Electronics: A Text Lab Manual, Zbar, TMH
2. Laboratory Manual for Electronic Devices and Circuits, Bell, PHI
3. Advanced Practical Physics, Volume 2, B. Ghosh.
ELT-MD-CC-2-2-TH
Course Name: Operational Amplifier and Digital Systems
[Credits: 3; Lecture Hours: 45]
13 | P a g e
Alphanumeric Codes, ASCII, EBCDIC, Fixed and Floating Point Arithmetic, Binary and
Hexadecimal Arithmetic, Addition, Subtraction by 2’s Complement Method, BCD Addition,
Parity Bits, Error Detecting and Correcting Code (Hamming).
Boolean Algebra and Logic Gates: Positive and Negative Logic, Basic Postulates and
Fundamental Theorems of Boolean Algebra, De Morgan’s Theorems, Logic Symbol and Truth
Tables of Basic Logic Gates (AND, OR, NOT), Derived Logic Gates (NAND, NOR, XOR and
XNOR), Universal Property of NOR and NAND gates.
Digital Logic Families: Characteristics of Logic Families (TTL and CMOS), Fan-in, Fan-out,
Noise Immunity, Noise Margin, Power dissipation, Figure of Merit, Speed Power Product,
Propagation Delay, Comparison of TTL and CMOS Families.
Combinational Logic Analysis: Standard Representation of Logic Functions (SOP and POS),
Karnaugh Map Minimization (up to 4 Variables).
ELT-MD-CC-2-2-P
Course Name: Operational Amplifier and Digital Systems Laboratory
[Credits: 1; Contact Hours: 30]
Reference Books:
• Gayakwad, Op-Amps and Linear Integrated Circuits, Pearson.
• Coughlin and Driscoll, Operational Amplifiers and Linear Integrated Circuits, Pearson.
• Malvino, Electronic Principals, Tata McGraw-Hill.
• Kishore, Operational Amplifiers and Linear Integrated Circuits, Pearson.
• Bel, Operational Amplifiers and Linear Ics, Oxford.
• Jacob, Analog Integrated Circuits Applications, Pearson.
• Fiore, Op-Amps and Linear Integrated Circuits: Concepts and Applications, Cengage.
• Ganesh Babu, Linear Integrated Circuits and Applications, Scitech.
• Tokheim, Digital Principles, Schaum’s Outline Series, Tata McGraw Hill.
• Flyod, Digital Fundamentals, Pearson.
• Raychaudhuri, Digital Circuits, Vol. 1&2, Platinum.
• Gothmann, Digital Electronics: An Introduction to Theory and Practice, PHI.
• Kumar, Fundamentals of Digital Circuits, PHI.
• Dueck, Digital Design, Cengage.
• Comer, Digital Logic and State Machine Design, Oxford.
• Salivahanan and Kumar, Digital Circuits and Design, Vikas.
• Fletcher, An Engineering Approach to Digital Design, Pearson.
• Wakerly, Digital Design: Principles and Practices, Pearson.
Practical:
4. Practical Physics, Rakshit and Chattopadhyay.
5. Advanced Practical Physics, Volume II, B. Ghosh, New Central Book Agency
6. Laboratory Manual for Electric Circuits, Bell.
ELT-MD-SEC-TH
Course Name: Circuit Simulation with PSPICE
[Credits:3; Lecture Hours: 45]
15 | P a g e
DC Operation and Circuit Analysis: Modelling of elements, Operating temperature,
Independent DC Sources, Dependent Sources, DC Output variables, Passive Devices,
Component names, Ohm’s Law, Kirchhoff’s Laws, Capacitors in DC circuits , Inductors in DC
circuits, Types of Output (.PRINT, .PLOT, .PROBE, .WIDTH) statements and significances,
Types of DC analysis (.OP, .TF, .DC, .PARAM) commands and their uses.
ELT-MD-SEC-P
Course Name: Circuit Simulation with PSPICE Laboratory
[Credits: 1; Contact Hours: 30]
16 | P a g e
Reference Books:
1. SPICE: A Guide to Circuit Simulation & Analysis using PSPICE, Paul. W. Tuinenga.
2. SPICE, Gordon. W. Roberts and Adel. S. Sedra.
3. Introduction to PSPICE Using ORCAD For Circuits and Electronics, Muhammad. H.
Rashid.
4. Analog Design and Simulation using OrCAD Capture and PSPICE, Dennis Fitzpatrick.
17 | P a g e