r23 Syllabus Final
r23 Syllabus Final
r23 Syllabus Final
AUTONOMOUS
DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING
(Accredited by NBA)
II B.TECH - I SEMESTER
PRE-REQUISITES: Nil
COURSE EDUCATIONAL OBJECTIVES:
1. Provide knowledge about algorithm analysis using time complexity and space
complexity, and to introduce the concept of AVL trees and B trees.
2. To understand the concepts of Heap trees, Basics of Graphs and Divide and Conquer
algorithm design strategy.
3. To gain knowledge of Greedy and Dynamic programming approach to problem solving.
4. To Understand back tracking and branch and bound strategies for solving the complex
problems
5. To Develop skills of deciding a problem is solvable or not using NP hard and NP complete class
problem.
UNIT 1: (9)
Introduction to Algorithm Analysis, Space and Time Complexity analysis, Asymptotic Notations.
AVL Trees – Creation, Insertion, Deletion operations and Applications B-Trees – Creation,
Insertion, Deletion operations and Applications
UNIT 2: (9)
Heap Trees (Priority Queues) – Min and Max Heaps, Operations and Applications Graphs –
Terminology, Representations, Basic Search and Traversals, Connected Components and
Biconnected Components, applications. Divide and Conquer: The General Method, Quick Sort,
Merge Sort, Strassen’s matrix multiplication, Convex Hull
UNIT 3: (9)
Greedy Method: General Method, Job Sequencing with deadlines, Knapsack Problem, Minimum
cost spanning trees, Single Source Shortest Paths. Dynamic Programming: General Method, All
pairs shortest paths, Single Source Shortest Paths– General Weights (Bellman Ford Algorithm),
Optimal Binary Search Trees, 0/1 Knapsack, String Editing, Travelling Salesperson problem
UNIT 4: (9)
Backtracking: General Method, 8-Queens Problem, Sum of Subsets problem, Graph Coloring,
0/1 Knapsack Problem
Branch and Bound: The General Method, 0/1 Knapsack Problem, Travelling Salesperson problem
UNIT 5: (9)
NP Hard and NP Complete Problems: Basic Concepts, Cook’s theorem NP Hard Graph Problems:
Clique Decision Problem (CDP), Chromatic Number Decision Problem (CNDP), Traveling
Salesperson Decision Problem (TSP)NP Hard Scheduling Problems: Scheduling Identical
Processors, Job Shop Scheduling
.
Total Hours: 45
1
SREENIVASA INSTITUTE OF TECHNOLOGY AND MANAGEMENT STUDIES - Chittoor
AUTONOMOUS
DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING
(Accredited by NBA)
COURSE OUTCOMES:
On successful completion of the course the student will be POs related to COs
To gain knowledge of time complexity, space complexity and PO1, PO2, PO3
CO1 introduce the concept of AVL trees and B trees.
To design searching and sorting algorithms along with divide PO1, PO2, PO3,
CO2 and conquer method and to understand the concepts of Heap PO4
trees, Basics of Graphs.
To apply Greedy method and Dynamic Programming design PO1, PO2, PO3,
CO3 technique for problem solving. PO4
To apply back tracing and branch & bound design PO1, PO2, PO3,
CO4 technique for problem solving PO4
To understand and analyze the NP hard and NP complete class PO1, PO2, PO3,
CO5 problem. PO4
TEXT BOOKS:
1. Fundamentals of Data Structures in C++, Horowitz, Ellis; Sahni, Sartaj; Mehta, Dinesh,
2ndEdition Universities Press
2. Computer Algorithms in C++, Ellis Horowitz, SartajSahni, SanguthevarRajasekaran, 2nd
Edition University Press
REFERENCES:
1. Data Structures and program design in C, Robert Kruse, Pearson Education Asia
2. An introduction to Data Structures with applications, Trembley& Sorenson, McGraw Hill
3. The Art of Computer Programming, Vol.1: Fundamental Algorithms, Donald E Knuth,
Addison-Wesley, 1997.
4. Data Structures using C & C++: Langsam, Augenstein&Tanenbaum, Pearson, 1995
5. Algorithms + Data Structures & Programs:, N.Wirth, PHI
6. Fundamentals of Data Structures in C++: Horowitz Sahni& Mehta, Galgottia Pub.
7. Data structures in Java:, Thomas Standish, Pearson Education Asia
REFERENCE WEBSITE:
1. https://www.tutorialspoint.com/advanced_data_structures/index.asp
2. http://peterindia.net/Algorithms.html
3. https://www.youtube.com/playlist?list=PLDN4rrl48XKpZkf03iYFl-O29szjTrs_O
CO-PO MAPPING:
CO- PO1 PO2 PO3 PO4 PO5 PO6 PO7 PO8 PO9 PO10 PO11 PO12
PO
CO1 3 3 3 -- - - - - - - - -
CO2 3 3 3 3 - - - - - - - -
CO3 3 3 3 3 - - - - - - - -
CO4 3 3 3 3 - - - - - - - -
CO5 3 3 3 3 - - - - - - - -
CO* 3 3 3 3 - - - - - - - -
2
SREENIVASA INSTITUTE OF TECHNOLOGY AND MANAGEMENT STUDIES - Chittoor
AUTONOMOUS
DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING
(Accredited by NBA)
II B.TECH - I SEMESTER
PRE-REQUISITES:Nil
COURSE EDUCATIONAL OBJECTIVES:
1. Identify Java language components and how they work together in applications
2. Learnthe fundamentals of object-oriented programming in Java, including defining classes,
invoking methods, using class libraries.
3. learn how to extend Java classes with inheritance and dynamic binding and how to use
exception handling in Java applications
4. understand how to design applications with threads in Java
5. understand how to use Java APIs for program development
UNIT 1: (9)
Object Oriented Programming: Basic concepts, Principles,
Program Structure in Java: Introduction, Writing Simple Java Programs, Elements or Tokens in
Java Programs, Java Statements, Command Line Arguments, User Input to Programs, Escape
Sequences Comments, Programming Style.
Data Types, Variables, and Operators :Introduction, Data Types in Java, Declaration of Variables,
Data Types, Type Casting, Scope of Variable Identifier, Literal Constants, Symbolic Constants,
Formatted Output with printf() Method, Static Variables and Methods, Attribute Final,
UNIT 2: (9)
Classes and Objects: Introduction, Class Declaration and Modifiers, Class Members, Declaration
of Class Objects, Assigning One Object to Another, Access Control for Class Members, Accessing
Private Members of Class, Constructor Methods for Class, Overloaded Constructor Methods,
Nested Classes, Final Class and Methods, Passing Arguments by Value and by Reference,
Keyword this.
UNIT 3: (9)
3
SREENIVASA INSTITUTE OF TECHNOLOGY AND MANAGEMENT STUDIES - Chittoor
AUTONOMOUS
DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING
(Accredited by NBA)
UNIT 4: (9)
Packages and Java Library: Introduction, Defining Package, Importing Packages and Classes
into Programs, Path and Class Path, Access Control, Packages in Java SE, Java.lang Package and
its Classes, Class Object, Enumeration, class Math, Wrapper Classes, Auto-boxing and Auto-
unboxing, Java util Classes and Interfaces, Formatter Class, Random Class, Time Package, Class
Instant (java.time.Instant), Formatting for Date/Time in Java, Temporal Adjusters Class, Temporal
Adjusters Class.
Java I/O and File: Java I/O API, standard I/O streams, types, Byte streams, Character streams,
Scanner class, Files in Java(Text Book 2)
UNIT 5: (9)
String Handling in Java: Introduction, Interface Char Sequence, Class String, Methods for
Extracting Characters from Strings, Comparison, Modifying, Searching; Class String Buffer.
Java Database Connectivity: Introduction, JDBC Architecture, Installing MySQL and MySQL
Connector/J, JDBC Environment Setup, Establishing JDBC Database Connections, ResultSet
Interface
Java FX GUI: Java FX Scene Builder, Java FX App Window Structure, displaying text and image,
event handling, laying out nodes in scene graph, mouse events (Text Book 3)
Total Hours: 45
COURSE OUTCOMES:
On successful completion of the course the student will be POs related to Cos
Analyse problems, design solutions using OOP principles, and
CO1 implement them efficiently in Java. (L4) PO1, PO2, PO5
4
SREENIVASA INSTITUTE OF TECHNOLOGY AND MANAGEMENT STUDIES - Chittoor
AUTONOMOUS
DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING
(Accredited by NBA)
TEXT BOOKS:
REFERENCES:
REFERENCE WEBSITE:
1) https://nptel.ac.in/courses/106/105/106105191/
2) https://infyspringboard.onwingspan.com/web/en/app/toc/lex_auth_012880
464547618816347_shared/overview
CO-PO MAPPING:
CO- PO1 PO2 PO3 PO4 PO5 PO6 PO7 PO8 PO9 PO10 PO11 PO12
PO
CO1 3 - - - 2 - - - - - - -
CO2 2 - - 3 3 - - - - - - -
CO3 3 - 3 3 3 - - - - - - -
CO4 3 - - 3 3 - - - - - - -
CO5 2 3 - 3 3 - - - - - - -
CO* 2.6 3 3 3 2.8 - - - - - - -
5
SREENIVASA INSTITUTE OF TECHNOLOGY AND MANAGEMENT STUDIES - Chittoor
AUTONOMOUS
DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING
(Accredited by NBA)
II B.TECH - I SEMESTER
List of Demo/ Experiments (Only for Skill Enhancement, Not for Exams) (15)
Sample Programs:
1. Construct an AVL tree for a given set of elements which are stored in a file. And
implement insert and delete operation on the constructed tree. Write contents of tree into
a new file using in-order.
2. Construct B-Tree an order of 5 with a set of 100 random elements stored in array.
Implement searching, insertion and deletion operations.
3. Construct Min and Max Heap using arrays, delete any element and display the content of
the Heap.
4. Implement BFT and DFT for given graph, when graph is represented by
a) Adjacency Matrix b) Adjacency Lists
5. Write a program for finding the biconnected components in a given graph.
6. Implement Quick sort and Merge sort and observe the execution time for various input
sizes (Average, Worst and Best cases).
7. Compare the performance of Single Source Shortest Paths using Greedy method when the
graph is represented by adjacency matrix and adjacency lists.
8. Implement Job Sequencing with deadlines using Greedy strategy.
9. Write a program to solve 0/1 Knapsack problem Using Dynamic Programming.
10. Implement N-Queens Problem Using Backtracking.
11. Use Backtracking strategy to solve 0/1 Knapsack problem.
12. Implement Travelling Sales Person problem using Branch and Bound approach.
COURSE OUTCOMES:
6
SREENIVASA INSTITUTE OF TECHNOLOGY AND MANAGEMENT STUDIES - Chittoor
AUTONOMOUS
DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING
(Accredited by NBA)
On successful completion of the course the student will be POs related to COs
CO1 Design and develop programs to solve real world problems with PO1, PO2
the popular algorithm design methods. (L5)
CO3 Critically assess the design choices and PO1, PO4, PO5
implementation strategies of algorithms and data
structures in complex applications. (L5)
CO4 Utilize appropriate data structures and algorithms to optimize PO1, PO5
solutions for specific computational problems.(L3)
CO5 Compare the performance of different of algorithm design PO1, PO2, PO4
strategies (L4)
REFERENCE BOOKS:
1. Fundamentals of Data Structures in C++, Horowitz Ellis, SahniSartaj, Mehta, Dinesh,
2ndEdition, Universities Press
2. Computer Algorithms/C++ Ellis Horowitz, SartajSahni, SanguthevarRajasekaran,
2ndEdition, University Press
3. Data Structures and program design in C, Robert Kruse, Pearson Education Asia
4. An introduction to Data Structures with applications, Trembley& Sorenson, McGraw Hill
REFERENCE WEBSITE:
1. http://cse01-iiith.vlabs.ac.in/
2. http://peterindia.net/Algorithms.html
CO-PO MAPPING:
CO- PO1 PO2 PO3 PO4 PO5 PO6 PO7 PO8 PO9 PO10 PO11 PO12
PO
CO1 3 3 - - - - - - - - - -
CO2 3 3 2 - - - - - - - - -
CO3 3 - - 3 2 - - - - - - -
CO4 3 - - - 2 - - - - - - -
CO5 3 3 - 3 - - - - - - - -
CO* 3 3 2 3 2 - - - - - - -
7
SREENIVASA INSTITUTE OF TECHNOLOGY AND MANAGEMENT STUDIES - Chittoor
AUTONOMOUS
DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING
(Accredited by NBA)
II B.TECH - I SEMESTER
LIST OF EXPERIMENTS:
EXERCISE – 1:
a) Write a JAVA program to display default value of all primitive data type of JAVA
b) Write a java program that display the roots of a quadratic equation ax2+bx=0. Calculate the
discriminate D and basing on value of D, describe the nature of root.
EXERCISE - 2
a) Write a JAVA program to search for an element in a given list of elements using binary search
mechanism.
b) Write a JAVA program to sort for an element in a given list of elements using bubble sort
c) Write a JAVA program using StringBuffer to delete, remove character.
EXERCISE - 3
a) Write a JAVA program to implement class mechanism. Create a class, methods and invoke
them inside main method.
b) Write a JAVA program implement method overloading.
c) Write a JAVA program to implement constructor.
d)Write a JAVA program to implement constructor overloading.
EXERCISE - 4
a) Write a JAVA program to implement Single Inheritance
b) Write a JAVA program to implement multi level Inheritance
c) Write a JAVA program for abstract class to find areas of different shapes
EXERCISE - 5
a) Write a JAVA program give example for “super” keyword.
b) Write a JAVA program to implement Interface. What kind of Inheritance can be achieved?
c) Write a JAVA program that implements Runtime polymorphism
EXERCISE - 6
a) Write a JAVA program that describes exception handling mechanism
b) Write a JAVA program Illustrating Multiple catch clauses
c) Write a JAVA program for creation of Java Built-in Exceptions
d) Write a JAVA program for creation of User Defined Exception
EXERCISE - 7
a) Write a JAVA program that creates threads by extending Thread class.First thread display
“Good Morning “every 1 sec, the second thread displays “Hello “every 2 seconds and the third
8
SREENIVASA INSTITUTE OF TECHNOLOGY AND MANAGEMENT STUDIES - Chittoor
AUTONOMOUS
DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING
(Accredited by NBA)
EXERCISE – 8
a) Write a JAVA program that import and use the user defined packages
b) Without writing any code, build a GUI that display text in label and image in an ImageView
(use JavaFX)
c) Build a Tip Calculator app using several JavaFX components and learn how to respond to user
interactions with the GUI
COURSE OUTCOMES:
On successful completion of the course the student will be POs related to COs
Demonstrate a solid understanding of Java syntax, including
data types, control structures, methods, classes, objects,
CO1 PO1, PO2, PO3, PO5
inheritance, polymorphism, and exception handling. (L2)
REFERENCE BOOKS:
1. P. J. Deitel, H. M. Deitel, “Java for Programmers”, Pearson Education, PHI, 4th Edition,
2007.
2. P. Radha Krishna, “Object Oriented Programming through Java”, Universities Press, 2nd
Edition, 2007
3. Bruce Eckel, “Thinking in Java”, Pearson Education, 4th Edition, 2006.
4. Sachin Malhotra, Saurabh Chaudhary, “Programming in Java”, Oxford University Press, 5th
Edition, 2010.
REFERENCE WEBSITE:
https://java-iitd.vlabs.ac.in/
http://peterindia.net/JavaFiles.html
9
SREENIVASA INSTITUTE OF TECHNOLOGY AND MANAGEMENT STUDIES - Chittoor
AUTONOMOUS
DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING
(Accredited by NBA)
CO-PO MAPPING:
CO-PO PO1 PO2 PO3 PO4 PO5 PO6 PO7 PO8 PO9 PO10 PO11 PO12
CO1 3 - - - - - - - - - - -
CO2 - 3 - - - - - - - - - -
CO3 - - 3 - - - - - - - - -
CO4 - - - 3 - - - - - - - -
CO5 - - - - 3 - - - - - - -
CO6 - - - - - - - 3 - - - -
CO7 - - - - - - - - 3 - - -
CO8 - - - - - - - - - 3 - -
CO9 - - - - - - - - - - - 3
CO* 3 3 3 3 3 - - 3 3 3 - 3
10
SREENIVASA INSTITUTE OF TECHNOLOGY AND MANAGEMENT STUDIES - Chittoor
AUTONOMOUS
DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING
(Accredited by NBA)
II B.TECH - I SEMESTER
PRE-REQUISITES:Nil
COURSE EDUCATIONAL OBJECTIVES:
1. Introduce core programming concepts of Python programming language.
2. Demonstrate about Python data structures like Lists, Tuples, Sets and dictionaries
3. Implement Functions, Modules and Regular Expressions in Python Programming and to
create practical and contemporary applications using these
UNTI-I:
History of Python Programming Language, Thrust Areas of Python, Installing Anaconda Python
Distribution, Installing and Using Jupyter Notebook.
Parts of Python Programming Language: Identifiers, Keywords, Statements and Expressions,
Variables, Operators, Precedence and Associativity, Data Types, Indentation, Comments, Reading
Input, Print Output, Type Conversions, the type () Function and Is Operator, Dynamic and Strongly
Typed Language.
Control Flow Statements: if statement, if-else statement, if...elif…else, Nested if statement, while
Loop, for Loop, continue and break Statements, Catching Exceptions Using try and except
Statement.
SAMPLE EXPERIMENTS:
1. Write a program to find the largest element among three Numbers.
2. Write a Program to display all prime numbers within an interval
3. Write a program to swap two numbers without using a temporary variable.
4. Demonstrate the following Operators in Python with suitable examples.
i) Arithmetic Operators ii) Relational Operators iii) Assignment Operatorsiv) Logical Operators
v) Bit wise Operators vi) Ternary Operator vii) Membership Operatorsviii) Identity
Operators
5. Write a program to add and multiply complex numbers
6. Write a program to print multiplication table of a given number.
UNIT-II:
Functions: Built-In Functions, Commonly Used Modules, Function Definition and Calling the
function, return Statement and void Function, Scope and Lifetime of Variables, Default
Parameters, Keyword Arguments, *args and **kwargs, Command Line Arguments.
Strings: Creating and Storing Strings, Basic String Operations, Accessing Characters in String by
Index Number, String Slicing and Joining, String Methods, Formatting Strings.
Lists: Creating Lists, Basic List Operations, Indexing and Slicing in Lists, Built-In Functions Used on
Lists, List Methods, del Statement.
SAMPLE EXPERIMENTS:
7. Write a program to define a function with multiple return values.
8. Write a program to define a function using default arguments.
9. Write a program to find the length of the string without using any library functions.
10. Write a program to check if the substring is present in a given string or not.
11. Write a program to perform the given operations on a list:
i. additionii. insertioniii. slicing
12. Write a program to perform any 5 built-in functions by taking any list.
UNIT-III:
Dictionaries: Creating Dictionary, Accessing and Modifying key:value Pairs in Dictionaries, Built-In
Functions Used on Dictionaries, Dictionary Methods, del Statement.
11
SREENIVASA INSTITUTE OF TECHNOLOGY AND MANAGEMENT STUDIES - Chittoor
AUTONOMOUS
DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING
(Accredited by NBA)
Tuples and Sets: Creating Tuples, Basic Tuple Operations, tuple() Function, Indexing and Slicing
in Tuples, Built-In Functions Used on Tuples, Relation between Tuples and Lists, Relation between
Tuples and Dictionaries, Using zip() Function, Sets, Set Methods, Frozenset.
Sample Experiments:
13. Write a program to create tuples (name, age, address, college) for at least two members
and concatenate the tuples and print the concatenated tuples.
14. Write a program to count the number of vowels in a string (No control flow allowed).
15. Write a program to check if a given key exists in a dictionary or not.
16. Write a program to add a new key-value pair to an existing dictionary.
17. Write a program to sum all the items in a given dictionary.
UNIT-IV:
Files: Types of Files, Creating and Reading Text Data, File Methods to Read and Write Data,
Reading and Writing Binary Files, Pickle Module, Reading and Writing CSV Files, Python os and
os.path Modules.
Object-Oriented Programming: Classes and Objects, Creating Classes in Python, Creating Objects
in Python, Constructor Method, Classes with Multiple Objects, Class Attributes Vs Data Attributes,
Encapsulation, Inheritance, Polymorphism.
SAMPLE EXPERIMENTS:
18. Write a program to sort words in a file and put them in another file. The output file should
have only lower-case words, so any upper-case words from source must be lowered.
19. Python program to print each line of a file in reverse order.
20. Python program to compute the number of characters, words and lines in a file.
21. Write a program to create, display, append, insert and reverse the order of the items in
the array.
22. Write a program to add, transpose and multiply two matrices.
23. Write a Python program to create a class that represents a shape. Include methods to
calculate its area and perimeter. Implement subclasses for different shapes like circle,
triangle, and square.
UNIT-V:
Introduction to Data Science: Functional Programming, JSON and XML in Python, NumPy with
Python, Pandas.
SAMPLE EXPERIMENTS:
24. Python program to check whether a JSON string contains complex object or not.
25. Python Program to demonstrate NumPy arrays creation using array () function.
26. Python program to demonstrate use of ndim, shape, size, dtype.
27. Python program to demonstrate basic slicing, integer and Boolean indexing.
28. Python program to find min, max, sum, cumulative sum of array
29. Create a dictionary with at least five keys and each key represent value as a list where
this list contains at least ten values and convert this dictionary as a pandas data frame
and explore the data through the data frame as follows:
a) Apply head () function to the pandas data frame
b) Perform various data selection operations on Data Frame
30. Select any two columns from the above data frame, and observe the change in one
attribute with respect to other attribute with scatter and plot operations in matplotlib
12
SREENIVASA INSTITUTE OF TECHNOLOGY AND MANAGEMENT STUDIES - Chittoor
AUTONOMOUS
DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING
(Accredited by NBA)
COURSE OUTCOMES:
On successful completion of the course the student will be POs related to COs
Showcase adept command of Python syntax, deftly utilizing PO1
variables, data types, control structures, functions, modules,
CO1 and exception handling to engineer robust and efficient code
solutions. (L4)
REFERENCE BOOKS:
1. Gowrishankar S, Veena A., Introduction to Python Programming, CRC Press.
2. Python Programming, S Sridhar, J Indumathi, V M Hariharan, 2ndEdition, Pearson, 2024
3. Introduction to Programming Using Python, Y. Daniel Liang, Pearson.
REFERENCE WEBSITE:
1. https://www.coursera.org/learn/python-for-applied-data-science-ai
2. https://www.coursera.org/learn/python?specialization=python#syllabus
CO-PO MAPPING:
CO-PO PO1 PO2 PO3 PO4 PO5 PO6 PO7 PO8 PO9 PO10 PO11 PO12
CO1 3 - - - - - - - - - - -
CO2 - 3 - - - - - - - - - -
CO3 - - 3 - - - - - - - - -
CO4 - - - 3 - - - - - - - -
CO5 - - - - 3 - - - - - - -
CO6 - - - - - - - 3 - - - -
CO7 - - - - - - - - 3 - - -
CO8 - - - - - - - - - 3 - -
CO9 - - - - - - - - - - - 3
CO* 3 3 3 3 3 - - 3 3 3 - 3
13
SREENIVASA INSTITUTE OF TECHNOLOGY AND MANAGEMENT STUDIES - Chittoor
AUTONOMOUS
DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING
(Accredited by NBA)
COMPUTER SCIENCE AND ENGINEERING
II B.TECH. - II SEMESTER
UNIT –2: PROCESSES, THREADS AND CONCURRENCY & CPU SCHEDULING (9)
Processes: Process Concept, Process scheduling, Operations on processes, Inter-process
communication.
Threads and Concurrency: Multithreading models, Thread libraries, Threading issues.
CPU Scheduling: Basic concepts, Scheduling criteria, Scheduling algorithms, Multiple processor
scheduling.
Total Hours: 45
SREENIVASA INSTITUTE OF TECHNOLOGY AND MANAGEMENT STUDIES - Chittoor
AUTONOMOUS
DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING
(Accredited by NBA)
COURSE OUTCOMES:
On successful completion of the course the student will be POs related to COs
CO1 Describe the basics of the operating systems, mechanisms of PO1, PO2
OS to handle processes, threads, and their communication.
(L1)
CO2 Understand the basic concepts and principles of operating PO1, PO3, PO4
systems, including process management, memory management,
file systems, and Protection. (L2)
Make use of process scheduling algorithms and synchronization PO1,PO2,
CO3 techniques to achieve better performance of a computer PO3,PO4,PO5
system. (L3)
CO4 Illustrate different conditions for deadlock and their possible PO1, PO2, PO4
solutions. (L2)
CO5 Analyze the memory management and its allocation policies. PO1, PO4
(L4)
TEXT BOOKS:
1. Operating System Concepts, Silberschatz A, Galvin P B, Gagne G, 10th Edition, Wiley, 2018.
2. Modern Operating Systems, Tanenbaum A S, 4th Edition, Pearson , 2016
REFERENCE BOOKS:
1. Operating Systems -Internals and Design Principles, Stallings W, 9th edition, Pearson, 2018
2. Operating Systems: A Concept Based Approach, D.M Dhamdhere, 3rd Edition, McGraw- Hill,
2013
REFERENCE WEBSITE:
1.https://nptel.ac.in/courses/106/106/106106144/
2. http://peterindia.net/OperatingSystems.html
CO-PO MAPPING:
CO- PO1 PO2 PO3 PO4 PO5 PO6 PO7 PO8 PO9 PO10 PO11 PO12
PO
CO1 3 2 - - - - - - - - - -
CO2 2 - 3 3 - - - - - - - -
CO3 2 2 3 2 3 - - - - - - -
CO4 2 2 - 3 - - - - - - - -
CO5 3 - - 2 - - - - - - - -
CO* 2.4 2 3 2.5 3 - - - - - - -
SREENIVASA INSTITUTE OF TECHNOLOGY AND MANAGEMENT STUDIES - Chittoor
AUTONOMOUS
DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING
(Accredited by NBA)
PRE-REQUISITES: Nil
COURSE EDUCATIONAL OBJECTIVES:
1. Discuss the basic Database concepts and the applications, data models and ER Model.
2. Understand the Relational database design principles
3. Master the basics of SQL and construct queries using SQL.
4. Understand the Normalization process in Database Management System.
5. Familiar with the basic issues of transaction processing and concurrency control.
TEXT BOOKS:
1. Database Management Systems, 3rd edition, Raghurama Krishnan, Johannes Gehrke,
TMH (For Chapters 2, 3, 4)
2. Database System Concepts,5th edition, Silberschatz, Korth, Sudarsan,TMH (For
Chapter 1 and Chapter 5)
REFERENCE BOOKS:
1. Introduction to Database Systems, 8thedition, C J Date, Pearson.
2. Database Management System, 6th edition, RamezElmasri, Shamkant B. Navathe,
Pearson
3. Database Principles Fundamentals of Design Implementation and
Management, Corlos Coronel, Steven Morris, Peter Robb, Cengage Learning.
REFERENCE WEBSITE:
1. https://www.w3schools.in/sql/database-concepts
2. https://www.javatpoint.com/dbms-tutorial
3. https://www.geeksforgeeks.org/introduction-of-dbms-database-management-system-
set-1/
4. https://nptel.ac.in/courses/106/105/106105175/
5. https://infyspringboard.onwingspan.com/web/en/app/toc/lex_auth_0127580666728202
2456_shared/overview
CO-PO MAPPING:
CO\PO PO1 PO2 PO3 PO4 PO5 PO6 PO7 PO8 PO9 PO10 PO11 PO12
CO.1 3 - 3 - - - - - - - - -
CO.2 3 3 - - - - - - - - - -
CO.3 3 3 3 - 3 - - - - - - -
CO.4 3 3 - - - - - - - - - -
CO.5 3 - 2 3 - - - - - - - -
CO* 3 3 2.6 3 3 - - - - - - -
SREENIVASA INSTITUTE OF TECHNOLOGY AND MANAGEMENT STUDIES - Chittoor
AUTONOMOUS
DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING
(Accredited by NBA)
COMPUTER SCIENCE AND ENGINEERING
II B.Tech. - II Semester
Software Life Cycle Models: Basic concepts, Waterfall model and its extensions, Rapid
application development, Agile development model, Spiral model.
UNIT III: SOFTWARE DESIGN & AGILITY & FUNCTION-ORIENTED SOFTWARE DESIGN &
USER INTERFACE DESIGN (9)
Software Design: Overview of the design process, How to characterize a good software design?
Layered arrangement of modules, Cohesion and Coupling. approaches to software design.
Agility: Agility and the Cost of Change, Agile Process, Extreme Programming (XP), Other Agile
Process Models, Tool Set for the Agile Process (Text Book 2)
UNIT –IV: CODING AND TESTING & SOFTWARE RELIABILITY AND QUALITY
MANAGEMENT (9)
Coding And Testing: Coding, Code review, Software documentation, Testing, Black-box testing,
White-Box testing, Debugging, Program analysis tools, Integration testing, Testing object-
oriented programs, Smoke testing, and Some general issues associated with testing.
Software Reliability And Quality Management: Software reliability. Statistical testing,
SREENIVASA INSTITUTE OF TECHNOLOGY AND MANAGEMENT STUDIES - Chittoor
AUTONOMOUS
DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING
(Accredited by NBA)
Software quality, Software quality management system, ISO 9000. SEI Capability maturity
model. Few other important quality standards, and Six Sigma.
Total Hours: 45
COURSE OUTCOMES:
On successful completion of the course the student will be POs related to COs
CO1 Identify the key activities in managing a software project and PO1, PO2
can compare different process models.
CO2 Identify software requirements and design SRS document by PO1, PO3, PO4
analyzing the data flows.
Design class based components and conduct component level PO1,PO2,
design based on architectural styles and patterns. PO3,PO4,PO5
Represent classes, responsibilities and states using UML
CO3
notation and model structural concepts of the system. Model
behavioral concepts of the system and analyze and document
the requirements through use case driven approach
CO4 Identify various types of testing and development metrics for PO1, PO2, PO4
various phases of software development.
CO5 Identify the software risks and analyze the quality assurance PO1, PO4
activities, Represent classes,responsibilities and states using
UML notation and model structural concepts of the system
TEXT BOOKS:
1. Fundamentals of Software Engineering, Rajib Mall, 5th Edition, PHI.
2. Software Engineering A practitioner’s Approach, Roger S. Pressman, 9th Edition, Mc- Graw
Hill International Edition.
REFERENCE BOOKS:
1. Software Engineering, Ian Sommerville,10th Edition, Pearson.
2. Software Engineering, Principles and Practices, Deepak Jain, Oxford University Press.
E-RESOURCES:
1) https://nptel.ac.in/courses/106/105/106105182/
2) https://infyspringboard.onwingspan.com/web/en/app/toc/lex_auth_012605895063871
48827_shared/overview
SREENIVASA INSTITUTE OF TECHNOLOGY AND MANAGEMENT STUDIES - Chittoor
AUTONOMOUS
DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING
(Accredited by NBA)
3) https://infyspringboard.onwingspan.com/web/en/app/toc/lex_auth_013382690411003
904735_shared/overview
CO-PO MAPPING:
CO- PO1 PO2 PO3 PO4 PO5 PO6 PO7 PO8 PO9 PO10 PO11 PO12
PO
CO1 3 2 - - - - - - - - - -
CO2 2 - 3 3 - - - - - - - -
CO3 2 2 3 2 3 - - - - - - -
CO4 2 2 - 3 - - - - - - - -
CO5 3 - - 2 - - - - - - - -
CO* 2.4 2 3 2.5 3 - - - - - - -
SREENIVASA INSTITUTE OF TECHNOLOGY AND MANAGEMENT STUDIES - Chittoor
AUTONOMOUS
DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING
(Accredited by NBA)
II B.TECH - II SEMESTER
SAMPLE EXPERIMENTS:
1
SREENIVASA INSTITUTE OF TECHNOLOGY AND MANAGEMENT STUDIES - Chittoor
AUTONOMOUS
DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING
(Accredited by NBA)
COURSE OUTCOMES:
On successful completion of the course the student will be POs related to COs
Trace different CPU Scheduling algorithms (L2). PO1, PO2
CO1
Implement Bankers Algorithms to Avoid the Dead Lock (L3). PO1, PO3, PO4
CO2
Evaluate Page replacement algorithms (L5). PO1,PO2,
CO3
PO3,PO4,PO5
Illustrate the file organization techniques (L4). PO1, PO2, PO4
CO4
Illustrate Inter process Communication and concurrent PO1, PO4
CO5 execution of threads (L4)
REFERENCES:
1. Operating System Concepts, Silberschatz A, Galvin P B, Gagne G, 10th Edition, Wiley, 2018.
2. Modern Operating Systems, Tanenbaum A S, 4th Edition, Pearson, 2016
3. Operating Systems -Internals and Design Principles, Stallings W, 9th edition, Pearson,
2018
4. Operating Systems: A Concept Based Approach, D.M Dhamdhere, 3rd Edition, McGraw-
Hill, 2013
REFERENCE WEBSITE:
1. https://www.cse.iitb.ac.in/~mythili/os/
2. http://peterindia.net/OperatingSystems.html
CO-PO MAPPING:
CO-PO PO1 PO2 PO3 PO4 PO5 PO6 PO7 PO8 PO9 PO10 PO11 PO12
CO1 3 - - - - - - - - - - -
. CO2 - 3 - - - - - - - - - -
CO3 - - 3 - - - - - - - - -
CO4 - - - 3 - - - - - - - -
CO5 - - - - 3 - - - - - - -
CO6 - - - - - - - 3 - - - -
CO7 - - - - - - - - 3 - - -
CO8 - - - - - - - - - 3 - -
CO9 - - - - - - - - - - - 3
CO* 3 3 3 3 3 - - 3 3 3 - 3
2
SREENIVASA INSTITUTE OF TECHNOLOGY AND MANAGEMENT STUDIES - Chittoor
AUTONOMOUS
DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING
(Accredited by NBA)
23A05402P
DATABASE MANAGEMENT SYSTEMS L T P C
LAB
(Common to CSE, CSM, CAI, CSD) 3 0 0 3
PRE-REQUISITES: Nil
EXPERIMENTS :
1. Creation, altering and droping of tables and inserting rows into a table (use constraints
while creating tables) examples using SELECT command.
2. Queries (along with sub Queries) using ANY, ALL, IN, EXISTS, NOTEXISTS, UNION,
INTERSET, Constraints. Example:- Select the roll number and name of the student who
secured fourth rank in the class.
3. Queries using Aggregate functions (COUNT, SUM, AVG, MAX and MIN), GROUP BY, HAVING
and Creation and dropping of Views.
4. Queries using Conversion functions (to_char, to_number and to_date), string functions
(Concatenation, lpad, rpad, ltrim, rtrim, lower, upper, initcap, length, substr and instr), date
functions (Sysdate, next_day, add_months, last_day, months_between, least, greatest, trunc,
round, to_char, to_date)
5. i. Create a simple PL/SQL program which includes declaration section, executable section
SREENIVASA INSTITUTE OF TECHNOLOGY AND MANAGEMENT STUDIES - Chittoor
AUTONOMOUS
DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING
(Accredited by NBA)
and exception –Handling section (Ex. Student marks can be selected from the table and
printed for those who secured first class and an exception can be raised if no records were
found)
ii. Insert data into student table and use COMMIT, ROLLBACK and SAVEPOINT in PL/SQL block.
6. Develop a program that includes the features NESTED IF, CASE and CASE expression. The
program can be extended using the NULLIF and COALESCE functions.
7. Program development using WHILE LOOPS, numeric FOR LOOPS, nested loops using
ERROR Handling, BUILT –IN Exceptions, USE defined Exceptions, RAISE1APPLICATION
ERROR.
10. Develop programs using features parameters in a CURSOR, FOR UPDATE CURSOR,
WHERE CURRENT of clause and CURSOR variables.
11. Develop Programs using BEFORE and AFTER Triggers, Row and Statement Triggers and
INSTEAD OF Triggers
12. Create a table and perform the search operation on table using indexing and non1indexing
techniques.
14. Write a Java program to connect to a database using JDBC and insert values into it
15. Write a Java program to connect to a database using JDBC and delete values from it
REFERENCE BOOKS:
3. Rick F Vander Lans, “Introduction to SQL”, Fourth Edition, Pearson Education, 2007
REFERENCE WEBSITE:
1. https://www.scoopworld.in
2. https://vlabs.iitb.ac.in/vlabs-dev/labs/dblab/index.php
COURSE OUTCOMES:
CO5 Use the procedure, function, trigger and cursor concepts in PO5
PL/SQL
CO6 Follow the ethical principles in implementing the programs PO8
CO7 Do experiments effectively as an individual and as a team PO9
member in a group.
CO8 Communicate verbally and in written form, the understanding PO10
about the experiments.
CO9 Continue updating their skill related to SQL Commands and PO12
Queries and implementing programs in future.
CO PO MAPPING:
CO-PO PO1 PO2 PO3 PO4 PO5 PO6 PO7 PO8 PO9 PO10 PO11 PO12
CO1 3 - - - - - - - - - - -
CO2 - 3 - - - - - - - - - -
CO3 - - 3 - - - - - - - - -
CO4 - - - 3 - - - - - - - -
CO5 - - - - 3 - - - - - - -
CO6 - - - - - - - 3 - - - -
CO7 - - - - - - - - 3 - - -
CO8 - - - - - - - - - 3 - -
CO9 - - - - - - - - - - - 3
CO* 3 3 3 3 3 - - 3 3 3 - 3
SREENIVASAINSTITUTEOFTECHNOLOGYANDMANAGEMENTSTUDIES
(Autonomous)
II B.Tech. - II Semester
1
SREENIVASAINSTITUTEOFTECHNOLOGYANDMANAGEMENTSTUDIES
(Autonomous)
4. SELECTOR FORMS
a. Write a program to apply different types of selector forms
● Simple selector (element, id, class, group, universal)
● Combinator selector (descendant, child, adjacent sibling, general sibling)
● Pseudo-class selector
● Pseudo-element selector
● Attribute selector
5. CSS WITH COLOR, BACKGROUND, FONT, TEXT AND CSS BOX MODEL
a. Write a program to demonstrate the various ways you can reference a color in CSS.
b. Write a CSS rule that places a background image halfway down the page, tilting it
horizontally. The image should remain in place when the user scrolls up or down.
c. Write a program using the following terms related to CSS font and text:
i. font-size ii. font-weight iii. font-style
iv. text-decoration v. text-transformation vi. text-alignment
d. Write a program, to explain the importance of CSS Box model using
i. Content ii. Border iii. Margin iv. Padding
2
SREENIVASAINSTITUTEOFTECHNOLOGYANDMANAGEMENTSTUDIES
(Autonomous)
f. Write a program to display the denomination of the amount deposited in the bank in terms of
100’s, 50’s, 20’s, 10’s, 5’s, 2’s & 1’s. (Eg: If deposited amount is Rs.163, the output should be 1-
100’s, 1-50’s, 1- 10’s, 1-2’s & 1-1’s)
TEXT BOOKS:
1. Programming the World Wide Web, 7th Edition, Robet W Sebesta, Pearson, 2013.
2. Web Programming with HTML5, CSS and JavaScript, John Dean, Jones & Bartlett
Learning, 2019 (Chapters 1-11).
3. Pro MERN Stack: Full Stack Web App Development with Mongo, Express, React, andNode,
Vasan Subramanian, 2nd edition, APress, O’Reilly.
REFERENCE BOOKS:
-Nil-
REFERENCE WEBSITE:
1. https://www.w3schools.com/html
2. https://www.w3schools.com/css
3. https://www.w3schools.com/js/
4. https://www.w3schools.com/nodejs
5. https://www.w3schools.com/typescript
3
SREENIVASAINSTITUTEOFTECHNOLOGYANDMANAGEMENTSTUDIES
(Autonomous)
COURSE OUTCOMES:
On successful completion of the course, students will be able to POs
CO2 Analyze the basic pipeline connection using different joints PO2
Design and develop simple components by using
CO3 different materials includes wood, GI sheet and MS plates PO3
CO4 Apply basic electrical engineering tools on the house wiring practice PO5
CO5 Follow the ethical principles in while doing the exercises. PO8
Do the exercises effectively as an individual and as a team member in
CO6 a group PO9
Communicate verbally among team members and in written form,
CO7 PO10
the understanding about the trade exercises.
CO PO MAPPING:
CO\PO PO1 PO2 PO3 PO4 PO5 PO6 PO7 PO8 PO9 PO10 PO11 PO12
CO1 3 - - - - - - - - - - -
CO2 - 3 - - - - - - - - - -
CO3 - - 3 - - - - - - - - -
CO4 - - - - 3 - - - - - - -
CO5 - - - - - - - 3 - - - -
CO6 - - - - - - - - 3 - - -
CO7 - - - - - - - - - 3 - -
CO8 - - - - - - - - - - - 3
CO 3 3 3 - 3 - - 3 3 3 - 3