12 Computer Science Syllabus 2017
12 Computer Science Syllabus 2017
CLASS XII
COMPUTER SCIENCE (Code No. 083)
(2017-18)
Learning Objectives:
Data File
Need for non bold for data file, types of data filetext and binary,opening and closing
filesopen( ), close( ), access modes (output, input, default), file object, access_modes, reading
and writing a file Read(), readline(), readlines(), write(), writeliness file positions (seek(),
tell()), renaming and deleting a file.,flush();
Implementation of basic file operations on text and binary file in Python:
Creating/writing data into file, reading and displaying data from file, searching for particular
data from a file, insertion and deletion of data from an already existing file, modification of
data in file.
Error and Exceptions NameError, IndexError, TypeError, IO Error, ImportError,
ValueError, EOFError.
Generator function using Yield.
Data base Concepts: Introduction to data base concepts and its need.
Relational data model: Concept of domain, tuple, relation, key, primary key, alternate key,
candidate key;
Relational algebra : Selection, Projection, Union and Cartesian product;
Structured Query Language:
General Concepts: Advantages of using SQL, Data Definition Language and Data
Manipulation Language;
Data Types: NUMBER/DECIMAL, CHARACTER/VARCHAR/VARCHAR2, DATE;
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 ( ); Obtaining results (SELECT
query) from 2 tables using equi-join, Cartesian product and Union
Note: Implementation of the above mentioned commands could be done on any SQL
supported software on one or two tables.
Introduction To Web services: WWW, Hyper Text Markup Language (HTML), Extensible
Markup Language (XML); Hyper Text Transfer Protocol (HTTP); Domain Names; URL;
Website, Web browser, Web Servers; Web Hosting, Web Scripting Client side (VB Script,
Java Script, PHP) and Server side (ASP, JSP, PHP), Web 2.0 (for social networking)
E-commerce payment transactions using online banking, mobile banking and payment apps
and services.
Note: The types of problems to be given will be of application type developed using classes
from the following topics
String
Lists/Tuples
Dictionary
File Operations
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 2-4 students as team may be allowed to work on one project.
2. Project content
2.1 Project for class XI can be selected from the topics mentioned in the syllabus or domains
on similar lines.
2.2 Project for class XII should ensure the coverage of following areas of curriculum:
a) Problem Solving
b) Object Oriented Programming in Python
c) File Handling
Theme of the project can be
2.3 The aim of the project is to highlight the abilities of algorithmic formulation, modular
programming, systematic documentation and other associated aspects of Software
Development.
2.4 The assessment would be through the project demonstration and the Project Report,
which should portray Programming Style, Structured Design, Good documentation of the
code to ensure readability and ease of maintenance.
Text File: Basic file operations on text file: Creating/Writing text into file, Reading and
Manipulation of text from an already existing text File (accessing sequentially).
Binary File: Creation of file, Writing data into file, Searching for required data from file,
Appending data to a file, Insertion of data in sorted file, Deletion of data from file,
Modification of data in a file;
Implementation of above mentioned data file handling in C++;
Components of C++ to be used with file handling:
Header file: fstream.h; ifstream, ofstream, classes;
Opening a text file in in, out, and app modes;
Using cascading operators (>><<) for writing text to the file and reading text from the file;
open (), get (), read () put (), write(), getline() and close() functions; Detecting end-of-file (with
or without using eof() function), tellg(), tellp(), seekg().seekp();
Pointers:
Introduction to Pointer, Declaration and Initialization of Pointer; Dynamic memory
allocation/deallocation operators: new, delete; Pointers and Arrays: Array of Pointers,
Pointer to an array (1 dimensional array), Function returning a pointer, Reference variables
and use of alias; Function call by reference. Pointer to structure: De-reference/Deference
operator: *, ->; self referencial structure;
Introduction to data structure- array, stack queues primitive and non-primitive data
structure, linear and non-linear structure, static and dynamic data structure.
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)
Two-dimensional arrays: Traversal Finding sum/difference of two NxM arrays containing
numeric values, Interchanging Row and Column elements in a two dimensional array;
Common to both the options. Refer to unit 3 DATABASE AND SQL mentioned in case of
Python for further details.
Common to both the options. Refer to unit 4 mentioned in case of Python for further details.
Notes: The types of problem to be given will be of application type from the following topics
Arrays (One dimensional and two dimensional, sorting, searching, merging, deletion
& insertion of elements)
Class(es) and objects
Stacks using arrays and linked implementation
Queue using arrays & linked implementation (circular aslo).
File (Binary and Text) operations (Creation, Updation, Query)
Any computational Based problems
15 SQL commands along with the output based on any table/relation:
2. Project content
2.1 Project for class XI can be selected from the topics mentioned in the syllabus or domains
on the similar lines
2.2 Project for class XII should ensure the coverage of following areas of curriculum:
a) Flow of control
b) Data Structure
c) Object Oriented Programming C++
d) Data File Handling
Theme of the project can be
2.3 It is suggested to prepare a bilingual (English and other Indian language) user manual
part of project file.
2.4 The aim of the project is to highlight the abilities of algorithmic formulation, modular
programming, optimized code preparation, systematic documentation and other associated
aspects of Software Development.