0% found this document useful (0 votes)
38 views15 pages

Wa0000.

Uploaded by

adriennn2008
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
38 views15 pages

Wa0000.

Uploaded by

adriennn2008
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 15

1

BHOLANANDA NATIONAL VIDYALAYA


Affiliated to the "Central Board Of
Secondary Education"
(CBSE) 55 & 56 Barrack Raod Kolkata
700120
Barrackpore,North 24 Pargana,,West
Bengal,India Contact us:- 03325940454/8910556260
E-mail:- bnv_bkp2005@yahoo.co.in

**********************************************************************************************************************
***********************************************************************************************************************

SCHOLASTIC SYLLABUS (SUBJECT WISE )


CLASS :- X I SCIENCE ( SESSION :- 2024-25 )

SUBJECT :- ENGLISH. ( 301 )


2

2nd UNIT TEST

SectionA : Reading skill( case- based passage)

SectionB: writing skill and grammar


1) classified advertisements
2) poster writing
3) speech writing(150words)
4) Debate Writing (150 words)
5) Rearrangement / transformation of sentences

Section C: Literature
*Hornbill*

1)Discovering Tut.. the saga continues


2) Father to son( poem)
*Snapshot*
1)Mother’s Day
2) The Address

*Annual syllabus*

*SectionA : Reading skill*

1) one factual passage for comprehension


2) one case- based passage
3) one passage for note-making and summarizing

*Section B: writing skill and grammar*

1) Classified advertisements
2) poster writing
3) Speech writing (150words)
4) Debate Writing(150words)
5) Re arrangement of jumbled up words/Transformation of
sentences

*Section C: Literature*

1) We are not afraid to die…


2)Silk Road
3)Childhood
4)Father to Son
5)A Photograph
6) The Portrait of a Lady
7) The Laburnum Top
8) The Voice of the rain

*SNAPSHOT*
1)Summer of the beautiful white horse
2)Mother’s Day
3)Birth
4)A tale of Melon city

_************************************************************************************
*************************************
3

SUBJECT: MATHEMATICS (041)


4

SUBJECT : PHYSICS ( 042 )

HALF YEARLY EXAM


Unit I: Chapter–2: Units and Measurements

Unit II: Kinematics

Chapter–3: Motion in a Straight Lin

Chapter–4: Motion in a Plane

Unit III : Chapter–5: Laws of Motion

Unit IV : Chapter–6: Work, Energy and Power

UNIT TEST
Unit V: Chapter–7: System of Particles and Rotational Motion

Unit VI: Chapter–8: Gravitation

Unit VII: Properties of Bulk Matter

Chapter–9: Mechanical Properties of Solids

Chapter–10: Mechanical Properties of Fluids

Chapter–11: Thermal Properties of Matter

ANNUAL EXAM
Syllabus of Annual Examination: Full syllabus 2024-25 as
provided by CBSE .

_*************************************************************************************************************************

Subject : CHEMISTRY (043)


Syllabus of Half Yearly Examination:
1. Chapter 1 : Some Basic Concepts of Chemistry.

2. Chapter 2 : Atomic Structure

3. Chapter 3 : Periodic Table

4. Chapter 4 : Chemical Bonding.

5. Chapter 8 : General Organic Chemistry ( upto IUPAC nomenclature)

Syllabus of Unit Test Examination:

1.Chapter 8 : General Organic Chemistry


2.Chapter 7 : Redox
3. Chapter 9: Hydrocarbon ( upto Alkenes )

Syllabus of Annual Examination: Full syllabus 2024-


25 as provided by CBSE .

_*************************************************************************************************************************

SUBJECT : COMPUTER SCIENCE ( 083 )


5

Half Yearly:

Computer Systems and Organisation

● Basic Computer Organisation: Introduction to computer system,


hardware,software, input device, output device, CPU, memory (primary, cache
and secondary), units of memory (Bit, Byte, KB, MB, GB, TB, PB)

