Download as pdf or txt
Download as pdf or txt
You are on page 1of 42

KENDRIYA VIDYALAYA SANGATHAN, KOLKATA REGION

SPLIT UP SYLLABUS (2017-18)


CLASS – XII : SUBJECT – ENGLISH CORE

NO OF
NO OF
MONTH SYLLABUS TO BE COVERED WORKING
PERIODS
DAYS
APRIL-MAY Reading Comprehension passage 5
Notice writing 2 24
Advertisement 3
Speech writing 2
The Last Lesson , My Mother At Sixty Six(Flamingo) 3+2
The Tiger King(Vistas) 3
Introduction to the novel and novelist & Novel chapter 1 & 2 4
JUNE Lost Spring (Flamingo) 4 7
Note making and Summarisation 3
JULY Deep Water, An Elementary School Classroom In A Slum , 3+3 25
The Rat trap (Flamingo) 4
The Enemy(Vista) 3
NOVEL chapters 3 to 8 5
Article writing 2
Invitations and Replies 4
AUG Keeping Quiet (Flamingo), Indigo 3+4 25
Should Wizard Hit Mommy?(Vistas) 3
Discussion Of Chapters 9 to 15 (Novel) 11
Letter of enquiry, poster making. 4
SEP A Thing of Beauty poem & (Flamingo) 3 19
Evans tries an O level (vistas) 4
Discussion Of Chapters 16 to 21(Novel) 8
Report-Writing & Factual Description. 4
OCT Going Places (flamingo), Aunt Jennifer's Tigers (Flamingo) 3+3 20
On The Face Of It (Vistas) 3
Invisible man: Discussion of Chapters 22 to 24 3
invitation-Writing & Replies 2
Letter Of Complaint, Letter of Placing Orders, Letter of Job Application 6
NOV Memories of Childhood (Vistas) 3 12
Discussion of chapters 25 to 28 (novel) 5
Recapitulation of novel and discussion of theme, plot and characters 4
DEC Revision & First Pre Board Examination 20 2O
JAN Revision & Second Pre Board Examination 13 13
FEB Revision 23 23
KENDRIYA VIDYALAYA SANGATHAN, KOLKATA REGION
SPLIT-UP SYLLABUS (2017-18)
CLASS – XII : COMPUTER SCIENCE (THEORY)

MONTH PORTION TO BE COVERED THEORY PRACTICAL


APRIL- Unit 1 Object Oriented Programming in C++ 20 20
MAY REVIEW: C++ covered In Class - XI
Object Oriented Programming: Concept of Object
Oriented Programming - Data hiding, Data encapsulation,
Class and Object, Abstract class and Concrete class,
Polymorphism(Implementation of polymorphism using
Function overloading as an example in C++);Inheritance,
Advantages of Object Oriented Programming over earlier
programming methodologies,
Function Overloading: Need for Function Overloading,
Declaration and Definition, Restrictions on Overloaded
Functions, Calling Overloaded Functions
Implementation of Object Oriented Programming
concepts in C++: Definition of a class, Member of a class -
Data Members and Member Functions (methods), Using Private
and Public visibility modes, default visibility mode (private);
Member function definition: inside class definition and outside
class definition using scope resolution operator (::); Declaration
of objects as instances of a class; accessing members from
object (s), Objects as function arguments-pass by value and pass
by reference;
Constructor and Destructor: Constructor: special
characteristics, declaration and definition of a constructor,
default constructor, overloaded constructors, copy constructor,
constructor with
default arguments;
Destructor: Special Characteristics, declaration and definition of
destructor
JUNE-JULY Inheritance (Extending Classes): Concept of Inheritances, 22 16
Base Class, Derived classes, protected visibility mode; Single
level inheritance, Multilevel inheritance and Multiple
inheritance, Privately derived, publicly derived and Protectedly
derived class, accessibility of members from objects and within
derived class (es);
Data File Handling: Need for a data file, Types of data files -
Text file and Binary file;
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();

PERIODIC TEST – I
PORTION:
1. REVIEW: C++ covered In Class – XI, Function Overloading (14)
2. Implementation of Object Oriented Programming concepts in C++ (02 + 04 = 06)
3. Constructor and Destructor (02 + 02 = 04)
4. Inheritance (06)
5. Data File Handling(10)

MAXIMUM MARKS: [ 14 + 6 + 4 + 6 + 10 = 40 Marks]


DURATION: 90 Minutes

AUG Pointers: 8 4
Introduction to Pointer, Declaration and Initialization of
Pointer;
Dynamic memoryallocation/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-referential structure;

UNIT-2 Data Structures


Introduction to data structure- array, stack queues primitive
and non-primitive data structure, linear and non-linear
22 18
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;
PERIODIC TEST – II
PORTION:
1. Data File Handling (10)
2. Pointers(10)
3. Arrays (20)

MAXIMUM MARKS: [10 + 10 + 20 = 40 Marks]


DURATION: 90 Minutes

SEP Stack (Array and Linked implementation of Stack): 20 18


Introduction to stack (LIFO_Last in First out Operations)
Operations on stack (PUSH and POP) and its Implementation in
C++, Converting expressions from INFIX to POSTFIX notation and
evaluation of Postfix expression;
Queue: (Array and Linked Implementation)
Introduction to Queue (FIFO - First in First out operations)
Operations on Queue (Insert and Delete and its
Implementation in C++, circular queue using array.

UNIT-3 DATABASES AND SQL 6 2


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;
OCT STRUCTURED QUERY LANGUAGE: 14 18
General Concepts: Advantages of using SQL, Data Definition
Language and Data Manipulation
Language;
DataTypes: 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 (SELECTquery) 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.

UNIT-4 BOOLEAN ALGEBRA

Role of Logical Operations in Computing.Binary-valued 16 0


Quantities, Boolean Variable, Boolean Constant and Boolean
Operators: AND, OR,NOT; Truth Tables; Closure Property,
Commutative Law, Associative Law, Identity law, InverseLaw,
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) form
the Truth Table, Reducing BooleanExpression (SOP and POS) to its
minimal form, Use of Karnaugh Map for minimization of
Booleanexpressions (up to 4 variables);
Application of Boolean Logic: Digital electronic circuit design using
basic Logic Gates (NOT, AND,OR, NAND, NOR)
Use of Boolean operators (NOT, AND, OR) in SQL SELECT
statements
Use of Boolean operators (AND, OR) in search engine queries.

HALF YEARLY EXAMINATION


PORTION
1. Up to Unit – 4 (Boolean Algebra)
MAXIMUM MARKS: 70
DURATION: 180 Minutes

NOV UNIT-5 COMMUNICATION TECHNOLOGIES 16 3

Evolution of Networking: ARPANET, Internet, Interspace


Different ways of sending data across the network with
reference to switching techniques (Circuit and Packet switching).

Data Communication terminologies: Concept of Channel,


Bandwidth (Hz, KHz, MHz) and Data transfer rate (bps, Kbps,
Mbps, Gbps, Tbps).

Transmission media: Twisted pair cable, coaxial cable,


optical fiber, infrared, radio link, microwave link and satellite
link.

Network devices: Modem, RJ45 connector, Ethernet Card,


Router, Switch, Gateway, wifi card.

Network Topologies and types: Bus, Star, Tree, PAN, LAN,


WAN, MAN.

Network Protocol: TCP/IP, File Transfer Protocol (FTP),


