JAWAHARLAL NEHRU TECHNOLOGICAL UNIVERSITY HYDERABAD. II Year B.Tech. CSE-I Sem L T/P/D C 4 -/-/- 4 PROBABILITY AND STATISTICS

Size: px
Start display at page:

Download "JAWAHARLAL NEHRU TECHNOLOGICAL UNIVERSITY HYDERABAD. II Year B.Tech. CSE-I Sem L T/P/D C 4 -/-/- 4 PROBABILITY AND STATISTICS"

Transcription

1 PROBABILITY AND STATISTICS To learn Understand a random variable that describes randomness or an uncertainty in certain realistic situation. It can be of either discrete or continuous type. In the discrete case, study of the binomial and the Poisson random variables and the Normal random variable for the continuous case predominantly describe important probability distributions. Important statistical properties for these random variables provide very good insight and are essential for industrial applications. Most of the random situations are described as functions of many single random variables. In this unit, the objective is to learn functions of many random variables through joint distributions. The types of sampling, Sampling distribution of means,sampling distribution of variance, Estimations of statistical parameters, Testing of hypothesis of few unknown statistical parameters. The mechanism of queuing system,the characteristics of queue, The mean arrival and service rates The expected queue length, The waiting line The random processes, The classification of random processes, Markov chain, Classification of states Stochastic matrix ( transition probability matrix ),Limiting probabilities, Applications of Markov chains UNIT-I Single Random variables and probability distributions: Random variables Discrete and continuous. Probability distributions, mass function/ density function of a probability distribution. Mathematical Expectation, Moment about origin, Central moments Moment generating function of probability distribution. Binomial, Poisson & normal distributions and their properties. Moment generating functions of the above three distributions, and hence finding the mean and variance. Multiple Random variables, Correlation & Regression: Joint probability distributions- Joint probability mass / density function, Marginal probability mass / density functions, Covariance of two random variables, Correlation - Coefficient of correlation, The rank correlation. Regression- Regression Coefficient, The lines of regression and multiple correlation & regression. I Sampling Distributions and Testing of Hypothesis Sampling: Definitions of population, sampling, statistic, parameter. Types of sampling, Expected values of Sample mean and varience, sampling distribution, Standard error, Sampling distribution of means and sampling distribution of varience. Parameter estimations likelihood estimate, interval estimations. Testing of hypothesis: Null hypothesis, Alternate hypothesis, type I, & type II errors critical region, confidence interval, Level of significance. One sided test, two sided test, Large sample tests: (i) Test of Equality of means of two samples equality of sample mean and population mean (cases of known varience & unknown varience, equal and unequal variances) (ii) Tests of significance of difference between sample S.D and population S.D. (iii) Tests of significance difference between sample proportion and population proportion & difference between two sample proportions. Small sample tests: Student t-distribution, its properties; Test of significance difference between sample mean and population mean; difference between means of two small samples Snedecor s F- distribution and it s properties. Test of equality of two population variences Chi-square distribution, it s properties, Chi-square test of goodness of fit Queuing Theory: Structure of a queuing system, Operating Characteristics of queuing system, Transient and steady states, Terminology of Queuing systems, Arrival and service processes- Pure Birth-Death process Deterministic queuing models- M/M/1 Model of infinite queue, M/M/1 model of finite queue. UNIT-V Stochastic processes: Introduction to Stochastic Processes Classification of Random processes, Methods of description of random processes, Stationary and non-stationary random process, Average values of single random process and two or more random processes. Markov process, Markov chain, classification of states Examples of Markov Chains, Stochastic Matrix.

2 MATHEMATICAL FOUNDATIONS OF COMPUTER SCIENCE To explain with examples the basic terminology of functions, relations, and sets. To perform the operations associated with sets, functions, and relations. To relate practical examples to the appropriate set, function, or relation model, and interpret the associated operations and terminology in context. To describe the importance and limitations of predicate logic. To relate the ideas of mathematical induction to recursion and recursively defined structures. To use Graph Theory for solving problems. UNIT-I Mathematical Logic : Statements and notations, Connectives, Well formed formulas, Truth Tables, tautology, equivalence implication, Normal forms, Quantifiers, universal quantifiers. Predicates : Predicative logic, Free & Bound variables, Rules of inference, Consistency, proof of contradiction, Automatic Theorem Proving. Relations: Properties of Binary Relations, equivalence, transitive closure, compatibility and partial ordering relations, Lattices, Hasse diagram. Functions: Inverse Function Composition of functions, recursive Functions, Lattice and its Properties, Algebraic structures : Algebraic systems Examples and general properties, Semi groups and monads, groups sub groups homomorphism, Isomorphism. I Elementary Combinatorics: Basis of counting, Combinations & Permutations, with repetitions, Constrained repetitions, Binomial Coefficients, Binomial Multinomial theorems, the principles of Inclusion Exclusion. Pigeon hole principles and its application. Recurrence Relation : Generating Functions, Function of Sequences Calculating Coefficient of generating function, Recurrence relations, Solving recurrence relation by substitution and Generating funds. Characteristics roots solution of In homogeneous Recurrence Relation. UNIT-V Graph Theory : Representation of Graph, DFS, BFS, Spanning Trees, planar Graphs. Graph Theory and Applications, Basic Concepts Isomorphism and Sub graphs, Multi graphs and Euler circuits, Hamiltonian graphs, Chromatic Numbers. TEXT BOOKS : 1. Elements of DISCRETE MATHEMATICS- A computer Oriented Approach- C L Liu, D P Mohapatra. Third Edition, Tata McGraw Hill. 2. Discrete Mathematics for Computer Scientists & Mathematicians, J.L. Mott, A. Kandel, T.P. Baker, PHI. REFERENCE BOOKS : 1. Discrete Mathematics and its Applications, Kenneth H. Rosen, Fifth Edition.TMH. 2. Discrete Mathematical structures Theory and application-malik & Sen, Cengage. 3. Discrete Mathematics with Applications, Thomas Koshy, Elsevier. 4. Logic and Discrete Mathematics, Grass Man & Trembley, Pearson Education. Ability to Illustrate by examples the basic terminology of functions, relations, and sets and demonstrate knowledge of their associated operations. Ability to Demonstrate in practical applications the use of basic counting principles of permutations, combinations, inclusion/exclusion principle and the pigeonhole methodology. Ability to represent and Apply Graph theory in solving computer science problems.

3 DATA STRUCTURES To understand the basic concepts such as Abstract Data Types, Linear and Non Linear Data structures. To understand the notations used to analyze the Performance of algorithms. To understand the behavior of data structures such as stacks, queues, trees, hash tables, search trees, Graphs and their representations. To choose the appropriate data structure for a specified application. To understand and analyze various searching and sorting algorithms. To write programs in C to solve problems using data structures such as arrays, linked lists, stacks, queues, trees, graphs, hash tables, search trees. UNIT- I Basic concepts- Algorithm Specification-Introduction, Recursive algorithms, Data Abstraction Performance analysis- time complexity and space complexity, Asymptotic Notation-Big O, Omega and Theta notations, Introduction to Linear and Non Linear data structures. Singly Linked Lists-Operations-Insertion, Deletion, Concatenating singly linked lists, Circularly linked lists- Operations for Circularly linked lists, Doubly Linked Lists- Operations- Insertion, Deletion. Representation of single, two dimensional arrays, sparse matrices-array and linked representations. UNIT- II Stack ADT, definition, operations, array and linked implementations in C, applications-infix to postfix conversion, Postfix expression evaluation, recursion implementation, Queue ADT, definition and operations,array and linked Implementations in C, Circular queues-insertion and deletion operations, Deque (Double ended queue)adt, array and linked implementations in C. UNIT- III Trees Terminology, Representation of Trees, Binary tree ADT, Properties of Binary Trees, Binary Tree Representations-array and linked representations, Binary Tree traversals, Threaded binary trees, Max Priority Queue ADT-implementation-Max Heap-Definition, Insertion into a Max Heap, Deletion from a Max Heap. Graphs Introduction, Definition, Terminology, Graph ADT, Graph Representations- Adjacency matrix, Adjacency lists, Graph traversals- DFS and BFS. UNIT- IV Searching- Linear Search, Binary Search, Static Hashing-Introduction, hash tables, hash functions, Overflow Handling. Sorting-Insertion Sort, Selection Sort, Radix Sort, Quick sort, Heap Sort, Comparison of Sorting methods. UNIT- V Search Trees-Binary Search Trees, Definition, Operations- Searching, Insertion and Deletion, AVL Trees- Definition and Examples, Insertion into an AVL Tree,B-Trees, Definition, B-Tree of order m, operations-insertion and Searching, Introduction to Red-Black and Splay Trees(Elementary treatment-only Definitions and Examples), Comparison of Search Trees. Pattern matching algorithm- The Knuth-Morris-Pratt algorithm, Tries (examples only). 1. Fundamentals of Data structures in C, 2 nd Edition, E.Horowitz, S.Sahni and Susan Anderson-Freed, Universities Press. 2. Data structures A Programming Approach with C, D.S.Kushwaha and A.K.Misra, PHI. 1. Data structures: A Pseudocode Approach with C, 2 nd edition, R.F.Gilberg And B.A.Forouzan, Cengage Learning. 2. Data structures and Algorithm Analysis in C, 2 nd edition, M.A.Weiss, Pearson. 3. Data Structures using C, A.M.Tanenbaum,Y. Langsam, M.J.Augenstein, Pearson. 4. Data structures and Program Design in C, 2 nd edition, R.Kruse, C.L.Tondo and B.Leung,Pearson. 5. Data Structures and Algorithms made easy in JAVA, 2 nd Edition, Narsimha Karumanchi, CareerMonk Publications. 6. Data Structures using C, R.Thareja, Oxford University Press. 7. Data Structures, S.Lipscutz,Schaum s Outlines, TMH. 8. Data structures using C, A.K.Sharma, 2 nd edition, Pearson.. 9. Data Structures using C &C++, R.Shukla, Wiley India. 10. Classic Data Structures, D.Samanta, 2 nd edition, PHI. 11. Advanced Data structures, Peter Brass, Cambridge. Learn how to use data structure concepts for realistic problems. Ability to identify appropriate data structure for solving computing problems in respective language. Ability to solve problems independently and think critically.