● Types of software: system software (operating systems, system utilities, device


drivers), programming tools and language translators (assembler, compiler &
interpreter), application software

● Operating system (OS): functions of operating system, OS user interface

● Boolean logic: NOT, AND, OR, NAND, NOR, XOR, truth table, De Morgan’s
laws and logic circuits

● Number system: Binary, Octal, Decimal and Hexadecimal number system;


conversion between number systems.

● Encoding schemes: ASCII, ISCII and UNICODE (UTF8, UTF32)

Computational Thinking and Programming

● Introduction to problem solving: Steps for problem solving (analysing the


problem, developing an algorithm, coding, testing and debugging).
Representation of algorithms using flow chart and pseudo code, decomposition

● Familiarization with the basics of Python programming: Introduction to Python,


features of Python, executing a simple “hello world” program, execution modes:
interactive mode and script mode, Python character set, Python tokens
(keyword, identifier, literal, operator, punctuator), variables, concept of l-value
and r-value, use of comments

● Knowledge of data types: number (integer, floating point, complex), boolean,


sequence (string, list, tuple), none, mapping (dictionary), mutable and
immutable data types

● Operators: arithmetic operators, relational operators, logical operators,


assignment operator, augmented assignment operators, identity operators(is,
is not), membership operators(in, not in)

● Expressions, statement, type conversion & input/output: precedence of


operators, expression, evaluation of expression, python statement, type
conversion (explicit & implicit conversion), accepting data as input from the
console and displaying output

● Errors: syntax errors, logical errors, runtime errors

● Flow of control: introduction, use of indentation, sequential flow, conditional and


iterative flow control

● Conditional statements: if, if-else, if-elif-else, flowcharts, simple programs: e.g.:


absolute value, sort 3 numbers and divisibility of a number

● Iterative statements: for loop, range function, while loop, flowcharts, break and
continue statements, nested loops, suggested programs: generating pattern,
summation of series, finding the factorial of a positive number etc

● Strings: introduction, indexing, string operations (concatenation, repetition,


membership & slicing), traversing a string using loops, built-in functions: len(),
capitalize(), title(), lower(), upper(), count(), find(), index(), endswith(),
startswith(), isalnum(), isalpha(), isdigit(), islower(), isupper(), isspace(), lstrip(),
rstrip(), strip(), replace(), join(), partition(), split()

Unit Test

● Lists: introduction, indexing, list operations (concatenation, repetition,


membership & slicing), traversing a list using loops, built-in functions: len(),
list(), append(), extend(), insert(), count(), index(), remove(), pop(), reverse(),
sort(), sorted(), min(), max(), sum(); nested lists, suggested programs: finding
the maximum, minimum, mean of numeric values stored in a list; linear search
on list of numbers and counting the frequency of elements in a list

● Tuples: introduction, indexing, tuple operations (concatenation, repetition,


membership & slicing), built-in functions: len(), tuple(), count(), index(),
sorted(), min(), max(), sum(); tuple assignment, nested tuple, suggested
programs: finding the minimum, maximum, mean of values stored in a tuple;
6

linear search on a tuple of numbers, counting the frequency of elements in a


tuple

Annual

● Dictionary: introduction, accessing itemsin a dictionary using keys, mutability


of dictionary (adding a new item, modifying an existing item), traversing a
dictionary, built-in functions: len(), dict(), keys(), values(), items(), get(),
update(), del, clear(), fromkeys(), copy(), pop(), popitem(), setdefault(), max(),
min(), count(), sorted(), copy(); suggested programs : count the number of
times a character appears in a given string using a dictionary, create a
dictionary with names of employees, their salary and access them

● Introduction to Python modules: Importing module using ‘import ‘ and using


from statement, Importing math module (pi, e,sqrt, ceil, floor, pow, fabs, sin,
cos, tan); random module (random, randint, randrange), statistics module
(mean, median, mode)

Society, Law and Ethics

● Digital Footprints

● Digital society and Netizen: net etiquettes, communication etiquettes, social