PPP, SMTP, POP3 Remote Login(Telnet), and Internet
Wireless/Mobile Communication protocol such as GSM, CDMA,
GPRS, andWLL.
Mobile Telecommunication Technologies : 1G, 2G, 3G and
4GElectronic mail protocols such as SMTP, POP3; Protocols for
Chat and Video Conferencing VOIPWireless technologies such
as Wi-Fi and WiMax

Network Security Concepts:


Threats and prevention from Viruses, Worms, Trojan horse,
Spams Use of Cookies, Protection using Firewall.India IT Act,
Cyber Law, Cyber Crimes, IPR issues, hacking.

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,javascript,PHP) and server
side(ASP,JSP,PHP),Web 2.0(for social networking)

NOV-DEC Revision and Project Completion


PRE BOARD – I (Whole Syllabus)
JAN Revision and Project Submission
PRE BOARD – II (Whole Syllabus)
FEB Revision AISSCE Practical
SPLIT-UP SYLLABUS
COMPUTER SCIENCE –PRACTICAL

MONTH PORTION TO BE COVERED PRACTICAL


APRIL-MAY Unit 1: Object Oriented Programming in C++ 20
Class Creation and object implementation in C++
Constructor and Destructor

JUNE-JULY Inheritance 16
Data File Handling: Text File, Binary File
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 (withor without using eof() function), tellg(),
tellp(), seekg().seekp();

AUG Pointers: 4
Introduction to Pointer, Declaration and Initialization of
Pointer;
Dynamic memoryallocation/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-referential structure;

UNIT-2 Data Structures

Arrays
One dimensional array: Traversal, Searching (Linear, Binary Search),
18
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;
SEP Stack (Array and Linked implementation of Stack): 20
Operations on stack (PUSH and POP) and its Implementation in C++,
Converting expressions from INFIX to POSTFIX notation and
evaluation of Postfix expression;
Queue: (Array and Linked Implementation)
Operations on Queue (Insert and Delete and its Implementation in
C++,
circular queue using array.

OCT STRUCTURED QUERY LANGUAGE: 18


General Concepts: Advantages of using SQL, Data Definition
Language and Data Manipulation
Language;
DataTypes: 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 (SELECTquery) 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.

Use of Boolean operators (NOT, AND, OR) in SQL SELECT statements


Use of Boolean operators (AND, OR) in search engine queries.
NOV UNIT-5 COMMUNICATION TECHNOLOGIES 3

Network devices: Modem, RJ45 connector, Ethernet Card, Router,


Switch, Gateway, wifi card.

Network Topologies and types: Bus, Star, Tree, PAN, LAN, WAN,
MAN.

Showing and setting up LAN Architecture and Client Server


Architecture.

Mobile Telecommunication Technologies :Email and other


communication technologies such as Chatting and Video
Conferencing using VOIPWireless technologies such as Wi-Fi and
WiMax

Network Security Concepts:


Threats and prevention from Viruses, Worms, Trojan horse, Spams
Use of Cookies, Protection using Firewall.India IT Act, Cyber Law,
Cyber Crimes, IPR issues, hacking.

Introduction To Web services: Hyper Text Markup Language


(HTML), Extensible Markup Language (XML); 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)

NOV-DEC Revision and Project Completion


JAN Revision and Project Submission
FEB Revision AISSCE Practical
KENDRIYA VIDYALAYA SANGATHAN (KOLKATA REGION)

SPLIT UP SYLLABUS ( 2017-18)

CLASS XII –MATHEMATICS

NO.OF PERIODICAL TESTS, PRE


MONTHS CHAPTERS/TOPICS
PERIODS BOARDS AND SYLLABUS

APRIL TO 1. Relations and Functions: Types of relations: reflexive, 36


JUNE symmetric, transitive and equivalence relations. One to one and
2017 onto functions, composite functions, inverse of a function.
Binary operations.
2. Inverse Trigonometric Functions : Definition, range, domain,
principal value branch. Graphs of inverse trigonometric
functions. Elementary properties of inverse trigonometric
functions.
3. Matrices: Concept, notation, order, equality, types of
matrices, zero and identity matrix, transpose of a matrix,
symmetric and skew symmetric matrices. Operation on
matrices: Addition and multiplication and multiplication with a
scalar. Simple properties of addition, multiplication and scalar
multiplication. Noncommutativity of multiplication of matrices
and existence of non-zero matrices whose product is the zero
matrix (restrict to square matrices of order 2).Concept of
elementary row and column operations. Invertible matrices and
proof of the uniqueness of inverse, if it exists; (Here all matrices
will have real entries).

JULY 1. Determinants: Determinant of a square matrix (up to 3 x 3 36


2017 matrices), properties of determinants, minors, co-factors and
applications of determinants in finding the area of a triangle.
Adjoint and inverse of a square matrix. Consistency,
inconsistency and number of solutions of system of linear
equations by examples, solving system of linear equations in
two or three variables (having unique solution) using inverse of
a matrix.
2. Continuity and Differentiability: Continuity and PERIODICAL TEST 1:
differentiability, derivative of composite functions, chain rule, EXP. DATE : 17TH JULY TO
derivatives of inverse trigonometric functions, derivative of 26TH JULY,2017
implicit functions. Concept of exponential and logarithmic Syllabus:
functions. Derivatives of logarithmic and exponential functions. Relation and function,
Logarithmic differentiation, derivative of functions expressed in Inverse trigonometric
parametric forms. Second order derivatives. Rolle's and function and Matrices and
Lagrange's Mean Value Theorems (without proof) and their determinant.
geometric interpretation.
3. Applications of Derivatives: Applications of derivatives: rate
of change of bodies, increasing/decreasing functions.

AUGUST 1. Applications of Derivatives (Conti..): Tangents and normals, 33


2017 use of derivatives in approximation, maxima and minima (first
derivative test motivated geometrically and second derivative
test given as a provable tool). Simple problems (that illustrate
basic principles and understanding of the subject as well as real-
life situations). PERIODICAL TEST 2:
2. Integrals: Integration as inverse process of differentiation. EXP. DATE : 18TH AUGUST
Integration of a variety of functions by substitution, by partial TO 26TH AUGUST,2017
fractions and by parts. Evaluation of simple integrals of special Syllabus:
types and problems based on them. Continuity and
dx dx differentiability,
 ax 2
 bx  c
,  ax  bx  c
2
,∫
√ Application of derivatives.

SEPTEMBER 1. Integrals(conti…) 27
2017 ∫√ dx , ∫ √ dx etc.
2. Definite integrals as a limit of a sum, Fundamental Theorem
of Calculus (without proof).Basic properties of definite integrals
and evaluation of definite integrals.
3. Applications of the Integrals : Applications in finding the
area under simple curves, especially lines,
circles/parabolas/ellipses (in standard form only), Area between
any of the two above said curves (the region should be clearly
identifiable).
4. Differential Equations : Definition, order and degree, general
and particular solutions of a differential equation. Formation of
differential equation whose general solution is given. Solution of
differential equations by method of separation of variables

OCTOBER Differential Equations(conti…): Solutions of homogeneous 28


2017 differential equations of first order and first degree. Solutions of
linear differential equation.
1. Vectors and Three-Dimensional Geometry :
Vectors : Vectors and scalars, magnitude and direction of a
vector. Direction cosines and direction ratios of a vector. Types
of vectors (equal, unit, zero, parallel and collinear vectors),
position vector of a point, negative of a vector, components of a
vector, addition of vectors, multiplication of a vector by a scalar,
position vector of a point dividing a line segment in a given
ratio. Definition, Geometrical Interpretation, properties and
application of scalar (dot) product of vectors, vector (cross)
product of vectors, scalar triple product of vectors. HALF YEARLY EXAM:
2. Three - dimensional Geometry: Direction cosines and EXP. DATE : 20TH
direction ratios of a line joining two points. Cartesian equation OCTOBER TO 31ST
and vector equation of a line, coplanar and skew lines, shortest OCTOBER,2017
distance between two lines. Cartesian and vector equation of a Syllabus:
plane. Angle between (i) two lines, (ii) two planes, (iii) a line and Up to Differential
a plane. Distance of a point from a plane. Equation and Vector.