4 DIGITAL LOGIC DESIGN To understand basic number systems codes and logical gates. To understand the Boolean algebra and minimization logic. To understand the design of combinational sequential circuits. To understand the basic s of various memory. UNIT-I Digital Systems: Binary Numbers, Octal, Hexa Decimal and other base numbers, Number base conversions, complements, signed binary numbers, Floating point number representation, binary codes, error detecting and correcting codes, digital logic gates(and, NAND,OR,NOR, Ex-OR, Ex-NOR), Boolean algebra, basic theorems and properties, Boolean functions, canonical and standard forms. Gate Level Minimization and combination circuits, The K-Maps Methods, Three Variable, Four Variable, Five Variable, sum of products, product of sums Simplification, Don t care conditions, NAND and NOR implementation and other two level implantation. I Combinational Circuits (CC): Design Procedure, Combinational circuit for different code converters and other problems, Binary Adder, subtractor, Multiplier, Magnitude Comparator, Decoders, Encoders, Multiplexers, Demultiplexers. Synchronous Sequential Circuits: Latches, Flip-flops, analysis of clocked sequential circuits, design of counters, Up-down counters, Ripple counters, Registers, Shift registers, Synchronous Counters. Asynchronous Sequential Circuits: Reduction of state and follow tables, Role free Conditions. UNIT-V: Memory: Random Access memory, types of ROM, Memory decoding, address and data bus, Sequential Memory, Cache Memory, Programmable Logic Arrays, memory Hierarchy in terms of capacity and access time. 1) Digital Design- M. Morris Mano. 1) 1. Switching and Finite Automata Theory by Zvi. Kohavi, Tata McGraw Hill. 2) 2. Switching and Logic Design, C.V.S. Rao, Pearson Education. 3) 3. Digital Principles and Design Donald D.Givone, Tata McGraw Hill, Edition. 4) 4. Fundamentals of Digital Logic & Micro Computer Design, 5TH Edition, M. Rafiquzzaman John Wiley. After this course student could able to design, understand the number systems, combinational sequential circuits. And they should be in a position to continue with computer organization.

5 ELECTRONIC DEVICES AND CIRCUITS This is a fundamental course, basic knowledge of which is required by all the circuit branch engineers. This course focuses: To familiarize the student with the principle of operation, analysis and design of Junction diode, BJT and FET amplifier circuits, transistors and field effect transistors. To understand diode as rectifier. To study basic principle of filter circuits and various types. UNIT -I P-N Junction Diode: Qualitative Theory of P-N Junction, P-N Junction as a Diode, Diode Equation, Volt- Ampere Characteristics, Temperature dependence of VI characteristic, Ideal versus Practical Resistance levels (Static and Dynamic), Transition and Diffusion Capacitances, Diode Equivalent Circuits, Load Line Analysis, Breakdown Mechanisms in Semiconductor Diodes, Zener Diode Characteristics. Special Purpose Electronic Devices: Principle of Operation and Characteristics of Tunnel Diode (with the help of Energy Band Diagram), Varactor Diode, SCR and Semiconductor Photo Diode. UNIT -II Rectifiers and Filters : The P-N junction as a Rectifier, Half wave Rectifier, Full wave Rectifier, Bridge Rectifier, Harmonic components in a Rectifier Circuit, Inductor Filters, Capacitor Filters, L- Section Filters, π- Section Filters, Comparision of Filters, Voltage Regulation using Zener Diode. UNIT -III Bipolar Junction Transistor and UJT: The Junction Transistor, Transistor Current Components, Transistor as an Amplifier, Transistor Construction, BJT Operation, BJT Symbol, Common Base, Common Emitter and Common Collector Configurations, Limits of Operation, BJT Specifications, BJT Hybrid Model, Determination of h-parameters from Transistor Characteristics, Comparison of CB, CE, and CC Amplifier Configurations, UJT and Characteristics. UNIT -IV Transistor Biasing and Stabilization: Operating Point, The DC and AC Load lines, Need for Biasing, Fixed Bias, Collector Feedback Bias, Emitter Feedback Bias, Collector - Emitter Feedback Bias, Voltage Divider Bias, Bias Stability, Stabilization Factors, Stabilization against variations in V BE and β, Bias Compensation using Diodes and Transistors, Thermal Runaway, Thermal Stability, Analysis of a Transistor Amplifier Circuit using h- Parameters. UNIT -V Field Effect Transistor and FET Amplifiers Field Effect Transistor: The Junction Field Effect Transistor (Construction, principle of operation, symbol) Pinch-off Voltage - Volt-Ampere characteristics, The JFET Small Signal Model, MOSFET (Construction, principle of operation, symbol), MOSFET Characteristics in Enhancement and Depletion modes. FET Amplifiers: FET Common Source Amplifier, Common Drain Amplifier, Generalized FET Amplifier, Biasing FET, FET as Voltage Variable Resistor, Comparison of BJT and FET. 1. Millman s Electronic Devices and Circuits J. Millman, C.C.Halkias, and Satyabrata Jit, 2 Ed.,1998, TMH. 2. Electronic Devices and Circuits Mohammad Rashid, Cengage Learing, Electronic Devices and Circuits David A. Bell, 5 Ed, Oxford. 1. Integrated Electronics J. Millman and Christos C. Halkias, 1991 Ed., 2008, TMH. 2. Electronic Devices and Circuits R.L. Boylestad and Louis Nashelsky, 9 Ed., 2006, PEI/PHI. 3. Electronic Devices and Circuits B. P. Singh, Rekha Singh, Pearson, 2 Ed, Electronic Devices and Circuits - K. Lal Kishore, 2 Ed., 2005, BSP. 5. Electronic Devices and Circuits Anil K. Maini, Varsha Agarwal, 1 Ed., 2009, Wiley India Pvt. Ltd. 6. Electronic Devices and Circuits S.Salivahanan, N.Suresh Kumar, A.Vallavaraj, 2 Ed., 2008, TMH. Understand and Analyse the different types of diodes, operation and its characteristics. Design and analyse the DC bias circuitry of BJT and FET. Design biasing circuits using diodes and transistors. To analyze and design diode application circuits, amplifier circuits and oscillators employing BJT, FET devices.

6 II Year B. Tech CSE I SEM L T/P/D C BASIC ELECTRICAL ENGINEERING This course introduces the concepts of basic electrical engineering parameters, quantities, analysis of AC and DC circuits, the construction operation and analysis of transformers, DC and AC machines. It also gives knowledge about measuring instruments operation in detail. UNIT I Introduction to Electrical Engineering: Ohm s law, basic circuit components, Kirchhoff s laws. Simple problems. Network Analysis: Basic definitions, types of elements, types of sources, resistive networks, inductive networks, capacitive networks, and series parallel circuits, star delta and delta star transformation., Network theorems- Superposition, Thevenins s, Maximum power transfer theorems and simple problems. Alternating Quantities: Principle of ac voltages, waveforms and basic definitions, root mean square and average values of alternating currents and voltage, form factor and peak factor, phasor representation of alternating quantities, the J operator and phasor algebra, analysis of ac circuits with single basic network element, single phase series circuits. I Transformers : Principles of operation, Constructional Details, Ideal Transformer and Practical Transformer, Losses, Transformer Test, Efficiency and Regulation Calculations (All the above topics are only elementary treatment and simple problems). D.C. and A.C. Machines: D.C generators: Principle of operation of dc machines, types of D.C generators, EMF equation in D.C generator. D.C motors: Principle of operation of dc motors, types of D.C motors, losses and torque equation, losses and efficiency calculation in D.C generator. A.C Machines: Three phase induction motor, principle of operation, slip and rotor frequency, torque (simple problems). UNIT V Basic Instruments: Introduction, classification of instruments, operating principles, essential features of measuring instruments, Moving coil permanent magnet (PMMC) instruments, Moving Iron of Ammeters and Voltmeters (elementary Treatment only). 1. Basic concepts of Electrical Engineering, PS Subramanyam, BS Publications. 2. Basic Electrical Engineering, S.N. Singh, PHI. 1. Basic Electrical Engineering, Abhijit Chakrabarthi, Sudipta nath, Chandrakumar Chanda, Tata-McGraw- Hill. 2. Principles of Electrical Engineering, V.K Mehta, Rohit Mehta, S.Chand Publications. 3. Basic Electrical Engineering, T.K.Nagasarkar and M.S. Sukhija, Oxford University Press. 4. Fundamentals of Electrical Engineering, RajendraPrasad, PHI. 5. Basic Electrical Engineering by D.P.Kothari, I.J. Nagrath, McGraw-Hill. After going through this course the student gets a thorough knowledge on basic electrical circuits, parameters, and operation of the transformers in the energy conversion process, electromechanical energy conversion, construction operation characteristics of DC and AC machines and the constructional features and operation of operation measuring instruments like voltmeter, ammeter, wattmeter etc...with which he/she can able to apply the above conceptual things to real-world electrical and electronics problems and applications.

7 - -/3/- 2 DATA STRUCTURES LAB To write and execute programs in C to solve problems using data structures such as arrays, linked lists, stacks, queues, trees, graphs, hash tables and search trees. To write and execute write programs in C to implement various sorting and searching methods. Recommended Systems/Software Requirements: Intel based desktop PC with minimum of 166 MHZ or faster processor with at least 64 MB RAM and 100 MB free disk space. C compiler. Week1: Write a C program that uses functions to perform the following: a) Create a singly linked list of integers. b) Delete a given integer from the above linked list. c) Display the contents of the above list after deletion. Week2: Write a C program that uses functions to perform the following: a) Create a doubly linked list of integers. b) Delete a given integer from the above doubly linked list. c) Display the contents of the above list after deletion. Week3: Write a C program that uses stack operations to convert a given infix expression into its postfix Equivalent, Implement the stack using an array. Week 4: Write C programs to implement a double ended queue ADT using i)array and ii)doubly linked list respectively. Week 5: Write a C program that uses functions to perform the following: a) Create a binary search tree of characters. b) Traverse the above Binary search tree recursively in Postorder. Week 6: Write a C program that uses functions to perform the following: a) Create a binary search tree of integers. b) Traverse the above Binary search tree non recursively in inorder. Week 7: Write C programs for implementing the following sorting methods to arrange a list of integers in Ascending order : a) Insertion sort b) Merge sort Week 8: Write C programs for implementing the following sorting methods to arrange a list of integers in ascending order: a) Quick sort b) Selection sort Week 9: i) Write a C program to perform the following operation: a)insertion into a B-tree. ii) Write a C program for implementing Heap sort algorithm for sorting a given list of integers in ascending order. Week 10: Write a C program to implement all the functions of a dictionary (ADT) using hashing. Week 11: Week 12: Write a C program for implementing Knuth-Morris- Pratt pattern matching algorithm. Write C programs for implementing the following graph traversal algorithms: a)depth first traversal b)breadth first traversal 1. C and Data Structures, Third Edition, P.Padmanabham, BS Publications. 2. C and Data Structures, Prof. P.S.Deshpande and Prof. O.G. Kakde, Dreamtech Press. 3. Data structures using C, A.K.Sharma, 2 nd edition, Pearson. 4. Data Structures using C, R.Thareja, Oxford University Press. 5. C and Data Structures, N.B.Venkateswarlu and E.V.Prasad,S.Chand. 6. C Programming and Data Structures, P.Radha Krishna, Hi-Tech Publishers. Ability to identify the appropriate data structure for given problem. Graduate able to design and analyze the time and space complexity of algorithm or program. Ability to effectively use compilers includes library functions, debuggers and trouble shooting.

PROBABILITY AND STATISTICS To learn Understand a random variable that describes randomness or an uncertainty in certain realistic situation. It can be of either discrete or continuous type. In the discrete

More information

St. MARTIN s ENGINERING COLLEGE Dhulapally,Secunderabad

St. MARTIN s ENGINERING COLLEGE Dhulapally,Secunderabad St. MARTIN s ENGINERING COLLEGE Dhulapally,Secunderabad-500014 INFORMATION TECHNOLOGY COURSE DESCRIPTION FORM Course Title Data Structures Course Code A30502 Regulation R13-JNTUH Course Structure Lectures

More information

INSTITUTE OF AERONAUTICAL ENGINEERING (Autonomous) Dundigal, Hyderabad

INSTITUTE OF AERONAUTICAL ENGINEERING (Autonomous) Dundigal, Hyderabad INSTITUTE OF AERONAUTICAL ENGINEERING (Autonomous) Dundigal, Hyderabad -500 043 COMPUTER SCIENCE AND ENGINEERING COURSE DESCRIPTION FORM Course Title Course Code Regulation Course Structure Course Coordinator

More information

SEMESTER-2 (SYLLABUS)

SEMESTER-2 (SYLLABUS) GOVERNMENT COLLEGE (A) RAJAMAHENDRAVARAM (Affiliated to Adikavi Nannaya University, Rajamahendravaram) CBCS Pattern w.e.f. 2016-17 Admitted Batch ELECTRONICS - SEMESTER-2 (SYLLABUS) PAPER II - ELECTRONIC

More information

GARDEN CITY UNIVERSITY. Bachelor of Computer Applications SEMESTER- I. Course: CONCEPTS OF PROGRAMMING USING C LANGUAGE CODE: 05ABCAR17111 CREDITS: 04

GARDEN CITY UNIVERSITY. Bachelor of Computer Applications SEMESTER- I. Course: CONCEPTS OF PROGRAMMING USING C LANGUAGE CODE: 05ABCAR17111 CREDITS: 04 GARDEN CITY UNIVERSITY Bachelor of Computer Applications SEMESTER- I Course: CONCEPTS OF PROGRAMMING USING C LANGUAGE CODE: 05ABCAR17111 CREDITS: 04 Unit 1 Programming Basics 1.1 Introduction to Programming

More information

SIDDHARTH GROUP OF INSTITUTIONS :: PUTTUR (AUTONOMOUS) Siddharth Nagar, Narayanavanam Road QUESTION BANK (DESCRIPTIVE) UNIT I

SIDDHARTH GROUP OF INSTITUTIONS :: PUTTUR (AUTONOMOUS) Siddharth Nagar, Narayanavanam Road QUESTION BANK (DESCRIPTIVE) UNIT I QUESTION BANK 2017 SIDDHARTH GROUP OF INSTITUTIONS :: PUTTUR (AUTONOMOUS) Siddharth Nagar, Narayanavanam Road 517583 QUESTION BANK (DESCRIPTIVE) Subject with Code : Basic Electronic Devices (16EC401) Year

More information

COURSE STRUCTURE AND SYLLABUS APPROVED IN THE BOARD OF STUDIES MEETING HELD ON JULY TO BE EFFECTIVE FROM THE ACADEMIC YEAR

COURSE STRUCTURE AND SYLLABUS APPROVED IN THE BOARD OF STUDIES MEETING HELD ON JULY TO BE EFFECTIVE FROM THE ACADEMIC YEAR COURSE STRUCTURE AND SYLLABUS APPROVED IN THE BOARD OF STUDIES MEETING HELD ON JULY- 2000 TO BE EFFECTIVE FROM THE ACADEMIC YEAR 2000-2001 MCA SEMESTER -1 Scheme of evaluation Max. Marks Min. Marks to

More information

S.V.UNIVERSITY, TIRUPATI B.Sc- ELECTRONICS-SYLLABUS SEMESTER: II W.E.F PAPER 2 ELECTRONIC DEVICES&CIRCUITS

S.V.UNIVERSITY, TIRUPATI B.Sc- ELECTRONICS-SYLLABUS SEMESTER: II W.E.F PAPER 2 ELECTRONIC DEVICES&CIRCUITS S.V.UNIVERSITY, TIRUPATI B.Sc- ELECTRONICS-SYLLABUS SEMESTER: II W.E.F. 2015-16 PAPER 2 ELECTRONIC DEVICES&CIRCUITS 3-2-110 (60hrs) UNIT I(12hrs) JUNCTION DIODES PN junction diode P-N junction theory-depletion

More information

Department of Computer Science University of Peshawar UNDERGTRADUATE CURRICULUM BCS

Department of Computer Science University of Peshawar UNDERGTRADUATE CURRICULUM BCS Department of Computer Science University of Peshawar UNDERGTRADUATE CURRICULUM BCS Code: BCS231 Credit Hours: 3 Digital Logic Design Numbering Systems a) Number Representation, Conversion, and Arithmetic

More information

SVS GROUP OF INSTITUTIONS. II Year B.Tech. CSE-I Sem L T/P/D C 4 -/-/- 4 PROBABILITY AND STATISTICS

SVS GROUP OF INSTITUTIONS. II Year B.Tech. CSE-I Sem L T/P/D C 4 -/-/- 4 PROBABILITY AND STATISTICS II Year B.Tech. CSE-I Sem L T/P/D C 4 -/-/- 4 PROBABILITY AND STATISTICS Objectives: To learn Understand a random variable that describes randomness or an uncertainty in certain realistic situation. It

More information

RAJIV GANDHI COLLEGE OF ENGINEERING AND TECHNOLOGY DEPARTMENT OF ECE QUESTION BANK- EDC SEMESTER - III UNIT I : SEMICONDUCTOR DIODS PART A

RAJIV GANDHI COLLEGE OF ENGINEERING AND TECHNOLOGY DEPARTMENT OF ECE QUESTION BANK- EDC SEMESTER - III UNIT I : SEMICONDUCTOR DIODS PART A RAJIV GANDHI COLLEGE OF ENGINEERING AND TECHNOLOGY DEPARTMENT OF ECE QUESTION BANK- EDC SEMESTER - III UNIT I : SEMICONDUCTOR DIODS 1. Define Electronics. 2. What is meant by forbidden energy gap. 3. Classify

More information

RAJIV GANDHI COLLEGE OF ENGINEERING AND TECHNOLOGY

RAJIV GANDHI COLLEGE OF ENGINEERING AND TECHNOLOGY RAJIV GANDHI COLLEGE OF ENGINEERING AND TECHNOLOGY DEPARTMENT OF ELECTRICAL & ELECTRONICS ENGINEERING QUESTION BANK EE T34 - Electronic Devices and Circuits II YEAR / III SEMESTER RGCET 1 UNIT-I 1. How

More information

NOTIFICATION (Advt No. 1/2018) Syllabus (Paper III)

NOTIFICATION (Advt No. 1/2018) Syllabus (Paper III) NOTIFICATION (Advt No. 1/2018) Syllabus (Paper III) Post Code - 302 Area: Instrumentation COMPUTER PROGRAMMING AND APPLICATION 1. OVERVIEW OF PROGRAMMING: Steps in program development, problem identification,

More information

B.Sc. (Computer Science) (Part 1) EXAMINATION, 2009 COMPUTER PROGRAMMING FUNDAMENTAL

B.Sc. (Computer Science) (Part 1) EXAMINATION, 2009 COMPUTER PROGRAMMING FUNDAMENTAL 1 COMPUTER PROGRAMMING FUNDAMENTAL Attempt any five questions. All questions carry equal marks. 1. Differentiate algorithm and program. How a program is developed? Discribe the importance of algorithm

More information

COURSE: DATA STRUCTURES USING C & C++ CODE: 05BMCAR17161 CREDITS: 05

COURSE: DATA STRUCTURES USING C & C++ CODE: 05BMCAR17161 CREDITS: 05 COURSE: DATA STRUCTURES USING C & C++ CODE: 05BMCAR17161 CREDITS: 05 Unit 1 : LINEAR DATA STRUCTURES Introduction - Abstract Data Types (ADT), Arrays and its representation Structures, Stack, Queue, Circular

More information

SIR C.R.REDDY COLLEGE OF ENGINEERING, ELURU DEPARTMENT OF INFORMATION TECHNOLOGY LESSON PLAN

SIR C.R.REDDY COLLEGE OF ENGINEERING, ELURU DEPARTMENT OF INFORMATION TECHNOLOGY LESSON PLAN SIR C.R.REDDY COLLEGE OF ENGINEERING, ELURU DEPARTMENT OF INFORMATION TECHNOLOGY LESSON PLAN SUBJECT: CSE 2.1.6 DIGITAL LOGIC DESIGN CLASS: 2/4 B.Tech., I SEMESTER, A.Y.2017-18 INSTRUCTOR: Sri A.M.K.KANNA

More information

MATHEMATICAL STRUCTURES FOR COMPUTER SCIENCE

MATHEMATICAL STRUCTURES FOR COMPUTER SCIENCE MATHEMATICAL STRUCTURES FOR COMPUTER SCIENCE A Modern Approach to Discrete Mathematics SIXTH EDITION Judith L. Gersting University of Hawaii at Hilo W. H. Freeman and Company New York Preface Note to the

More information

DATA STRUCTURES THROUGH C++

DATA STRUCTURES THROUGH C++ II Year I Semester DATA STRUCTURES THROUGH C++ L T P C 4 0 0 3 OBJECTIVES: To be familiar with basic techniques of object oriented principles and exception handling using C++ To be familiar with the concepts

More information

TEACHING & EXAMINATION SCHEME For the Examination COMPUTER SCIENCE. B.Sc. Part-I

TEACHING & EXAMINATION SCHEME For the Examination COMPUTER SCIENCE. B.Sc. Part-I TEACHING & EXAMINATION SCHEME For the Examination -2015 COMPUTER SCIENCE THEORY B.Sc. Part-I CS.101 Paper I Computer Oriented Numerical Methods and FORTRAN Pd/W Exam. Max. (45mts.) Hours Marks 150 2 3

More information

UNIVERSITY POLYTECHNIC B.I.T., MESRA, RANCHI. COURSE STRUCTURE (W.E.F Batch Students) (Total Unit 7.5) Sessional Unit Code. Theory Unit Course

UNIVERSITY POLYTECHNIC B.I.T., MESRA, RANCHI. COURSE STRUCTURE (W.E.F Batch Students) (Total Unit 7.5) Sessional Unit Code. Theory Unit Course COURSE STRUCTURE (W.E.F. 2011 Batch Students) (Total Unit 7.5) Course Theory Unit Course Sessional Unit Code Code DCP 4001 Data Structures 1.0 DCP 4002 Data Structures Lab. 0.5 DEC 4003 Electronics Circuits

More information

JAVA PROGRAMMING. Unit-3 :Creating Gui Using The Abstract Windowing Toolkit:

JAVA PROGRAMMING. Unit-3 :Creating Gui Using The Abstract Windowing Toolkit: JAVA PROGRAMMING UNIT-1: Introduction To Java, Getting Started With Java, Applets And Application, Creating A Java Application, Creating A Java Applets, Object Oriented Programming In Java, Object And

More information

M.Sc. (Computer Science) I Year Assignments for May Paper I DATA STRUCTURES Assignment I

M.Sc. (Computer Science) I Year Assignments for May Paper I DATA STRUCTURES Assignment I Paper I DATA STRUCTURES (DMCS 01) 1. Explain in detail about the overview of Data structures. 2. Explain circular linked list and double-linked list. 3. Explain CPU scheduling in Multiprogramming Environment.

More information

Course Title: Digital Logic Course no: CSC-151 Full Marks: 70+10+20 Credit hours: 3 Pass Marks: 28+4+8 Nature of course: Theory (3 Hrs.) + Lab (3 Hrs.) Course Synopsis: General concepts to be used in the

More information

EC/EE-201 TRANSFORMATION TECHNIQUES L T P C 3 1-3

EC/EE-201 TRANSFORMATION TECHNIQUES L T P C 3 1-3 EC/EE-201 TRANSFORMATION TECHNIQUES L T P C 3 1-3 1. To provide knowledge on Fourier series. 2. To provide knowledge on Fourier integrals. 3. To provide knowledge on Fourier transforms. 4. To make the

More information

CS304,EC304,DCSE16, DETE16

CS304,EC304,DCSE16, DETE16 CS304,EC304,DCSE16, DETE16 III SEMESTER DIPLOMA EXAMINATION, JANUARY-2013 MICROPROCESSOR Time: 3 Hours Max. Marks: 75 GROUP A : Answer any three questions. (Question No. 1 is compulsory) Q.1 What do you

More information

Table of Contents. Chapter 1: Introduction to Data Structures... 1

Table of Contents. Chapter 1: Introduction to Data Structures... 1 Table of Contents Chapter 1: Introduction to Data Structures... 1 1.1 Data Types in C++... 2 Integer Types... 2 Character Types... 3 Floating-point Types... 3 Variables Names... 4 1.2 Arrays... 4 Extraction

More information

DIRECTORATE OF TECHNICAL EDUCATION DIPLOMA IN ELECTRICAL AND ELECTRONICS ENGINEERING II YEAR M SCHEME IV SEMESTER.

DIRECTORATE OF TECHNICAL EDUCATION DIPLOMA IN ELECTRICAL AND ELECTRONICS ENGINEERING II YEAR M SCHEME IV SEMESTER. DIRECTORATE OF TECHNICAL EDUCATION DIPLOMA IN ELECTRICAL AND ELECTRONICS ENGINEERING II YEAR M SCHEME IV SEMESTER 2015 2016 onwards DIGITAL ELECTRONICS CURRICULUM DEVELOPMENT CENTRE Curriculum Development

More information

Department of Computer Science and Engineering Khulna University of Engineering & Technology Khulna , Bangladesh. Course Plan/Profile

Department of Computer Science and Engineering Khulna University of Engineering & Technology Khulna , Bangladesh. Course Plan/Profile Department of Computer Science and Engineering Khulna University of Engineering & Technology Khulna - 9203, Bangladesh Course Plan/Profile 1. Course No.: CSE 1201 Contact Hours:3/week 2. Course Title:

More information

Computer Science and Engineering

Computer Science and Engineering of UNDERGRADUATE DEGREE COURSE Computer Science and Engineering Rajasthan Technical University, Kota Effective from session: 0 09 CS-0: Advanced Engineering Mathematics Credit- L+0T+0P Max. Marks : 0 (IA:0,ETE:0)

More information

CONTENTS CHAPTER 1: NUMBER SYSTEM. Foreword...(vii) Preface... (ix) Acknowledgement... (xi) About the Author...(xxiii)

CONTENTS CHAPTER 1: NUMBER SYSTEM. Foreword...(vii) Preface... (ix) Acknowledgement... (xi) About the Author...(xxiii) CONTENTS Foreword...(vii) Preface... (ix) Acknowledgement... (xi) About the Author...(xxiii) CHAPTER 1: NUMBER SYSTEM 1.1 Digital Electronics... 1 1.1.1 Introduction... 1 1.1.2 Advantages of Digital Systems...

More information

SECOND SEMESTER BCA : Syllabus Copy

SECOND SEMESTER BCA : Syllabus Copy BCA203T: DATA STRUCTURES SECOND SEMESTER BCA : Syllabus Copy Unit-I Introduction and Overview: Definition, Elementary data organization, Data Structures, data structures operations, Abstract data types,

More information

DIGITAL ELECTRONICS. Vayu Education of India

DIGITAL ELECTRONICS. Vayu Education of India DIGITAL ELECTRONICS ARUN RANA Assistant Professor Department of Electronics & Communication Engineering Doon Valley Institute of Engineering & Technology Karnal, Haryana (An ISO 9001:2008 ) Vayu Education

More information

INSTITUTE OF AERONAUTICAL ENGINEERING (Autonomous) Dundigal, Hyderabad

INSTITUTE OF AERONAUTICAL ENGINEERING (Autonomous) Dundigal, Hyderabad INSTITUTE OF AERONAUTICAL ENGINEERING (Autonomous) Dundigal, Hyderabad -500 043 COMPUTER SCIENCE AND ENGINEERING TUTORIAL QUESTION BANK Course Name : DATA STRUCTURES Course Code : A30502 Class : II B.

More information

About the Author. Dependency Chart. Chapter 1: Logic and Sets 1. Chapter 2: Relations and Functions, Boolean Algebra, and Circuit Design

About the Author. Dependency Chart. Chapter 1: Logic and Sets 1. Chapter 2: Relations and Functions, Boolean Algebra, and Circuit Design Preface About the Author Dependency Chart xiii xix xxi Chapter 1: Logic and Sets 1 1.1: Logical Operators: Statements and Truth Values, Negations, Conjunctions, and Disjunctions, Truth Tables, Conditional

More information

SRM ARTS AND SCIENCE COLLEGE SRM NAGAR, KATTANKULATHUR

SRM ARTS AND SCIENCE COLLEGE SRM NAGAR, KATTANKULATHUR SRM ARTS AND SCIENCE COLLEGE SRM NAGAR, KATTANKULATHUR 603203 DEPARTMENT OF COMPUTER SCIENCE & APPLICATIONS LESSON PLAN (207-208) Course / Branch : B.Sc CS Total Hours : 50 Subject Name : Digital Electronics

More information

DISCRETE MATHEMATICS

DISCRETE MATHEMATICS DISCRETE MATHEMATICS WITH APPLICATIONS THIRD EDITION SUSANNA S. EPP DePaul University THOIVISON * BROOKS/COLE Australia Canada Mexico Singapore Spain United Kingdom United States CONTENTS Chapter 1 The

More information

CS 101 Advanced Computer System Architecture 100 ( ) CS 102 Operating System 100 ( )

CS 101 Advanced Computer System Architecture 100 ( ) CS 102 Operating System 100 ( ) Syllabus for M.Sc. Computer Science Programme Semester I External/ Internal CS 101 Advanced Computer System Architecture 100 ( 75 + 25 ) CS 102 Operating System 100 ( 75 + 25 ) CS 103 Mathematical Foundation

More information

Sri Satya Sai University of Technology & Medical Sciences, Sehore (M.P.) CSC-301 COMPUTATIONAL TECHNIQUES

Sri Satya Sai University of Technology & Medical Sciences, Sehore (M.P.) CSC-301 COMPUTATIONAL TECHNIQUES CSC-301 COMPUTATIONAL TECHNIQUES UNIT I MATRICES:- Eigenvalues and Eigenvectors of a real matrix, Characteristic equation, Properties of Eigenvalues and eigenvectors, Cayley-Hamilton Theorem, Diagonalization

More information

Notation Index. Probability notation. (there exists) (such that) Fn-4 B n (Bell numbers) CL-27 s t (equivalence relation) GT-5.

Notation Index. Probability notation. (there exists) (such that) Fn-4 B n (Bell numbers) CL-27 s t (equivalence relation) GT-5. Notation Index (there exists) (for all) Fn-4 Fn-4 (such that) Fn-4 B n (Bell numbers) CL-27 s t (equivalence relation) GT-5 ( n ) k (binomial coefficient) CL-15 ( n m 1,m 2,...) (multinomial coefficient)

More information

SRM UNIVERSITY FACULTY OF ENGINEERING AND TECHNOLOGY SCHOOL OF COMPUTING DEPARTMENT OF CSE COURSE PLAN. Sec. Name Office Office hour Mail id

SRM UNIVERSITY FACULTY OF ENGINEERING AND TECHNOLOGY SCHOOL OF COMPUTING DEPARTMENT OF CSE COURSE PLAN. Sec. Name Office Office hour Mail id SRM UNIVERSITY FACULTY OF ENGINEERING AND TECHNOLOGY SCHOOL OF COMPUTING DEPARTMENT OF CSE COURSE PLAN Course Code Course Title : DATA STRUCTURES AND ALGORITHMS Semester : I Course Time : July Dec 207

More information

Fall 2018 Updates. Materials and Energy Balances. Fundamental Programming Concepts. Data Structure Essentials (Available now) Circuits (Algebra)

Fall 2018 Updates. Materials and Energy Balances. Fundamental Programming Concepts. Data Structure Essentials (Available now) Circuits (Algebra) Fall 2018 Updates Materials and Energy Balances New Sections Solver and least squares fits Error and statistics Interpolation 9.9 Integration and numerical integration 9.10 Math functions 9.11 Logical

More information

END-TERM EXAMINATION

END-TERM EXAMINATION (Please Write your Exam Roll No. immediately) END-TERM EXAMINATION DECEMBER 2006 Exam. Roll No... Exam Series code: 100919DEC06200963 Paper Code: MCA-103 Subject: Digital Electronics Time: 3 Hours Maximum

More information

SARVEPALLI RADHAKRISHNAN UNIVERSITY, BHOPAL (M.P.) Scheme of Examination. First Semester-Master of Computer Application

SARVEPALLI RADHAKRISHNAN UNIVERSITY, BHOPAL (M.P.) Scheme of Examination. First Semester-Master of Computer Application Scheme of Examination First Semester-Master of Computer Application S.No Subject Subject Periods per Credits Maximum Marks Maximum Marks Total Code Name week (Theory Slot) (Practical Slot) Marks L T P

More information

A Survey of Mathematics with Applications 8 th Edition, 2009

A Survey of Mathematics with Applications 8 th Edition, 2009 A Correlation of A Survey of Mathematics with Applications 8 th Edition, 2009 South Carolina Discrete Mathematics Sample Course Outline including Alternate Topics and Related Objectives INTRODUCTION This

More information

Course Name: B.Tech. 3 th Sem. No of hours allotted to complete the syllabi: 44 Hours No of hours allotted per week: 3 Hours. Planned.

Course Name: B.Tech. 3 th Sem. No of hours allotted to complete the syllabi: 44 Hours No of hours allotted per week: 3 Hours. Planned. Course Name: B.Tech. 3 th Sem. Subject: Data Structures No of hours allotted to complete the syllabi: 44 Hours No of hours allotted per week: 3 Hours Paper Code: ETCS-209 Topic Details No of Hours Planned

More information

PRAGATI ENGINEERING COLLEGE (AUTONOMOUS) DEPARTMENT OF INFORMATION TECHNOLOGY

PRAGATI ENGINEERING COLLEGE (AUTONOMOUS) DEPARTMENT OF INFORMATION TECHNOLOGY B.Tech INFORMATION TECHNOLOGY COURSE STRUCTURE II Year I SEMESTER S.No Subject Code Subject L T P C 1 16BH3T07 Statistics with R Programming 4 - - 3 2 16EC3T08 Digital Logic Design 4 - - 3 3 16CS3T02 Mathematical

More information

COPYRIGHTED MATERIAL INDEX

COPYRIGHTED MATERIAL INDEX INDEX Absorption law, 31, 38 Acyclic graph, 35 tree, 36 Addition operators, in VHDL (VHSIC hardware description language), 192 Algebraic division, 105 AND gate, 48 49 Antisymmetric, 34 Applicable input

More information

Notation Index 9 (there exists) Fn-4 8 (for all) Fn-4 3 (such that) Fn-4 B n (Bell numbers) CL-25 s ο t (equivalence relation) GT-4 n k (binomial coef

Notation Index 9 (there exists) Fn-4 8 (for all) Fn-4 3 (such that) Fn-4 B n (Bell numbers) CL-25 s ο t (equivalence relation) GT-4 n k (binomial coef Notation 9 (there exists) Fn-4 8 (for all) Fn-4 3 (such that) Fn-4 B n (Bell numbers) CL-25 s ο t (equivalence relation) GT-4 n k (binomial coefficient) CL-14 (multinomial coefficient) CL-18 n m 1 ;m 2

More information

M.Sc. (Previous) DEGREE EXAMINATION, MAY (Examination at the end of First Year) Computer Science. Paper - I : DATA STRUCTURES

M.Sc. (Previous) DEGREE EXAMINATION, MAY (Examination at the end of First Year) Computer Science. Paper - I : DATA STRUCTURES (DMCS 01) M.Sc. (Previous) DEGREE EXAMINATION, MAY - 2014 (Examination at the end of First Year) Computer Science Paper - I : DATA STRUCTURES Time : 03 Hours Maximum Marks : 75 Section A (3 15 = 45) Answer

More information

Kumaun University Nainital Proposed Syllabus for B. Sc. Semester program to be implemented from session Subject: Computer Science

Kumaun University Nainital Proposed Syllabus for B. Sc. Semester program to be implemented from session Subject: Computer Science Kumaun University Nainital Proposed Syllabus for B. Sc. Semester program to be implemented from session 2016-17 Subject: Computer Science Semester system course structure: 1. The course work shall be divided

More information

Detailed Syllabus of Ph.D. Coursework Examination in Computer Science and Application

Detailed Syllabus of Ph.D. Coursework Examination in Computer Science and Application Detailed Syllabus of Ph.D. Coursework Examination in Computer Science and Application Dept. of Computer Science and Application University of North Bengal(N.B.U.) Raja Rammohonpur, P.O.-N.B.U., Dist-Darjeeling,

More information

Thomas H. Cormen Charles E. Leiserson Ronald L. Rivest. Introduction to Algorithms

Thomas H. Cormen Charles E. Leiserson Ronald L. Rivest. Introduction to Algorithms Thomas H. Cormen Charles E. Leiserson Ronald L. Rivest Introduction to Algorithms Preface xiii 1 Introduction 1 1.1 Algorithms 1 1.2 Analyzing algorithms 6 1.3 Designing algorithms 1 1 1.4 Summary 1 6

More information

r=1 The Binomial Theorem. 4 MA095/98G Revision

r=1 The Binomial Theorem. 4 MA095/98G Revision Revision Read through the whole course once Make summary sheets of important definitions and results, you can use the following pages as a start and fill in more yourself Do all assignments again Do the

More information

II/IV B.Tech (Regular/Supplementary) DEGREE EXAMINATION. Discrete Mathematical Structures. Answer ONE question from each unit.

II/IV B.Tech (Regular/Supplementary) DEGREE EXAMINATION. Discrete Mathematical Structures. Answer ONE question from each unit. 14CS IT302 November,2016 II/IV B.Tech (Regular/Supplementary) DEGREE EXAMINATION Common for CSE & IT Discrete Mathematical Structures (4X12=48 Marks) 1. Answer all questions (1X12=12 Marks) a (Pv~P) is

More information

DEPARTMENT OF COMPUTER APPLICATIONS B.C.A. - FIRST YEAR ( REGULATION) SECOND SEMESTER LESSON PLAN SRM INSTITUTE OF SCIENCE AND TECHNOLOGY

DEPARTMENT OF COMPUTER APPLICATIONS B.C.A. - FIRST YEAR ( REGULATION) SECOND SEMESTER LESSON PLAN SRM INSTITUTE OF SCIENCE AND TECHNOLOGY DEPARTMENT OF COMPUTER APPLICATIONS B.C.A. - FIRST YEAR (2015-2016 REGULATION) SECOND SEMESTER LESSON PLAN SRM INSTITUTE OF SCIENCE AND TECHNOLOGY FACULTY OF SCIENCE AND HUMANITIES SRM NAGAR, KATTANKULATHUR

More information

GOPALAN COLLEGE OF ENGINEERING AND MANAGEMENT Department of Mechanical Engineering COURSE PLAN

GOPALAN COLLEGE OF ENGINEERING AND MANAGEMENT Department of Mechanical Engineering COURSE PLAN Appendix - C GOPALAN COLLEGE OF ENGINEERING AND MANAGEMENT Department of Mechanical Engineering Academic Year: 2017 Semester: EVEN COURSE PLAN Semester: VI SubjectCode&Name:10ME65 Mechatronics & Microprocessor

More information

ADIKAVI NANNAYA UNIVERSITY:: RAJAMAHENDRAVARAM UNIVERSITY COLLEGE OF ENGINEERING COURSE STRUCTURE & SYLLABUS II B.TECH I SEMESTER ECE

ADIKAVI NANNAYA UNIVERSITY:: RAJAMAHENDRAVARAM UNIVERSITY COLLEGE OF ENGINEERING COURSE STRUCTURE & SYLLABUS II B.TECH I SEMESTER ECE Sub Code ADIKAVI NANNAYA UNIVERSITY:: RAJAMAHENDRAVARAM UNIVERSITY COLLEGE OF ENGINEERING COURSE STRUCTURE & SYLLABUS II B.TECH I SEMESTER ECE (With effect from 2017-2018 admitted batches onwards) Under

More information

Course Title III Allied Practical** IV Environmental Studies #

Course Title III Allied Practical** IV Environmental Studies # Part Ins. hrs / week Dur.Hr s. CIA Marks Total Marks Credit Page 1 of 5 BHARATHIAR UNIVERSITY,COIMBATORE-641 046 B.Sc. PHYSICS DEGREE COURSE SCHEME OF EXAMINATIONS (CBCS PATTERN) (For the students admitted

More information

FIRST SEMESTER BCA Syllabus Copy BCA103T : PROBLEM SOLVING TECHNIQUES USING C

FIRST SEMESTER BCA Syllabus Copy BCA103T : PROBLEM SOLVING TECHNIQUES USING C FIRST SEMESTER BCA Syllabus Copy BCA103T : PROBLEM SOLVING TECHNIQUES USING C Unit - I Introduction to Programming Concepts: Software, Classification of Software, Modular Programming, Structured Programming,

More information

CONTENTS Equivalence Classes Partition Intersection of Equivalence Relations Example Example Isomorphis

CONTENTS Equivalence Classes Partition Intersection of Equivalence Relations Example Example Isomorphis Contents Chapter 1. Relations 8 1. Relations and Their Properties 8 1.1. Definition of a Relation 8 1.2. Directed Graphs 9 1.3. Representing Relations with Matrices 10 1.4. Example 1.4.1 10 1.5. Inverse

More information

LESSON PLAN B.C.A. - FIRST YEAR ( REGULATION) SECOND SEMESTER

LESSON PLAN B.C.A. - FIRST YEAR ( REGULATION) SECOND SEMESTER DEPARTMENT OF COMPUTER APPLICATIONS LESSON PLAN B.C.A. - FIRST YEAR (2014-2015 REGULATION) SECOND SEMESTER SRM UNIVERSITY FACULTY OF SCIENCE AND HUMANITIES SRM NAGAR, KATTANKULATHUR 603 203 SRM UNIVERSITY

More information

SCHEME OF EXAMINATION FOR B.Sc.(COMPUTER SCIENCE) SEMESTER SYSTEM (Regular Course) w.e.f Scheme for B.Sc.-I. Semester-I. Internal Assessment

SCHEME OF EXAMINATION FOR B.Sc.(COMPUTER SCIENCE) SEMESTER SYSTEM (Regular Course) w.e.f Scheme for B.Sc.-I. Semester-I. Internal Assessment SCHEME OF EXAMINATION FOR B.Sc.(COMPUTER SCIENCE) SEMESTER SYSTEM (Regular Course) w.e.f. 2013-14 Scheme for B.Sc.-I Sr. No. Paper 1 Paper-I Computer And Programming Fundamentals Semester-I Internal Assessment

More information

Total No. of Questions : 18] [Total No. of Pages : 02. M.Sc. DEGREE EXAMINATION, DEC First Year COMPUTER SCIENCE.

Total No. of Questions : 18] [Total No. of Pages : 02. M.Sc. DEGREE EXAMINATION, DEC First Year COMPUTER SCIENCE. (DMCS01) Total No. of Questions : 18] [Total No. of Pages : 02 M.Sc. DEGREE EXAMINATION, DEC. 2016 First Year COMPUTER SCIENCE Data Structures Time : 3 Hours Maximum Marks : 70 Section - A (3 x 15 = 45)

More information

(ii) Simplify and implement the following SOP function using NOR gates:

(ii) Simplify and implement the following SOP function using NOR gates: DHANALAKSHMI COLLEGE OF ENGINEERING DEPARTMENT OF ELECTRONICS AND COMMUNICATION ENGINEERING EE6301 DIGITAL LOGIC CIRCUITS UNIT I NUMBER SYSTEMS AND DIGITAL LOGIC FAMILIES PART A 1. How can an OR gate be

More information

Reference Sheet for C112 Hardware

Reference Sheet for C112 Hardware Reference Sheet for C112 Hardware 1 Boolean Algebra, Gates and Circuits Autumn 2016 Basic Operators Precedence : (strongest),, + (weakest). AND A B R 0 0 0 0 1 0 1 0 0 1 1 1 OR + A B R 0 0 0 0 1 1 1 0

More information

Master of Computer Applications(MCA)

Master of Computer Applications(MCA) A D I K A V I N A N N A Y A U N I V E R S I T Y : R A J A M A H E N D R A V A R A M UNIVERSITY COLLEGE OF ENGINEERING Department Of Computer Science & Engineering Master of Computer Applications(MCA) Course

More information

Introductory Combinatorics

Introductory Combinatorics Introductory Combinatorics Third Edition KENNETH P. BOGART Dartmouth College,. " A Harcourt Science and Technology Company San Diego San Francisco New York Boston London Toronto Sydney Tokyo xm CONTENTS

More information

Course Batch Semester Subject Code Subject Name. B.E-Marine Engineering B.E- ME-16 III UBEE307 Integrated Circuits

Course Batch Semester Subject Code Subject Name. B.E-Marine Engineering B.E- ME-16 III UBEE307 Integrated Circuits Course Batch Semester Subject Code Subject Name B.E-Marine Engineering B.E- ME-16 III UBEE307 Integrated Circuits Part-A 1 Define De-Morgan's theorem. 2 Convert the following hexadecimal number to decimal

More information

Injntu.com Injntu.com Injntu.com R16

Injntu.com Injntu.com Injntu.com R16 1. a) What are the three methods of obtaining the 2 s complement of a given binary (3M) number? b) What do you mean by K-map? Name it advantages and disadvantages. (3M) c) Distinguish between a half-adder