media etiquettes

● Data protection: Intellectual Property Right (copyright, patent, trademark),


violation of IPR (plagiarism, copyright infringement, trademark infringement),
open source softwares and licensing (Creative Commons, GPL and Apache)

● Cyber-crime: definition, hacking, eavesdropping, phishing and fraud emails,


ransomware, preventing cyber crime

● Cyber safety: safely browsing the web, identity protection, confidentiality, cyber
trolls and bullying.

● Safely accessing web sites: malware, viruses, trojans, adware

● E-waste management: proper disposal of used electronic gadgets

● Indian Information Technology Act (IT Act)

● Technology & Society: Gender and disability issues while teaching and using
computers

And

Syllabus of Unit Test and Half yearly

_*************************************************************************************************************************
7

SUBJECT : BIOLOGY ( 044 )


8

_*************************************************************************************************************************

SUBJECT : Bengali ( 105 )

Half yearly examination

Grammar & composition

1.Comprehension

2.Bacchyo poriborton

3. Ukti poriborton

4. Bangla sabdovandar(tatsamo,tatvabo,desi,bidesi)
5. Dialogue writing
6.Galpo- Telenapota Abiskar,dakater ma
9

7.Kobita- Nun,barir kache aarshi nagar.

8.Natok-Guru( 1st scene)

UNIT TEST
Galilio

Shikhar circus

Ukti paribartan

Comprehension

Annual Examination

1.Comprehension

2.Ukti poriborton

3. Dialogue writing

4.Bachyo poriborton

5.summary writing

6.Galpo-galileo,kartar vut,telenapota abiskar,dakater ma.

7.Kobita-dipantorer bondini. Nun,barir kache arshinagar,sikkhar sarkas

8.Guru natoker sampurno angso.

_*************************************************************************************************************************

SUB:ECONOMICS ( 030 )

HALF-YEARLY EXAMINATION:
MICROECONOMICS :

1.Introduction to Microeconomics

2.Consumer’s Equilibrium

3.Theory Of Demand and Price Elasticity Of Demand

4.Theory Of Supply and Price Elasticity Of Supply

STATISTICS FOR ECONOMICS:

1.Introduction To Statistics

2.Collection Of Data

3.Organisation Of Data

4.Presentation Of Data

5.Measures Of Central Tendency.

UNIT TEST

MICROECONOMICS:

1.Return to Factor

2.Theory Of Cost.& Revenue

3.Producer’s Equilibrium

STATISTICS

1.Measures Of Central Tendency


10

2.Collection Of Data

ANNUAL EXAMINATION:
MICROECONOMICS:

1.Main Market Forms

2.Equilibrium Price Determination Under Perfect competition

STATISTICS:

1.Measures Of Correlation

2.Index Number

*(Syllabus Of Annual Examination also includes all the chapters taught in all
previous examinations of this session)

_*************************************************************************************************************************

SUBJECT: GEOGRAPHY(029)

HALF YEARLY EXAMINATION


FUNDAMENTAL OF PHYSICAL GEOGRAPHY

CHAPTER 1 Geography as a discipline

Chapter 2 The origin and evolution of the earth

Chapter 3 Interior of the earth

Chapter 4 Distribution of oceans and continents

Chapter:6 Geomorphic Processes

INDIA PHYSICAL ENVIRONMENT

Chapter 1 India- Location

Chapter:2 Structure and Physiography

Chapter 3 Drainage system

Unit test
FUNDAMENTAL OF PHYSICAL GEOGRAPHY

Chapter 8 Composition and structure of the atmosphere

Chapter:9 Solar Radiation, Heat Balance and Temperature

Chapter 11 Water in the Atmosphere

INDIA PHYSICAL ENVIRONMENT

Chapter 5 Natural Vegetation

Chapter 6 Soils

ANNUAL EXAMINATION
FUNDAMENTAL OF PHYSICAL GEOGRAPHY

Chapter 3 Interior of the earth