NOVEMBER Linear Programming : Introduction, related terminology such as 36


2017 constraints, objective function, optimization, different types of
linear programming (L.P.) problems, mathematical formulation
of L.P. problems, graphical method of solution for problems in
two variables, feasible and infeasible regions(bounded or
unbounded), feasible and infeasible solutions, optimal feasible
solutions (up to three non-trivial constraints).
Probability : Conditional probability, multiplication theorem on
probability, independent events, total probability, Bayes’ Class test on 3-D, LPP and
theorem, Random variable and its probability distribution, mean PROBABILITY after the
and variance of random variable. Repeated independent completion of syllabus.
(Bernoulli) trials and Binomial distribution.

REVISION
FIRST PRE BOARD:
DECEMBER REVISION ON WHOLE SYLLABUS
2017 EXP. DATE OF COMMENCEMENT: 4TH
DECEMBER , 2017
SECOND PRE BOARD:
JANUUARY REVISION ON WHOLE SYLLABUS
2017 EXP. DATE OF COMMENCEMENT: 8TH
JANUARY, 2018
THIRD PRE BOARD:
FEBRUARY REVISION ON WHOLE SYLLABUS
2017
Kendriya Vidyalaya Sangthan, Kolkata Region
SPLIT UP SYLLABUS: SUBJECT –CHEMISTRY Class XII (2017-18)

Total Topic/Chapter Topic of Practical


Month periods
April - May 10 1. Solid state Qualitative analysis
10 2. Solutions Electrochemistry
12 3. Electrochemistry Thermochemistry

June -July 10 4 Chemical Kinetics Qualitative analysis (contd)


08 5. Surface chemistry Surface chemistry
08 6. General Principles and Process of Chemical kinetics
Isolation of Elements Chromatography
12 7. p-Block Elements
August p-Block Elements (Contd.) Volumetric Analysis
12 8. d and f-Block Elements Preparation of inorganic
12 9. Coordination Compounds compound

September 10 10. Haloalkanes and Haloarenes Detection of functional groups


10 11. Alcohols, Phenols and Ethers Preparation of organic
compounds
October 10 12. Aldehydes, Ketones and carboxylic
acids Investigatory project
10 13. Organic Compounds containing
Nitrogen
November 12 14. Biomolecules Test for carbohydrates, fats and
08 15. Polymers Proteins.
06 16. Chemistry in Everyday Life
December Revision Revision
1st Pre Board Examination
January Revision & 2nd Pre Board Examination
February AISSCE Practical Examination
March AISSCE Examination(Theory)

Evaluation Scheme for Practical Examination for Class XII (2017-18)

Sl. No. Experiment Marks


1 Volumetric analysis 8
2 Salt Analysis 8
3 Content Based Experiment 6
4 Project Work 4
5 Class Record and Viva 4
Total 30
Kendriya Vidyalaya Sangthan, Kolkata Region

Details of Periodic tests & Examinations for Class XII (2017-18)

Name of test / Tentative dates Sl Syllabus Marks Total


examination No Division Marks
1. Solid state 07
17.07.2017 2. Solutions 09
1st Periodic test to 3. Electrochemistry 09 40
26.07.2017 4. Chemical Kinetics 09
5. Surface chemistry 06

1 General Principles and Process of 07


18.08.2017
Isolation of Elements 40
2nd Periodic Test to
2 p-Block Elements 18
26.08.2017
3 d and f-Block Elements 15

20.10.2017
Half Yearly Up to
to 70 70
Examination Aldehydes, Ketones and Carboxylic acids
31.10.2017

1 Solid state
2 Solutions
3 Electrochemistry 23
4 Chemical Kinetics
5 Surface chemistry
6 General Principles and Process of
Isolation of Elements
1st Pre Board 04.12.2017
7 p-Block Elements 19
Examination / to 70
8 d and f-Block Elements
18.12.2017 /
9 Coordination Compounds
10 Haloalkanes and Haloarenes
2nd Pre Board 11.01.2018
11 Alcohols, Phenols and Ethers
Examination to
24.01.2018 12 Aldehydes, Ketones and carboxylic
acids
13 Organic Compounds containing 28
Nitrogen
14 Biomolecules
15 Polymers
16 Chemistry in Everyday Life
KENDRIYA VIDYALAYA SANGATHAN, KOLKATA REGION
SPLIT - UP SYLLABUS (2017-2018)
CLASS –XII SUBJECT - PHYSICS (THEORY& PRACTICAL)
W. EXAM
MONTH UNIT &CHAPTER MARKS PRACTICAL
Day (UNIT)

APRIL 1.ELECTRO STATICS 1. To determine resistance per cm of a given wire by plotting a graph for potential
2017 23 2.CURRENT ELECTRICITY difference versus current.
15
MAY CONT… 2.To find resistance of a given wire using metre bridge and hence determine the
2
2017 2. CURRENT ELECTRICITY resistivity (specific resistance) of its material

JUNE CONT… 3. To verify the laws of combination (series) of resistances using a metre bridge.
7
2017 2. CURRENT ELECTRICITY 4. To verify the laws of combination (parallel) of resistances using a metre bridge
3.MAGNETIC EFFECT OF CURREN 16 5. To compare the EMF of two given primary cells using potentiometer. PERIODIC TEST -1
JULY & MAGNETISM 6. To determine the internal resistance of given primary cell using potentiometer. F.M -40
25 TH TH
2017 4.ELECTRO MAGNETIC 7. To determine resistance of a galvanometer by half-deflection method and to find its [17 TO 26 JULY]
INDUCTION figure of merit. UNIT 1 TO 3
8. To find the value of v for different values of u in case of a concave mirror and to find
the focal length. PERIODIC TEST -2
4. ALTERNATING CURRENT
AUG 9. To find the focal length of a convex mirror, using a convex lens. F.M -40
2017
25 5.EMWAVE 17 10. To find the focal length of a convex lens by plotting graphs between u and v or
TH TH
[18 TO 26 AUG]
6.OPTICS [RAY OPTICS] UNIT 4 & 5
between 1/u and 1/v.
11. To find the focal length of a concave lens, using a convex lens.
12. To determine angle of minimum deviation for a given prism by plotting a graph
6. WAVE OPTICS
SEPT between angle of incidence and angle of deviation.
2017
19 7.DUAL NATURE OF MATTER & 10 13. To determine refractive index of a glass slab using a travelling microscope.
RADIATION
14. To find refractive index of a liquid by using convex lens and plane mirror.
15. To draw the I-V characteristic curve for a p-n junction in forward bias and reverse HALF YEARLY
EXAMINATION
OCT 8.ATOM &NUCLEI bias.
20 F.M -70
2017 9.ELECTRONICS 16. To draw the characteristic curve of a zener diode and to determine its reverse break TH ST
[20 TO 31 OCT]
12 down voltage. UP TO UNIT 8
NOV 10. COMMUNICATION SYSTEM
24
2017 REVISION.........
DEC ST TH
2017 1 PRE BOARD EXAM [FULL SYLLABUS ] 4 DEC., 2017 ONWARD

JAN
ND TH
2018 2 PRE BOARD EXAM [FULL SYLLABUS] 11 JAN., 2018 ONWARD
NOTE:
1. ABOVE EXPERMENTS ARE FOR REFERENCE ONLY, TEACHER MAY CHOOSE ALTEAST 15 EXPERIMENTS [WITH A MINIMUM OF 6 FROM EACH
SECTION] WHISH HAS TO BE PERFORMED BY STUDENTS & AT LEAST 5 ACTIVITIES [WITH A MINIMUM OF 2 EACH FROM SECTION A AND
SECTION B], SHOULD BE DEMONSTRATED BY TEACHER SIMULTANEUOSLY WITH EXPERIMENTS SUBJECT TO AVAILABILITY OF INSTRUMENTS IN
THEIR RESPECTIVE LABS.
2. TEACHER MUST ENSURE THAT ONE INVESTIGATORY PROJECT MUST BE SUBMITTED BY STUDENT BEFORE 30 TH NOV 2017
3. PRACTICAL RECORD COPY MUST BE SUBMITTED BY STUDENT WITHIN ONE WEEK OF COMPLETION OF THE EXPERIMENT& ACTIVITY

EXAMINATION PATTERN (CLASS-XII)

HALF YEARLY / PRE-BOARD &


EXAM PERIODIC TEST PRACTICAL EXAMINATION AISSCE
AISSCE

DURATION 90 MIN 3 HRS 3HRS

PATTERN OF 3X1=03 (NO OPTION) 5X1=05 (NO OPTION) 1)TWO EXPERIMENTS(ONE FROM EACH SECTION)= 2X8 =16
QUESTIONS
2X2=04 (ONE OPTION) 5X2=10 (ONE OPTION) 2) RECORD (EXPT+ACTIVITY) =06

8X3=24 (ONE OPTION) 12X3=36 (ONE OPTION) 3) INVESTIGATORY PROJECT =03

1X4=04 (VALUE BASED) 1X4=04 (VALUE BASED) 4)VIVA =05

1X5=05 (OPTION IN ALL) 3X5=15 (OPTION IN ALL)

MARKS 40 MARKS (18 QUESTIONS) 70 MARKS(26 QUESTIONS) (30 MARKS)


KENDRIYA VIDYALAYA SANGATHAN, KOLKATA REGION
SPLIT UP SYLLABUS (2017-18)
CLASS – XII : BIOLOGY (044)

NO.OF
PERIODS
SL. WORKING
CHAPTER NO. DETAILED SPLIT UP FOR
NO. DAYS &
TEACHING
MONTH

1. April & May Reproduction Chapter-1: Reproduction in Organisms


(22+4) (Unit-VI) Reproduction, a characteristic feature of all organisms for continuation of species; modes of
Chapter - reproduction - asexual and sexual reproduction; asexual reproduction - binary fission, 30
1,2,3,4 sporulation, budding, gemmule formation, fragmentation; vegetative propagation in plants.

Chapter-2: Sexual Reproduction in Flowering Plants


Flower structure; development of male and female gametophytes; pollination - types, agencies
and examples; outbreeding devices; pollen-pistil interaction; double fertilization; post
fertilization events - development of endosperm and embryo, development of seed and
formation of fruit; special modes-apomixis, parthenocarpy, polyembryony; Significance of seed
dispersal and fruit formation.

Chapter-3: Human Reproduction


Male and female reproductive systems; microscopic anatomy of testis and ovary;
gametogenesis - spermatogenesis and oogenesis; menstrual cycle; fertilisation, embryo
development upto blastocyst formation, implantation; pregnancy and placenta formation
(elementary idea); parturition (elementary idea); lactation (elementary idea).

Chapter-4: Reproductive Health


Need for reproductive health and prevention of Sexually Transmitted Diseases (STDs); birth-
control - need and methods, contraception and medical termination of pregnancy (MTP);
amniocentesis; infertility and assisted reproductive technologies - IVF, ZIFT, GIFT (elementary
idea for general awareness).

1
Practical-
A.1 Study of pollen germination on a slide
A.9 Isolation of DNA from available plant material
B.5 Study and identify stages of gametic development i.e T.S. of Testis and T.S. of ovary from
permanent slides.
B.1 Study of flowers adapted to pollination by different agencies

2. June & July Genetics and Chapter-5: Principles of Inheritance and Variation
(8+25) Evolution Heredity and variation: Mendelian inheritance; deviations from Mendelism–
(Unit-VII) incompletedominance, co-dominance, multiple alleles and inheritance of blood groups,
Chapter – pleiotropy; elementary idea of polygenic inheritance; chromosome theory of inheritance;
5, 6, 7 chromosomes andgenes; Sex determination - in humans, birds and honey bee; linkage and
crossing over; sex linked inheritance –haemophilia, colour blindness; Mendelian disorders in
humans - thalassemia; chromosomal disorders in humans; Down's syndrome, Turner's and
Klinefelter's syndromes.
37
Chapter-6: Molecular Basis of Inheritance
Search for genetic material and DNA as genetic material; Structure of DNA and RNA;
DNApackaging; DNA replication; Central dogma; transcription, genetic code, translation;
geneexpression and regulation - lac operon; genome and human and rice genome projects; DNA
fingerprinting.

Chapter-7: Evolution
Origin of life; biological evolution and evidences for biological evolution (paleontology,
comparative anatomy, embryology and molecular evidences); Darwin's contribution, modern
synthetic theory of evolution; mechanism of evolution - variation (mutation and
recombination)and natural selection with examples, types of natural selection; Gene flow and
genetic drift; Hardy - Weinberg's principle; adaptive radiation; human evolution.

Practical-
B5. Study of T.S. of Blastula through permanent slide

2
B4. Study of meiosis from prepared slides
B7. Study of pedigree from prepared charts

3. August (26) Biology and Chapter-8: Human Health and Diseases


Human Pathogens; parasites causing human diseases (malaria, dengue, chickengunia, filariasis,
welfare ascariasis, typhoid, pneumonia, common cold, amoebiasis, ring worm) and their control; Basic
(Unit-VIII) concepts of immunology - vaccines; cancer, HIV and AIDS; Adolescence - drug and alcohol 30
Chapter – abuse.
8, 9, 10
Chapter-9: Strategies for Enhancement in Food Production
Improvement in food production: Plant breeding, tissue culture, single cell protein,
Biofortification, Apiculture and Animal husbandry.

Chapter-10: Microbes in Human Welfare


In household food processing, industrial production, sewage treatment, energy generation
andmicrobes as biocontrol agents and biofertilizers. Antibiotics; production and judicious use

Practical-
B8. Exercise on controlled pollination- emasculation, tagging etc.
B9. To identify common diseases
A8. Study the effect of different temperatures and three different pH on the activity of
salivary amylase on starch

4. September Biotechnology Chapter-11: Biotechnology - Principles and processes Genetic Engineering (Recombinant DNA
(19) (Unit-IX) Technology).
Chapter- 23
11, 12 Chapter-12: Biotechnology and its Application
Application of biotechnology in health and agriculture: Human insulin and vaccine production,
stem cell technology, gene therapy; genetically modified organisms - Bt crops; transgenic
animals; biosafety issues, bio piracy and patent.

3
Practical-
B10&11. Study and comment on Xerophytic and aquatic plants and animals
A3. Study of pH , clarity and presence of any living organism in water sample
A7. Prepare a temporary mount of onion root tip to study mitosis.

5. October Ecology Chapter-13: Organisms and Populations


& (Unit-X) Organisms and environment: Habitat and niche, population and ecological adaptations;
November Chapter- population interactions - mutualism, competition, predation, parasitism; population attributes - 33
(20+24) 13-16 growth, birth rate and death rate, age distribution.

Chapter-14: Ecosystem
Ecosystems: Patterns, components; productivity and decomposition; energy flow; pyramids of
number, biomass, energy; nutrient cycles (carbon and phosphorous); ecological succession;
ecological services - carbon fixation, pollination, seed dispersal, oxygen release (in brief).

Chapter-15: Biodiversity and its Conservation


Concept of biodiversity; patterns of biodiversity; importance of biodiversity; loss of biodiversity;
biodiversity conservation; hotspots, endangered organisms, extinction, Red Data Book,
biosphere reserves, national parks, sanctuaries and Ramsar sites.

Chapter-16: Environmental Issues


Air pollution and its control; water pollution and its control; agrochemicals and their effects;
solid waste management; radioactive waste management; greenhouse effect and climate
change; ozone layer depletion; deforestation; any one case study as success story addressing
environmental issues.

Practicals-
A2. Collect and study soil, texture, moisture etc. Study pH and water holding capacity of
different soil samples
A4. Study presence of suspended particulate matter in air
A5&6. Population density and population frequency by quadrent method.

4
SYLLABUS FOR TEST / EXAMINATION 2017-18

CLASS - XII , SUBJECT - BIOLOGY


TEST /EXAM SCHEDULE(Tentative) CHAPTERS TOTAL MARKS

Periodical Test-1
1,2,3,4,5
3rd - 4th week of July, 2017 40
(as per NCERT book)
17 – 26 July, 2017

Periodical Test-2
6,7,8,9
3rd - 4th week of August, 2017 40
(as per NCERT book)
18 – 26 August, 2017

Half Yearly Examination


1 to 12
4th- 5th week of October, 2017 70 (Theory)
(as per NCERT book)
20 – 31 October, 2017

First Pre-Board
All the Chapters as per
1st Week of December, 2017 70 (Theory)
CBSE guidelines
4 – 18 December, 2017

Second Pre-Board
All the Chapters as per
2nd Week of January,2018 70 (Theory)
CBSE guidelines
11 – 24 January, 2018

5
KENDRIYA VIDYALAYA SANGATHAN, KOLKATA REGION
SPLIT - UP SYLLABUS (2017-18)
CLASS – XII : SUBJECT – ACCOUNTANCY

Working Period Marks


Month Unit and Chapter
days allotted

PART A : Accounting for Partnership Firms and Companies

UNIT-I : Accounting for partnership firms


April 22
Meaning, features, method of capital ,P&L Appropriation, Past
Adjustments, guarantee of profit.
May 02 Valuation of goodwill

June 07 Reconstitution of Partnership:-Change in profit sharing ratio


90 35
July 25 Admission & Retirement of partner
Death of the partner & Dissolution of Partnership Firm

August 25 UNIT-II : Accounting for Companies


Accounting for Companies: Accounting for share capital (before
Pro rata allotment)
60 25
Accounting for Companies: Accounting for share capital (prorata
September 19 allotment /forfeiture/reissue/ESOP)
Accounting for issue & Redemption of Debenture
PART B : Financial Statement Analysis
UNIT-III : Analysis of financial statement
Financial Statement of a Company
October 20 30 12
Financial Statement analysis and tool for financial statement
Analysis. Accounting ratios.

UNIT-IV : Cash flow statement


November 24 20 08
And Revision

December 19 1ST PRE BOARD (WHOLE SYLLABUS) FROM 2nd WEEK OF DEC
---- 80
January 23 2ND PRE BOARD (WHOLE SYLLABUS) FROM 2nd WEEK OF JAN

Project as per CBSE guidelines 40 20

Total 240 100


** Working days are tentative only
SYLLABUS FOR PERIODIC TEST I to III and Pre Board Examination
EXAM CLASS-XII
Subject- Accountancy

Weightage Tentative date


Sl. No. Name of Exam Topic to be covered
of marks of exam
1. Accounting for Partnership firm
–Fundamental (P&L
13 marks
Appropriation, Past Adjustments,
etc)
1st PERIODIC TEST
2. Goodwill Valuation 06 marks 3rd Week of
1 (40 marks)
July, 2017
3. Change in Profit sharing Ratio (17-26 July)
06 marks
4. Reconstitution of Partnership:
Admission &Retirement of partner 15 marks
1.Reconstitution of Partnership:-
8 marks
Death of partner
3rd week of
2nd PERIODIC TEST 2.Dissolution of firm 12 marks August, 2017
2
(40 Marks) (18 -26 Aug)
3.Company Accounts:-Issue of
Share(Before prorata allotment) 20 marks

Up to
Half Yearly Analysis of financial
Last Week of
Examination Statement(Financial Statement of 80 marks
3 October, 2017
(80 Marks) Companies and Financial
(20-31 Oct)
Statement analysis and tool for
financial statement Analysis)
2nd Week of
1st PRE BOARD As per CBSE
4 Full syllabus as per CBSE guidelines December, 17
(80 marks) Pattern
(04 -18 Dec)

2nd Week of
2nd PRE BOARD As per CBSE
5 Full Syllabus as per CBSE guidelines January, 2018
(80 marks) Pattern
(11-24 Jan)
KENDRIYA VIDAYALAYA SANGATHAN, KOLKATA REGION
SPLIT-UP SYLLABUS-2017-18
CLASS –XII : SUBJECT- BUSINESS STUDIES

SL. WORKING PERIODS MARKS


MONTH CHAPTERS TO BE COVERED
No. DAYS** REQUIRED ALLOTED

1. Nature and Significance of


1 April and 14
24 Management.
May 14
2. Principles of Management 16

2 June 07 3. Business Environment


12
4. Planning 14
3 July 25 14
5. Organizing 18
6. Staffing 16
4 August 25
7. Directing 18
20
8. Controlling 14
5 September 19
9. Financial Management 22
10. Financial Markets 20 15
6 October 20
11. Marketing Management 32
Marketing Management
7 November 24 Continued….
16
12. Consumer Protection 15
st
Revision and 1 Pre Board Exam
8 December 18 ----
and Project Work

CBSE PROJECT WORK 30 20

January to CBSE Practical and Revision and


9 ----- 2nd Pre Board Total 100
February
** Working days are tentative
SYLLABUS FOR TEST / EXAMINATION (CLASS-XII )

SUBJECT – BUSINESS STUDIES

Sl. WEIGHTAGE OF TENTATIVE DATE


NAME OF EXAM TOPICS TO BE COVERED
No. MARKS OF EXAM
1. Nature and Significance of
15 Marks
Management. 3rd week of July,
PERIODIC TEST-I
1 2 .Principles of Management 15 Marks 2017
(40 Marks)
(17 to 25 July, 2017)
3.Business Environment 10 Marks
4. Planning 10 Marks
3rd week of August,
PERIODIC TEST-II
2 5 .Organizing 15 Marks (18 to 26 Aug,
(40 Marks)
2017)
6.Staffing 15 Marks
3
HALF YEARLY Unit 1 to Unit 9 of Last week of
EXAMINATION NCERT Text Book 80 Marks October, 2017
(80 Marks) (Up to Financial Management) (20 to 31 Oct, 2017)

2nd Week Of
Full Syllabus as per CBSE As Per CBSE
4 1st PRE BOARD December, 2017
guidelines Pattern
(4 to 18 Dec, 2017)
2nd Week Of
Full Syllabus as per CBSE As Per CBSE
5 2nd PRE BOARD January, 2017
Guidelines Pattern
(11 to 24 Jan 2018)

Note:- Syllabus for Class-XII to be completed by 15th of NOVEMBER 2017.


Kendriya Vidyalaya Sangathan, Kolkata Region
Curriculum & Split-up Syllabus for Class XII
Informatics Practices

Num of Periods
Month(s) Topics to be Covered
Theory Practical
April – May Unit 1: Networking and Open Standards : 20 4
2017
Computer Networking :

 Networking: a brief overview,


 Communication Media: Wired Technologies – Co-Axial,
Ethernet Cable, Optical Fiber; Wireless Technologies – Blue
Tooth, Infrared, Microwave, Radio Link, Satellite Link;
 Network Devices: Modem, Hub, Switch, Repeater, Gateway –
and their functions
 Types of network: LAN, MAN, WAN, PAN;
 Network Topologies: Star, Bus, Tree
 Network Protocols: HTTP, TCP/IP, PPP, Remote access
software such as Team Viewer;
 Identifying computers and users over a network: Basic
concept of domain name, MAC (Media Access Control), and
IP Address, domain name resolution
 Network Security Concepts: Cyber Law, Firewall, Cookies,
Hackers and Crackers
 Network security threats: Denial of service, Intrusion
problems, Snooping, Eavesdropping
 Internet Applications: SMS, Voice Mail, Electronic Mail, Chat,
Video Conferencing
 Wireless/Mobile Communication: GSM, CDMA, WLL, 3G, 4G

Open Source Concepts:

 Open Source Software (OSS), common FOSS/FLOSS examples


(GNU/Linux, Firefox,OpenOffice, Java, Netbeans, MySQL).
Common open standards (HTML, XML, ODF, TCP/IP,CSS)
 Indian Language Computing: Character encoding, UNICODE,
different types of fonts (opentype vs true type, static vs
dynamic), Entering Indian Language Text – phonetic and key
mapbased, Inscript.
Summer Vacation : 03/05/2017 to 21/06/2017

June - July, Unit 2: Programming : 26 22


2017
Review of Class XI

Programming Fundamentals :
(Refer to Appendix A for Swing Control Methods &Properties, and
Appendix B for sampleguidelines of GUI Programming)
[Periodic Test 1]
 Basic concept of Class, Object, Inheritance and
Polymorphism
 Commonly used libraries:
 String class and methods: toString(), concat(),
length(), toLowerCase(), toUpperCase(), trim(),
subString()
 Math class methods: pow(), round()

Periodic Test 1 (Expected Date 17th July to 26th July 2017)


Tentative Syllabus & Marks Distribution for Periodic Test 1 :
Max. Marks : 40
Duration 90 mins.
1) Computer Networking : 12 marks
2) Open Source Concepts : 08 marks
3) Review of Class XI :10 marks
4) Programming Fundamentals (upto GUI Programming) : 10
marks

August 2017 Unit 2: Programming : 20 22

Programming Fundamentals : (Contd…)

 Accessing MySQL database using JDBC to connect with


database.
 Web application development: URL, Web server,
Communicating with the web server, concept of Client and
Server Side
 HTML based web pages covering basic tags – <HTML>,
<TITLE>, <BODY>, <H1><H6>, <B>,<I>,<U>, <CENTER>,
<COMMENT>, <IMG>, ANCHOR <A>, Paragraph <P>, Line
Break <BR>, Horizontal Rule <HR>, <FONT>, <TABLE>,
<LIST><UL>, <OL>, <FORM>
[Periodic Test 2]

 Creating and accessing static pages using HTML and


introduction to XML

Periodic Test 2 (Expected Date 18th Aug to 26thAug 2017)


Tentative Syllabus & Marks Distribution for Periodic Test 2 :
Max. Marks : 40
Duration 90 mins.
1) Review of Class XI : 10 marks
2) Programming Fundamentals (uptoHTML based web pages
covering basic tags ) : 30 marks

September Unit 3: Relational Database Management System : 24 18


2017
Review of RDBMS from Class XI

Database Fundamentals :

 Concept of Database transaction, Committing and revoking a


transaction using COMMIT andROLLBACK AND SAVEPOINT.
 Grouping Records: GROUP BY, Group functions - MAX(),
MIN(), AVG(), SUM(), COUNT(); usingCOUNT(*), DISTINCT
clause with COUNT; Group Functions in case of Null Values.
 Creating a Table with PRIMARY KEY, Foreign Key, Unique and
NOT NULL constraints, ViewingConstraints, Using DESC
command to view constraints.

Autumn Break : 26/09/2017 to 05/10/2017

October Unit 3: Relational Database Management System : 26 22


2017
Database Fundamentals :[Contd. …]

 Displaying Data From Multiple Tables: Cartesian product,


Union, Intersection and Equi-Join
 ALTER TABLE for
 Deleting column(s), modifying data type(s) of
column(s),
 Adding a constraint, enabling constraint, dropping
constraints.
 DROP Table for deleting a table or a database.
[Half Yearly Examination]

Half Yearly Examination (Expected Date 20th Oct. to 31st Oct. 2017)
Tentative Syllabus & Marks Distribution :
Max. Marks : 70
Duration : 180 mins.
1) Up to Database Fundamentals

November Unit 4: IT Applications : 10 26


2017
 Front-end Interface: Introduction; content and features;
identifying and using appropriate component (Text Field,
Radio Button, CheckBox, List etc. as learnt in Unit 2
(Programming))for data entry, validation and display.
 Back-end Database: Introduction and its purpose, exploring
the requirement of databases,tables and its essential
attributes.
 Front-End and Database Connectivity: Introduction,
requirement and benefits
 Demonstration and development of appropriate Front-end
interface and Back-end Database for e-Governance, e-
Business and e-Learning applications
 Impact of ICT on society: Social, Environmental and
Economic benefits.
In each of the above domains, identify at least two real-life
problems, list the expected outputs and the input(s) required
for the output, and describe the problem solving approach
and developrelevant front-end interface and back-end
database.
[Syllabus to be completed by 15th November 2017]

Revision and Project Completion


[16th to 30th Nov. 2017]

December Revision and Project Completion


2017 [First Pre-Board Exam]

First Pre-Board (Expected Date 4th to 18th Dec. 2017)


As per CBSE guidelines

Winter Break : 24/12/2017 to 02/01/2018

January Revision and Project Submission


2018 [ Second Pre-Board Exam ]

Second Pre-Board (Expected Date 11th – 24th Jan. 2017)


As per CBSE guidelines

Question Paper Design for Pre-Board :

February
Revision
2018
KENDRIYA VIDYALAYA SANGATHAN KOLKATA REGION

SPLIT UP SYLLABUS 2017-18

CLASS-XII SUBJECT-ECONOMICS
Expected Computer
Periods for Total
SL. No.of Chapter No Detailed Aided
Month Marks class room No.of
No. working & Chapter Split-up Teaching
Teaching Periods
Days Periods

1 04 PART A: Meaning of microeconomics and macroeconomics, Positive 04 04 08


UNIT I: Economics & Normative Economics
Introduction What is an economy? Central problems of an economy:
what, how and for whom to produce;
Concepts of production possibility frontier and opportunity
cost.

13 UNIT II: Consumer's equilibrium - meaning of utility, marginal utility, 30 02 32


April/May

Consumer's law of diminishing marginal utility, conditions of consumer's


Equilibrium and equilibrium using marginal utility analysis.
25
Demand Indifference curve analysis of consumer's equilibrium-the
consumer's budget (budget set and budget line), preferences
of the consumer (indifference curve, indifference map) and
conditions of consumer's equilibrium.
Demand, market demand, determinants of demand, demand
schedule, demand curve and its slope, movement along and
shifts in the demand curve;price elasticity of demand –
factorsaffecting price elasticity of demand; measurement of
price elasticity of demand – Percentage change
method

UNIT III: Meaning of Production function – Short-Run and Long-Run


2 07 Producer Total Product, Average Product and Marginal Product 02 2 04
Behavior and Returns to a Factor
Supply
Expected Computer
Periods for Total
Sl. No.of Chapter No Detailed Aided
Month Marks class room No.of
No. working & Chapter Split-up Teaching
Teaching Periods
Days Periods

3 25 13 UNIT III: Cost: Short run costs - total cost, total fixed cost, total 24 4 28
Producer variable cost; Average cost; Average fixed cost, average
Behavior& variable cost and marginal cost-meaning and their
Supply relationships.
Revenue - total, average and marginal revenue - meaning
and their relationships.
Producer's equilibrium-meaning and its conditions in terms
of marginal revenue-marginal cost.
Supply, market supply, determinants of supply, supply
schedule, supply curve and its slope, movements along and
July/June

shifts in supply curve, price elasticity of supply;


measurement of price elasticity of supply - Percentage-
change method

INTRODUCTION
OF PROJECT 05

FIRST
PERIODICAL
TEST
[17-26 JULY,
2017]
4 25 10 UNIT IV: Perfect competition - Features; Determination of market 20 08 28
Forms of Market equilibrium and effects of shifts in demand and supply.
and Price Other Market Forms - monopoly, monopolistic competition,
Determination oligopoly - their meaning and features.
under Perfect Simple Applications of Demand and Supply: Price ceiling,
Competition price floor.
with simple
applications.

10 UNIT V: Some basic concepts: consumption goods, capital goods, 04 04 08


National Income final goods, intermediate goods; stocks and flows; gross
and Related investment and depreciation.Circular flow of income; Two
Aggregates sector model
August

SECOND
PERIODICAL
TEST
[18-26 AUGUST,
2017]
5 19 10 UNIT V: Methods of calculating National Income - Value Added or 16 04 20
NATIONAL Productmethod, Expenditure method, Income method.
INCOME & Aggregates related to National Income: Gross National
RELATED Product (GNP), Net National Product (NNP), Gross and Net
AGREGATES Domestic Product (GDP and NDP) - at market price, at factor
cost; Real and Nominal GDP.GDP and Welfare.
September

06 UNIT VI: Money - its meaning and functions. Supply of money - 13 02 15


Money and Currency held by the public and net demand deposits held
Banking by commercialbanks.
Money creation by the commercial banking system.
Central bank and its functions (example of the Reserve Bank
of India): Bank of issue, Govt. Bank, Banker's Bank, Controller
of Credit through Bank Rate, CRR, SLR, Repo Rate and
Reverse RepoRate, Open Market Operations, Margin
requirement.

PROJECT WORK
05

6
12 UNIT VII: Aggregate demand & its components. Propensity to
Determination of consume and propensity to save (average and
20 07 27
Income and marginal).Short-run equilibrium output; investment
Employment multiplier and its mechanism.
Meaning of full employment and involuntary
20 unemployment.
October

06 UNIT VIII: Problems of excess demand and deficient demand;


Government measures to correct them - changes ingovernment spending, 15 15
Budget and the taxes and money supply.
economy Government budget - meaning, objectives and components.
Classification of receipts - revenue receipts and capital
receipts; classification of expenditure –revenue expenditure
and capital expenditure.Measures of government deficit -
revenue deficit, fiscal deficit, primary deficit their meaning.
HALF YEARLY
EXAMINATION
7 Nov 24 06 UNIT IX: Balance of payments account - meaning and components; 13 02 15
Balance of balance of payments deficit-meaning.Foreign exchange rate
Payments - meaning of fixed and flexible rates and managed floating.
Determination of exchange rate in a free market.

CASE STUDY
10
PROJECT WORK
10
Revision

8 Dec 18 Pre-board- I As per CBSE Guidelines

9 Jan 23 Pre-board- II As per CBSE Guidelines

Practice of
10 Feb 11
Sample papers
KENDRIYA VIDYALAYA SANGATHAN , KOLKATA REGION
SPLIT UP SYLLABUS
SUB: HISTORY (027)
CLASS –XII, SESSION 2017-18

Sl. Themes in Month Name of the Chapter No. Of Weightage Test/ exam
No. Indian periods of marks
History

1 PART I APRIL 1. Bricks, Beads and Bones 13 25


(Harappan Civilization)
The Story of the First Cities:
Harappan Archaeology.
Broad overview: Early urban
centres.
Story of discovery: Harappan
civilization
2 2. Kings, Farmers and Towns 14
Broad overview: Political and
economic history from
the Mauryan to the Gupta
period.
Story of discovery: Inscriptions
and the decipherment of the
script.
Shifts in the understanding of
political and economic history.
Excerpt: Asokan inscription and
Gupta period land grant.
3 MAY 3. Kinship, Caste and Class 14
& Issues in social history,
JUNE including
caste, class, kinship and gender.
Story of discovery:
Transmission and publications
of the Mahabharata.
Excerpt: from the
Mahabharata, illustrating how
it has been used by historians.
4 JULY 4. Thinkers, Beliefs and 14
Buildings
A brief review of religious PERIODIC
histories of Vedic religion, TEST I
Jainism, Vaisnavism, Saivism. (UNIT 1-4)
(b) Focus on Buddhism.
Story of discovery: Sanchi stupa
Excerpt: Reproduction of
sculptures from Sanchi.

5 5.Through the Eyes of the 12