More information

DYNAMIC MEMORY ALLOCATION AND DEALLOCATION

DYNAMIC MEMORY ALLOCATION AND DEALLOCATION COURSE TITLE DATA STRUCTURE DETAILED SYLLABUS SR.NO NAME OF CHAPTERS & DETAILS HOURS ALLOTTED 1 USER DEFINED DATATYPE /STRUCTURE About structure Defining structure Accessing structure element Array of

More information

Periodic Functions, Euler s formula, Even and Odd function with illustrated examples.

Periodic Functions, Euler s formula, Even and Odd function with illustrated examples. 3 TH SEMESTER 1 COURSE NAME: Engineering Mathematics III COURSE CODE: EC-14301 Internal Marks: 40 L T P External Marks: 60 3 1 - Numerical & Design Problems Content: 70%-80% Note: The Question paper shall

More information

CS/IT DIGITAL LOGIC DESIGN

CS/IT DIGITAL LOGIC DESIGN CS/IT 214 (CR) Total No. of Questions :09] [Total No. of Pages : 02 II/IV B.Tech. DEGREE EXAMINATIONS, DECEMBER- 2016 First Semester CS/IT DIGITAL LOGIC DESIGN Time: Three Hours 1. a) Flip-Flop Answer

More information

ADIKAVI NANNAYA UNIVERSITY:: RAJAMAHENDRAVARAM II BTech (CSE) I Semester BTCSE301 DIGITAL LOGIC DESIGN MODEL QUESTION PAPER

ADIKAVI NANNAYA UNIVERSITY:: RAJAMAHENDRAVARAM II BTech (CSE) I Semester BTCSE301 DIGITAL LOGIC DESIGN MODEL QUESTION PAPER ADIKAVI NANNAYA UNIVERSITY:: RAJAMAHENDRAVARAM BTCSE301 DIGITAL LOGIC DESIGN 1. a) List out the Basic Theorems and Properties of Boolean Algebra. Justify with the Proof b) Explain how 1's complement and

More information

R10 SET - 1. Code No: R II B. Tech I Semester, Supplementary Examinations, May

R10 SET - 1. Code No: R II B. Tech I Semester, Supplementary Examinations, May Code No: R21051 R10 SET - 1 II B. Tech I Semester, Supplementary Examinations, May - 2012 DATA STRUCTURES (Com. to CSE, IT, ECC ) Time: 3 hours Max Marks: 75 Answer any FIVE Questions All Questions carry

More information

2) Explain in detail about different AVL rotation applied on unbalanced trees.

2) Explain in detail about different AVL rotation applied on unbalanced trees. (DMCS 01) ASSIGNMENT - 1, MAY-2014. PAPER- I : DATA STRUCTURES 1) Define circular queue. Write an algorithm to describe insertion and deletion operation on a circular queue. Illustrate these operations

More information

D I G I T A L C I R C U I T S E E

D I G I T A L C I R C U I T S E E D I G I T A L C I R C U I T S E E Digital Circuits Basic Scope and Introduction This book covers theory solved examples and previous year gate question for following topics: Number system, Boolean algebra,

More information

Fundamentals of Discrete Mathematical Structures

Fundamentals of Discrete Mathematical Structures Fundamentals of Discrete Mathematical Structures THIRD EDITION K.R. Chowdhary Campus Director JIET School of Engineering and Technology for Girls Jodhpur Delhi-110092 2015 FUNDAMENTALS OF DISCRETE MATHEMATICAL

More information

F.Y.B.Sc Eletronics COURSE OUTCOMES ELE 111: Analog Electronics I

F.Y.B.Sc Eletronics COURSE OUTCOMES ELE 111: Analog Electronics I F.Y.B.Sc Eletronics COURSE OUTCOMES ELE 111: Analog Electronics I 1. Understand electronic systems with a continuously variable signal 2. Understand proportional relationship between a signal and a voltage

More information

(DMTCS 01) Answer Question No.1 is compulsory (15) Answer One question from each unit (4 15=60) 1) a) State whether the following is True/False:

(DMTCS 01) Answer Question No.1 is compulsory (15) Answer One question from each unit (4 15=60) 1) a) State whether the following is True/False: (DMTCS 01) M.Tech. DEGREE EXAMINATION, DECEMBER - 2015 (Examination at the end of First Year) COMPUTER SCIENCE Paper - I : Data structures Time : 03 Hours Maximum Marks : 75 Answer Question No.1 is compulsory

More information

Duration of University Examination: University Examination(SEE):

Duration of University Examination: University Examination(SEE): PC 301 IT DISCRETE MATHEMATICS University Examination(SEE): (3L+1T)Hours/Wk 70 Marks 30 Marks 1. To Learn mathematical concepts as applied in computer science for solving logical problems. 2. To model

More information

Description Subject Teaching Methodology L T P C Course Code Data Structures Teaching Total contact hours - 64

Description Subject Teaching Methodology L T P C Course Code Data Structures Teaching Total contact hours - 64 Description Subject Teaching Methodology L T P C Course Code 17300201 Data Structures 3 1 0 4 Teaching Total contact hours - 64 Prerequisite (s) Knowledge of C programming Course Objective(s): 1.To understand

More information

I Year MCA I Semester L T P To C FOUNDATIONS OF INFORMATION TECHNOLOGY

I Year MCA I Semester L T P To C FOUNDATIONS OF INFORMATION TECHNOLOGY I Year MCA I Semester L T P To C 3 1-4 4 MC101 FOUNDATIONS OF INFORMATION TECHNOLOGY Objectives of the Course: It offers students an overall idea of computer science and information technology to the student.

More information

KING FAHD UNIVERSITY OF PETROLEUM & MINERALS COMPUTER ENGINEERING DEPARTMENT

KING FAHD UNIVERSITY OF PETROLEUM & MINERALS COMPUTER ENGINEERING DEPARTMENT KING FAHD UNIVERSITY OF PETROLEUM & MINERALS COMPUTER ENGINEERING DEPARTMENT COE 202: Digital Logic Design Term 162 (Spring 2017) Instructor: Dr. Abdulaziz Barnawi Class time: U.T.R.: 11:00-11:50AM Class

More information

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. Discrete Mathematics

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. Discrete Mathematics About the Tutorial Discrete Mathematics is a branch of mathematics involving discrete elements that uses algebra and arithmetic. It is increasingly being applied in the practical fields of mathematics

More information

HANSABA COLLEGE OF ENGINEERING & TECHNOLOGY (098) SUBJECT: DIGITAL ELECTRONICS ( ) Assignment

HANSABA COLLEGE OF ENGINEERING & TECHNOLOGY (098) SUBJECT: DIGITAL ELECTRONICS ( ) Assignment Assignment 1. What is multiplexer? With logic circuit and function table explain the working of 4 to 1 line multiplexer. 2. Implement following Boolean function using 8: 1 multiplexer. F(A,B,C,D) = (2,3,5,7,8,9,12,13,14,15)

More information

Syllabus for Bachelor of Technology. Computer Engineering. Subject Code: 01CE0301. Subject Name: Data Structure. B.Tech. Year - II

Syllabus for Bachelor of Technology. Computer Engineering. Subject Code: 01CE0301. Subject Name: Data Structure. B.Tech. Year - II Subject Code: 01CE0301 Subject Name: Data Structure B.Tech. Year - II Objective: Data structure has high importance in the field of Computer & IT. Organization of data is crucial for implementation and

More information

1. Attempt any three of the following: 15

1. Attempt any three of the following: 15 (Time: 2½ hours) Total Marks: 75 N. B.: (1) All questions are compulsory. (2) Make suitable assumptions wherever necessary and state the assumptions made. (3) Answers to the same question must be written

More information

Krantiguru Shyamji Krishna Verma Kachchh University, Bhuj Master of Science (Computer Applications & Information Technology) Semester: II

Krantiguru Shyamji Krishna Verma Kachchh University, Bhuj Master of Science (Computer Applications & Information Technology) Semester: II Paper Code: CCCS205 Total Credit : 4 Title of Paper: ntroduction to Data Structure and Algorithm Unit Description Weighting ntroduction Variables, Data Types, Data Structures, Abstract Data Types (ADTs)

More information

5. (a) What is secondary storage? How does it differ from a primary storage? (b) Explain the functions of (i) cache memory (ii) Register

5. (a) What is secondary storage? How does it differ from a primary storage? (b) Explain the functions of (i) cache memory (ii) Register General Concepts 1. (a) What are combinational circuits? (b) Perform the following: (i) Convert (0.5625) 10 = ( ) 2 (ii) (010010) 2 (100011) 2 = ( ) 2 2. (a) Using truth table prove that A B= A+ B (b)

More information

3. The high voltage level of a digital signal in positive logic is : a) 1 b) 0 c) either 1 or 0

3. The high voltage level of a digital signal in positive logic is : a) 1 b) 0 c) either 1 or 0 1. The number of level in a digital signal is: a) one b) two c) four d) ten 2. A pure sine wave is : a) a digital signal b) analog signal c) can be digital or analog signal d) neither digital nor analog

More information

Summary of Course Coverage

Summary of Course Coverage CS-227, Discrete Structures I Spring 2006 Semester Summary of Course Coverage 1) Propositional Calculus a) Negation (logical NOT) b) Conjunction (logical AND) c) Disjunction (logical inclusive-or) d) Inequalities

More information

R13. II B. Tech I Semester Supplementary Examinations, May/June DATA STRUCTURES (Com. to ECE, CSE, EIE, IT, ECC)

R13. II B. Tech I Semester Supplementary Examinations, May/June DATA STRUCTURES (Com. to ECE, CSE, EIE, IT, ECC) SET - 1 II B. Tech I Semester Supplementary Examinations, May/June - 2016 PART A 1. a) Write a procedure for the Tower of Hanoi problem? b) What you mean by enqueue and dequeue operations in a queue? c)

More information

Sri Satya Sai University of Technology & Medical Sciences, Sehore (M.P.) ITC-301 COMPUTATIONAL TECHNIQUES

Sri Satya Sai University of Technology & Medical Sciences, Sehore (M.P.) ITC-301 COMPUTATIONAL TECHNIQUES ITC-301 COMPUTATIONAL TECHNIQUES UNIT I MATRICES:- Eigenvalues and Eigenvectors of a real matrix, Characteristic equation, Properties of Eigenvalues and eigenvectors, Cayley-Hamilton Theorem, Diagonalization

More information

STATISTICS (STAT) Statistics (STAT) 1

STATISTICS (STAT) Statistics (STAT) 1 Statistics (STAT) 1 STATISTICS (STAT) STAT 2013 Elementary Statistics (A) Prerequisites: MATH 1483 or MATH 1513, each with a grade of "C" or better; or an acceptable placement score (see placement.okstate.edu).

More information

VALLIAMMAI ENGINEERING COLLEGE. SRM Nagar, Kattankulathur DEPARTMENT OF ELECTRONICS AND COMMUNICATION ENGINEERING EC6302 DIGITAL ELECTRONICS

VALLIAMMAI ENGINEERING COLLEGE. SRM Nagar, Kattankulathur DEPARTMENT OF ELECTRONICS AND COMMUNICATION ENGINEERING EC6302 DIGITAL ELECTRONICS VALLIAMMAI ENGINEERING COLLEGE SRM Nagar, Kattankulathur-603 203 DEPARTMENT OF ELECTRONICS AND COMMUNICATION ENGINEERING EC6302 DIGITAL ELECTRONICS YEAR / SEMESTER: II / III ACADEMIC YEAR: 2015-2016 (ODD

More information

Sardar Patel University S Y BSc. Computer Science CS-201 Introduction to Programming Language Effective from July-2002

Sardar Patel University S Y BSc. Computer Science CS-201 Introduction to Programming Language Effective from July-2002 Sardar Patel University S Y BSc. Computer Science CS-201 Introduction to Programming Language Effective from July-2002 2 Practicals per week External marks :80 Internal Marks : 40 Total Marks :120 University

More information

R10 SET - 1. Code No: R II B. Tech I Semester, Supplementary Examinations, May

R10 SET - 1. Code No: R II B. Tech I Semester, Supplementary Examinations, May www.jwjobs.net R10 SET - 1 II B. Tech I Semester, Supplementary Examinations, May - 2012 (Com. to CSE, IT, ECC ) Time: 3 hours Max Marks: 75 *******-****** 1. a) Which of the given options provides the

More information

CSCE 321/3201 Analysis and Design of Algorithms. Prof. Amr Goneid. Fall 2016

CSCE 321/3201 Analysis and Design of Algorithms. Prof. Amr Goneid. Fall 2016 CSCE 321/3201 Analysis and Design of Algorithms Prof. Amr Goneid Fall 2016 CSCE 321/3201 Analysis and Design of Algorithms Prof. Amr Goneid Course Resources Instructor: Prof. Amr Goneid E-mail: goneid@aucegypt.edu

More information

II B. Tech I Semester Regular Examinations, Dec DATA STRUCTURES (Com. to ECE, CSE, EIE, IT, ECC)

II B. Tech I Semester Regular Examinations, Dec DATA STRUCTURES (Com. to ECE, CSE, EIE, IT, ECC) Code No: RT21042 R13 II B. Tech I Semester Regular Examinations, Dec - 2014 DATA STRUCTURES (Com. to ECE, CSE, EIE, IT, ECC) SET - 1 PART-A 1. a) Define Recursion with example b) Differentiate between

More information