cs_syllabus(XI-XII)
cs_syllabus(XI-XII)
Class : XI - XII
“… It is unworthy of excellent men to lose hours like slaves in the labour of calculation which
could safely be regulated to anyone else if machines were used … “ said Leibnitz in the beginning of
seventeenth Century.
Farsighted vision, in-depth study accompanied by target- oriented effort of such torch
bearers have ushered in an age of computers.
Learning Objectives :
Competencies :
Class - XI (Theory)
Duration: 3 hours Total Marks : 70
Evolution of Computers; Basics of computer and its operation : Functional Components and their
inter-connections, concept of Booting, Use of Operating System for directory listing, hierarchical
directory structure, remaining, deleting files/folders, formatting floppy, copying files, concepts
of path and pathname, switching between tasks, installation/removal of applications.
Software Concepts :-
Types of Software : System Software, Utility Software and Application Software.
System Software : Operating System, Compilers, Interpreters and Assembler.
Operating System : Need for operating system, Function of Operating System (Process
Management, Memory Management, File Management and Device Management), Types of
Operating System Interactive (GUI based), Time Sharing, Real Time And Distributed ; Commonly
used Operating Systems Solaris, UNIX, LINUX, Mac OS, MS Window;
General Functionalities of an Operating System to be illustrated and implemented using any of
the above Operating Systems.
General Concepts ; Modular approach ; Clarity and Simplicity of Expressions, Use of proper
Names for identifiers, Comments, Indentation; Document and Program Maintenance; Running
and Debugging programs, syntax Errors, Run-Time Errors, Logical Errors;
Problem Solving Methodology and Techniques : Understanding of the problem, Identifying
minimum number of inputs required for output, Step by step solution for the problem, breaking
down solution into simple steps, Identification of arithmetic and logical operations required for
solution, Using Control Structure : Conditional control and looping (finite and infinite).
“Object Oriented Technology is regarded as the ultimate paradigm for the modeling of
information, be that information data or logic. The C++ has by now shown to fulfill this goal.”
Programming by Example in C++ Language :
C++ character set, C++ Tokens (Identifiers, Keywords, Constants, Operators), Structure of a C++
Program (include files, main function); Header files – iostream.h, iomanip.h; cout, cin; Use of I/O
operators (<< and >>), Use of endl and setw(), Cascading of I/O operators, Errors Messages; Use
of editor, basic commands of editor, compilation, linking and execution; standard input/output
operations from c language; gets(), puts() of stdio.h header file;
Concepts of data types; Build-in Data types: char, int, float and double; Constants: Integer
Constants, Character Constants (Backslash character constants - \n, \t), Floating Point Constants,
String Constants;
Access modifier : const; variables of built-in data types, Declaration /initialisation of variables,
Assignment statement: type modifier : signed, unsigned, long.
2
उच्च माध्यममक (XI-XII) पाठ्यक्रम - 2024
COMPUTER SCIENCE
Operators : Arithmetic operators (-, +, *, /, %), Unary operator (-), increment and Decrement
Operators (--, ++), Relational operators(>, <, >=, <=, ==, !=), Logical operators(!, &&, ||),
Conditional operator: <condition> ? <if true> : <else> ; Precedence of Operators; Expressions;
Automatic type conversion in expressions, type casting; C++ shorthand’s (+=, -=, *=, /=, %=).
Flow of Control :
Conditional statements : if-else, nested if, switch… case… default, nested switch..case, break
statement (to be used in switch… case); Loops : while, do-while, for and Nested loops;
String Functions :
Character Functions :
Mathematics Functions :
Other Functions :
Two-dimensional Array :
3
उच्च माध्यममक (XI-XII) पाठ्यक्रम - 2024
COMPUTER SCIENCE
General Guidelines : Initial Requirement, developing an interface for users (it is advised to use
text based interface screen), developing logic for playing the game and developing logic for
scoring points.
1. Memory Game : A number guessing game with application of 2 dimensional arrays
containing randomly generated number in pairs hidden inside boxes.
2. Cross’N Knots Game : A regular tic-tac-toe game.
3. Hollywood/Hangman : A word Guessing game.
4. Cows’N Bulls : A word/number Guessing game.
Number System : Binary, Octal, Decimal, Hexadecimal and conversion between two different
two different number system, Integer, Floating Point, 2’s complement of number from base-2;
Internal Storage encoding for Characters : ASCII, ISCII(Indian scripts Standard Code ofr
Information Interchange) and UNICODE, Microprocessor, Basic concepts, Clock speed(MHz,
GHz), 16 bit, 32 bit, 64 bit processors; Types – CISC, RISC; Concept of System Buses, Address Bus,
Data Bus, Concepts of Accumulator, Instruction Register and Program Counter.
Commonly used CPUs and CPU related terminologies : Intel Pentium Series, Intel Celeron, Cyrix,
AMD Series, Xeon, Intel Mobile, Mac Series; CPU Cache; Concept of heat sink and CPU fan,
Motherboard; Single, Dual and Multiple processors.
Types of Memory : Cache(L1, L2), Buffer, RAM(DRAM, SDRAM, RDRAM, DDRAM), ROM(PROM,
EPROM), Hard Disk Drive, Floppy Disk Drive, CD/DVD Drive; Access Time.
Input Output Ports / Connections : Power connector, Monitor Socket, Serial (COM) and Parallel
(LPT) port, Universal Series Bus port, PS-2 Port, SCSI port, PCI/MCI socket, Keyboard Socket,
Infrared port(IR), audio/speaker socket, Mic socket; data Bus; external storage devices
connected using I/O Ports.
Keyboards : Qwerty, Inscript, Multilingual, Dvorak.
Printers : Dot Matrix Printer, Line Printer, Deskjet/Inkjet/Bubblejet Printer, Laser Printer.
Power Supply : Switched Mode Power Supply (SMPS) : Elementary concept of Power Supply :
Voltage, Current, Power (Volt, Ampere, Watt), SMPS supplies – Motherboard.
Power Conditioning Devices : Voltage Stabilizer, Constant Voltage Transformer (CVT),
Uninterrupted Power Supply (UPS) – Online and Offline.
Note : Students should be asked to prepare a e-governance/report of an organization describing
the Computer System Configuration, Input Output Mechanism, Encoding scheme and Software
Installation.
4
उच्च माध्यममक (XI-XII) पाठ्यक्रम - 2024
COMPUTER SCIENCE
Class - XI (Practical)
Duration: 3 hours Total Marks : 30
1. Programming in C++ 10
One programming problem in C++ to be developed and tested in Computer during the
examination. Marks are allotted on the basis of following :
Logic : 5 Marks
Documentation : 2 Marks
Output Presentation : 3 Marks
2. Project Work 10
(As mentioned in general guidelines for project given at the end of the curriculum)
3. Practical File 05
Must have minimum 15 programs from the topics covered in class XI course.
4. Viva Voce 05
Viva will be asked from syllabus covered in class XI and the project developed by student.
5
उच्च माध्यममक (XI-XII) पाठ्यक्रम - 2024
COMPUTER SCIENCE
Arrays : One and two Dimensional arrays; Sequential allocation and address calculation.
One dimensional array : Traversal, Searching (Linear, Binary Search), Insertion of an element in
an array, deletion of an element from an array, Sorting (Insertion, Selection, Bubble Sort),
concatenation of two linear arrays, merging of two sorted arrays.
Two dimensional arrays : Traversal, Finding sum/ difference of two N*M arrays containing
numeric values, Interchanging Row and Column elements in two dimensional array.
Stack (Array and Linked implementation of Stack) : Operations on Stack (PUSH and POP) and its
Implementation in C++, Converting expressions from INFIX or POSTFIX notation and evaluation
of Postfix expression;
Queue (Circular Array and Linked Implementation) : Operations on Queue (Insert and Delete)
and its implementation in C++.
6
उच्च माध्यममक (XI-XII) पाठ्यक्रम - 2024
COMPUTER SCIENCE
Database Concepts : Relational data model : Concept of domain, tuple, relation, key, primary
key, alternate key, candidate key;
Structured Query Language : General Concepts : Advantages of using SQL, Data Definition
Language, Data Manipulation Language;
Data types : NUMBER, CHARACTER, DAE;
SQL Commands :
CREATE TABLE, DROP TABLE, ALTER TABLE, UPDATE….SET…., INSERT, DELETE; SELECT, DISTINCT,
FROM,WHERE, IN, BETWEEN, GROUP BY, HAVING, ORDER BY ;
SQL Functions : SUM, AVG, COUNT, MAX and MIN ;
Note : Impementation of the above mentioned commands could be done on any SQL supported
software.
Binary-valued Quantities, Boolean Variable, Boolean Constant and Boolean Operators : AND, OR,
NOT, Truth Tables; Closure Property, Commutative Law, Associative Law, Identity Law, Inverse
Law, Principle of Duality, Idempotent Law, Distributive Law, Absorption Law, Involution Law,
Demorgan’s Law and their applications;
Obtaining Sum of Product (SOP) and Product of Sum (POS) from the Truth Table, Reducing
Boolean Expression (SOP and POS) to its minimal form, Use of Karnaugh Map for minimization of
Boolean expressions (up to 4 variables);
Basic Logic Gates (NOT,AND, OR, NAND, NOR) and their use in circuits.
7
उच्च माध्यममक (XI-XII) पाठ्यक्रम - 2024
COMPUTER SCIENCE
1. Programming in C++ 10
One programming problem in C++ to be developed and tested in Computer during the
examination.
Marks are allotted on the basis of following :
Logic : 05 Marks
Documentation / Indentation : 02 Marks
Output Presentation : 03 marks
Notes : The types of problems to be given will be of application type from the following
topics.
Arrays (One dimensional and two dimensional)
Array of structure
Stack using arrays and linked implementation.
Queue using arrays (Circular) and linked implementation.
Binary File Operations (Creation, Displaying, Searching and modification).
Text-file operations (Creation, Displaying and modification).
2. SQL Commands 05
Five Query questions based on a particular Table / Reaction to be tested practically on
Computer during the examination. The command along with the result must be written in
the answer sheet.
3. Project Work 05
The project has to be developed in C++ language with Object Oriented Technology and also
should have use of Data files.
Presentation on the computer
Project report (Listing, Sample, Outputs, Documentation)
Viva
4. Practical File 05
Must have minimum 20 programs from the following topics –
Arrays (One dimensional and two dimensional, sorting, searching, merging, deletion &
insertion of elements)
Arrays of structures, Arrays of objects
Stacks using arrays and linked implementation
Queue using arrays (linear and circular) and link implementation.
File (Binary and Text) operations (Creation, Updation, Query)
Any computational based problems
15 SQL command along with the output based on any table / relation : 3 Marks
5. Viva Voce 05
Viva will be asked from syllabus covered in class-XII and the project developed by student.
8
उच्च माध्यममक (XI-XII) पाठ्यक्रम - 2024
COMPUTER SCIENCE
1. Preamble
1.1 The academic course in Computer Science includes one Project in each year. The Purpose
behind this is to consolidate the concepts and practices imparted during the course and to
serve as a record of competence.
1.2 A group of two students/ three students as team may be allowed to work on one project.
2. Project content
2.1 Project for class XI can be selected from one of the topics given in event programming (or)
2.2 Project for class XII should ensure the coverage of following areas of curriculum:
a. Problem Solving
b. Data Structure
c. Object Oriented Programming in C++
d. Data File Handling
Reference Books
Computer Organisation and Boolean Algebra
1. Rajaraman, FUNDAMENTALS OF COMPUTERS 4th Edition, Prentice Hall of Indi.
2. Peter Norton, INTRODUCTION TO COMPUTER 4th Edition, Tata McGraw Hill
3. J. Shelly & Roger Hunt, COMPUTER STUDIES, Wheeler’s Publication.
9
उच्च माध्यममक (XI-XII) पाठ्यक्रम - 2024