Travellers
Outline of social and cultural
life as they appear intravellers'
PART II accounts. 25
Story of their writings: A
discussion of where they
travelled, why they travelled,
what they wrote, andfor whom
they wrote.
Excerpts: from Alberuni, Ibn
Batuta, Bernier.
6 6. Bhakti-Sufi Traditions 14
AUGUST Outline of religious
developments during this
period.
Ideas and practices of the
Bhakti-Sufi saints.
Story of Transmission: How
Bhakti-Sufi compositions have PERIODIC
been preserved. TEST II
Excerpt: Extracts from selected (UNIT 5-6)
Bhakti-Sufi works.
7 7. An Imperial Capital: 10
Vijayanagara
Outline of new buildings
during Vijayanagar period-
temples, forts, irrigation
facilities.
Relationship between
architecture and the political
system.
Story of Discovery: Account of
how Hampi was found.
Excerpt: Visuals of buildings at
Hampi
8 SEPTEMBER 8. Peasants, Zamindars and the 15
State
Structure of agrarian relations
in the 16th and 17th
centuries.
Patterns of change over the
period.
Story of Discovery: Account of
the compilation and translation
of Ain-i-Akbari.
Excerpt: from the Ain-i-Akbari
9 9. Kings and Chronicles 14
Outline of political history 15th-
17th centuries. Discussion of
the Mughal court and politics.
Story of Discovery: Account of
the production ofcourt
chronicles, and their
subsequent translation
andtransmission.
Excerpts: from the Akbarnama
and Padshahnama.
12
10 PART III OCTOBER 10. Colonialism and the
Countryside
Life of zamindars, peasants and
artisans in the late18th century
East India Company, revenue
settlements and surveys. 25
Changes over the nineteenth
century.
Story of official records: An
account of why official
investigations into rural
societies were undertaken and
the types of records and HALF YEARLY
reports produced. EXAM
Excerpts: From Firminger's Fifth (UNIT 1-10)
Report, Accounts of Frances
Buchanan-Hamilton, and
Deccan Riots Report.
12
11 11.Rebels and the Raj.
The events of 1857-58.
How these eventswere
recorded and narrated.
Focus: Lucknow.
Excerpts: Pictures of 1857.
Extracts from contemporary
accounts.
Discussion: How the pictures of
1857 shaped British opinion of
what had happened.
12 12.Colonial cities 14
The growth of
Mumbai,Chennai,
hill stations and cantonments
in the 18th and 19thcenturies.
Excerpts: Photographs and
paintings. Plans of cities.
Extract from town plan reports.
Focus on Kolkata townplanning.
13 NOVEMBER 13.Mahatma Gandhi and 12
The Nationalist Movement
1918 - 48.
The nature of Gandhian
politics and leadership.
Focus: Mahatma Gandhi in
1931.
Excerpts: Reports from English
and Indian
languagenewspapers and
other contemporary writings.
14 14.Understanding Partition 14
(Politics, Memories and
Experiences)
The history of the 1940s
Nationalism, Communalism
and Partition. Focus:
Punjab and Bengal.
Oral testimonies of those who
experiencedpartition.
15 15.Framing the Constitution 16
(The Beginning of New Era)
Independence and the new
nation state.
The making of the
Constitution.
Focus: The Constitutional
Assembly debates.
Excerpts: from the debates.
16 MAP APRIL- NOV. 10 05
17 PROJECT APRIL- NOV. 10 20
18 DECEMBER PRE BOARD EXAM –I (80 Marks) UNIT1-15
JANUARY PRE BOARD EXAM –II (80 Marks) UNIT1-15
KENDRIYA VIDYALAYA SANGATHAN, KOLKATA REGION
SPLIT – UP SYLLABUS 2017-18
CLASS – XII : SUBJECT – GEOGRAPHY

Book-II India:
Book-1 Fundamentals
Month Periods People & Periods Practical Work Periods
Of Geography
Economy

April/ 1. Human 05 People: 15 Tabulation & 10


May/ Geography: *Distribution , Processing Of
June Nature & Density & Data
Scope Growth Of
2. The World 18 Population
Population: *Migration
*Density , *Human
Distribution & Development
Growth
*Population
Composition
*Human
Development

July Human Activities: 28 Human 10 Diagramatic 10


*Primary Activities Settlements Representation
*Secondary Activities Of Data
*Quarternary &
Quinary Activities

1st Periodical Test (40 Marks Including Map )Will Include The Above Mentioned Syllabus

August Transport, 16 Resources & 15 Diagramatic 06


Communication& Development: Representation
Trade: *Land Resources Of
*Transport & & Agriculture Data(Contd…)
Communication *Water
*International Trade Resources

2nd Periodical Test (40 Marks Including Map )Will Include The Above Mentioned Syllabus Of August

September Human Settlements 10 Resources & 15 Thematic 05


Development: Mapping
*Mineral
Resources
*Manufacturing
Industries
*Planning In
India

October Transport , 15 Use Of 04


Communication Computers
& International
Trade:
*Transport &
Communication
*International
Trade

Half Yearly Examination will include the syllabus till September, 2017

November Geographical 15 Field Study/ 10


Perspectives On Spatial
Selected Information
Issues& Technology
Problems

December 1st Pre Board (Entire Syllabus):30(Book1)+5(world map for identification only )
+30 (book 2)+5(India map for locating & labeling)

January 2nd Pre Board(Entire Syllabus):30(Book1)+5(world map for identification only )


+30 (book 2)+5(India map for locating & labeling)
क य व यालय संगठन, कोलकाता संभाग
पा य म वभाजन:2017-18
वषय- हंद (केि क) : Class -XII

अनुमा नत कं यूटर
म अ याय कालां
माह काय वषय व तृत-पा य म श ण पर ा
सं या सं या श
दवस कालांश

1 अ ैल 22 हंद 5 1.आ म प रचय, एक गीत- ह रवंश राय 22 एक


2017 के० ब चन
2.भि तन – महादे वी वमा
3. व भ न संचार मा यम का प रचय
4. स वर वै डंग- मनोहर याम जोशी
5. नबंध-लेखन (सामािजक वषय पर)
10 एक
2 मई-जून 10 हंद 5 1.पतंग – आलोक ध वा
2017 के० 2.क वता के बहाने , बात सीधी थी पर –
कंु वर नारायण
3.बाजार दशन – जैने कुमार
4.संचार मा यम प रचय – ट
ं मी डया
5. नबंध लेखन – सा हि यक नबंध( हंद
सा ह य का इ तहास,रा भाषा हंद )

3 जुलाई 25 हंद 6 1.कैमरे म बंद अपा हज – रघुवीर सहाय 25 एक थम


के० 2.काले मेघा पानी दे – धमवीर भारती आव धक
3.जूझ – आनंद यादव पर ा=
4.समाचार, प लेखन – (औपचा रकप ) जून माह
5. नबंध – समसामा यक वषय पर- नार - तक का
सशि तकरण,२१वीं सद का भारत) पा य म
6.स पादक य प रचय ।

4 अग त 23 हंद 6 1.सहष वीकारा है – मुि तबोध 23 एक वतीय


के० 2.पहलवान क ढोलक – फ ण वरनाथ रे णु आव धक
3.अतीत म दबे पाँव – ओम थानवी पर ा=
4.कायालयी प ( ाचाय,स पादक, वा य जुलाई
अ धकार के नाम प ) माह का
5. नबंध – व वध वषय पर( व ान: वरदान पा य म
या अ भशाप, इ टरनेट) ।
6.स पादक य - ा प
5 सत बर 20 हंद 8 1.उषा –शमशेर बहादुर संह 20 एक
के० 2.बादल राग- नराला
3-चाल चैि लन यानी हम सब- व णु खरे
4-नमक-रिजया स जाद जह र
5-डायर के प ने-ऐन क
6. रपोट एवं आलेख
7.रोजगार स ब धी प
8. ववृंत लेखन

6 अ टू बर 17 हंद 7 1.क वतावल ,ल मण-मू छा और राम का 17 एक


के० वलाप – तुलसीदास
अध
2. बाइयां गजल- फ़राक गोरखपुर
वा षक
3. शर ष के फूल- हजार साद दवेद
पर ा =
4.फ चर-लेखन
सत बर
5. अप ठत- ग यांश,प यांश
माह तक
6.छोटा मेरा खेत-उमाशंकर जोशी
का
बगुल के पंख-उमाशंकर जोशी
पा य म।
7. म- वभाजन और जा त- था-डॉ.
आंबेडकर
मेर क पना का आदश समाज- डॉ. आंबेडकर

7 नव बर 18 हंद 2 1. व भ न सम याओं पर वभागीय 18 एक


के० अ धका रय को लखे जाने वाले प
2. पुनः आवृि त - न-प -अ यास काय

नोट –

1 –पा य म क पूणता नव बर माह तक सु नि चत क जाए ।

2- दस बर माह मे आयोिजत थम ाक पर ा के अंतगत स पूण पा य म सि म लत होगा ।

3- वतीय ाक पर ा जनवर माह के थम स ताह मे संभागीय तर पर स प न होगी ।

You might also like