Chapter 4 Distribution of oceans and continents

Chapter 8 Composition and structure of the atmosphere

Chapter 9 Solar Radiation, Heat Balance and Temperature

Chapter 11 Water in the Atmosphere


11

Chapter 14 Movements of Ocean Water

INDIA PHYSICAL ENVIRONMENT

Chapter 1 India- Location

Chapter 3 Drainage system

Chapter 5 Natural Vegetation

Chapter 6 Soils

_*************************************************************************************************************************

SUBJECT: PHYSICAL EDUCATION


Half – yearly Examination
• Unit : 1 (Changing Trends & Career in Physical Education)

• Unit : 3 (Yoga)

• Unit : 5 (Physical Fitness, Health and Wellness)

• Unit : 8 ( Fundamentals of Kinesiology and Biomechanics in Sports)

Unit test Examination


• Unit : 6 ( Test, Measurement and Evaluation)

• Unit : 7 ( Fundamentals of Anatomy, Physiology in Sports)

• 9 (Psychology and Sports)

Annual Examination
• Unit : 1 (Changing Trends & Career in Physical Education)

• Unit : 2 ( Olympism)

• Unit : 3 ( Yoga)

• Unit : 4 ( Physical Education and Sports for CWSN)

• Unit : 5 ( Physical Fitness, Health and Wellness)

• Unit : 6 ( Test, Measurement and Evaluation)

• Unit : 7 ( Fundamentals of Anatomy, Physiology in Sports)

• Unit : 8 (Fundamentals of Kinesiology and Biomechanics in Sports)

• Unit : 9 (Psychology and Sports)

• Unit : 10 ( Training and Doping in Sports)

_******************************************************************************************************************

Subject -PSYCHOLOGY (037)


Theory Paper

Half Yearly Exam


12

Units Topics

I What is Psychology?

Iv Human Development

VII Human Memory

UNIT TEST

VII Human memory

VIII Thinking

Annual Exam
Units Topics

I What is Psychology?

II Methods of Inquiry in Psychology

Iv Human Development

V Sensory, attentional and perceptual processes

VI Learning

VII Human Memory

VIII Thinking

IX Motivation and Emotion

Practical Examination

Two Experiments and One Project

_*************************************************************************************************************************

SUBJECT- HOME SCIENCE

HALF-YEARLY EXAMINATION
UNIT-l INTRODUCTION TO HOME SCIENCE

UNIT-II UNDERSTANDING ONSELF : ADOLESCENCE

• Chapter- Understanding the Self. A. Who am “I”?

B. Development and Characteristics of the self

• Chapter- Food, Nutrition, Health and Fitness

• Chapter-Diet in Adolescence

• Chapter- Management of Resources.

• Chapter-Fabric Around us

SYLLABUS FOR UNIT TEST


UNIT- III UNDERSTANDING FAMILY, COMMUNITY AND SOCIETY

• Chapter-Concerns and needs in diverse contexts:

A. Nutrition, Health and Hygiene


13

B. Resources Availability and Management

ANNUAL EXAMINATION
UNIT-IV CHILDHOOD

• Chapter- Survival Growth and Development

• Chapter- Nutrition, Health and Well-being

• Chapter- Our Apparel

UNIT-V ADULTHOOD

• Chapter-Health and Wellness

• Chapter-Financial Management and Planning

• Chapter-Care and Maintenance of fabrics

UNIT TEST SYLLABUS AND HALF-YEARLY EXAMINATION SYLLABUS are


attached with ANNUAL EXAMINATION SYLLABUS.

_*************************************************************************************************************************

COMMERCIAL ARTS (052)

Syllabus of Half Yearly Examination


1.

A. Pre-Historic Rock-Paintings Introduction 1) Period and Location 2) Study and


appreciation of following Pre-historic paintings: i. Wizard’s Dance,
Bhimbethaka

B. Introduction 1) Period and Location. 2) Extension: In about 1500 miles. i.


Harappa &Mohenjo-daro (Now in Pakistan) ii. Ropar, Lothal, Rangpur,
Alamgirpur, Kali Bangan,Banawali and Dholavira (in India)

Study and appreciation of following: Sculptures and Terra cottas:

i. Dancing girl (Mohenjodaro)Bronze, 10.5 x 5 x 2.5 cm. Circa 2500 B.C.


(Collection: National Museum, New Delhi).

ii. Male Torso(Harappa) Red lime Stone, 9.2 x 5.8 x 3 cms. Circa 2500 B.C.
(Collection: National Museum, New Delhi) iii. Mother Goddess
(Mohenjodaro) terracotta, 22 x 8 x 5 c Circa2500 B.C. (Collection: National
Museum, New Delhi).

Study and appreciation of following Seal:

i. Bull (Mohenjo-daro) Stone (Steatite), 2.5 x 2.5 x 1.4 cm. Circa 2500
B.C.(Collection: National Museum, New Delhi). Decoration on earthen
wares: Painted earthen-ware (Jar)Mohenjo-daro (Collection: National
Museum, New Delhi).

4.

Buddhist, Jain and Hindu Art (3rd century B.C. to 8th century A.D.)

1. General Introduction to Art during Mauryan, Shunga, Kushana(Gandhara and


Mathura styles) and Gupta period:

2. Study and appreciation of following Sculptures:

i. Lion Capital from Sarnath (Mauryan period) Polished sandstone,


Circa 3rd Century B.C. (Collection: Sarnath Museum, U.P.)
14

ii. Chauri Bearer from Didar Ganj (Yakshi) (Mauryan period) Polished
sandstone Circa 3rd Century B.C.(Collection: Patna Museum,
Bihar)

iii. Seated Buddha from Katra Mound, Mathura-


(Kushan
PeriodMathura Style) Red-spotted Sand Stone, Circa 3rd Century
AD. (Collection: Govt. Museum, Mathura) iv. Jain Tirathankara
(Gupta period) Stone Circa 5th Century A.D. (Collection: State
Museum, Lucknow U.P.)

Syllabus of Unit Test


1 Introduction to Ajanta Location Period, No of caves, Chaitya and
Vihara, paintings and sculptures,subject matter and
technique etc.

2.. Temple Sculpture, Bronzes and artistic aspects of IndoIslamicArchitecture 24


Periods (A) Artistic aspects of Indian Temple sculpture (6th Century A.D. to
13thCentury A.D.) 1) Introduction to Temple Sculpture (6th Century A.D. to
13th Century A.D.) 2) Study and appreciation of following TempleSculptures:

i. Descent of Ganga (Pallava period, Mahabalipuram,Tamil Nadu),


granite rock Circa 7 th Century A.D.

ii. Trimuti (Elephanta, Maharashtra) Stone Circa 9 thCentury A.D.

iii. Lakshmi Narayana (Kandariya Mahadev Temple)(Chandela period,


Khajuraho, Madhya Pradesh) Stone Circa 10th Century A.D. iv.
Cymbal Player, Sun Temple (Ganga Dynasty,Konark, Orrisa) Stone
Circa 13th

iv. Century A.D. v. Mother and Child (Vimal-Shah Temple, Solanki


Dynasty, Dilwara, Mount Abu; Rajasthan) whitemarble, Circa 13th
Century A.D.

Syllabus of Annual Examination


Bronzes :

1. Introduction to Indian Bronzes.

2. Method of casting (solid and hollow)

3. Study and appreciation of following South Indian Bronze: i. Nataraj (Chola


period Thanjavur Distt.,Tamil Nadu) 12thCentury A.D. (Collection : National
Museum, New Delhi)

Artistic aspects of the indo-Islamic architecture: 1. Introduction 2. Study and


appreciation of following architecture:

i. Qutub Minar, Delhi

ii. Gol Gumbad of Bijapur

+ Syllabus of unit Test and half Yearly


15

SUBJECT : HINDI ( 002 )

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy