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/ 6
DAV PUBLIC SCHOOL, SECTOR-14, GURUGRAM
PRE BOARD I SYLLABUS
SESSION :2024-25 CLASS XII S.NO SUBJECT UNIT / UNIT / CHAPTER MARKS MM CHAPTER NO. 1 ENGLISH SECTION A Reading Comprehension 22 80 SECTION B Invitations and Replies, Notice Writing, Report Writing, Job 18 Applications, Letters to the Editor, Article Writing SECTION C The Last Lesson, The Lost Spring,Deep Water, The Rattrap, 40 Indigo, Poets and Pancakes, Interview,Going Places, My Mother at Sixty Six,Keeping Quiet,A Thing of Beauty, A Roadside Stand, Aunt Jennifer's Tigers The Third Level, The Tiger King, Enemy, Journey to the end of the Earth, Memories of Childhood, On the Face of It 2 MATHEMATICS UNIT - 1 Relations and Functions 8 80 UNIT - 2 Algebra 10 UNIT - 3 Calculus 35 UNIT - 4 Vectors and Three - Dimensional Geometry 14 UNIT - 5 Linear Programming 5 UNIT - 6 Probability 8 3 PHYSICS UNIT-1 Electrostatics 16 70 UNIT-2 Current Electricity UNIT-3 Magnetic Effects of Current and Magnetism 17 UNIT-4 Electromagnetic Induction and Alternating Currents UNIT-5 Electromagnetic Waves 18 UNIT-6 Optics UNIT-7 Dual Nature of Radiation and Matter 12 UNIT-8 Atoms and Nuclei UNIT-9 Electronic Devices 7 4 CHEMISTRY UNIT-1 Solutions 23 70 UNIT-2 Electrochemistry UNIT 3 Chemical Kinetics UNIT- 4 d- and f -Block Elements 14 UNIT - 5 Coordination compounds UNIT- 6 Haloalkanes and Haloarenes 33 UNIT-7 Alcohols , Phenols and Ethers UNIT-8 Aldehydes , Ketones and Carboxylic Acids UNIT-9 Amines UNIT-10 Biomolecules 5 BIOLOGY UNIT- 6 Reproduction 16 70 UNIT-7 Genetics and evolution 20 UNIT-8 Biology and human welfare 12 UNIT-9 Biotechnology and its applications 12 UNIT-10 Ecology and environment 10 6 ACCOUNTANCY PART -A Accounting for Partnership Firms and companies 80 UNIT -1 Accounting for Partnership Firms 36 UNIT-2 Accounting for Companies 24 PART -B Financial Statements Analysis UNIT -3 Analysis of Financial Statements 20 7 BUSINESS PART A Principles and Functions of Management 80 STUDIES 1. Nature and Significance of Management UNIT-1 2. Principles of Management 16 3. Business Environment 4. Planning UNIT-2 14 5. Organising 6. Staffing UNIT 3 7. Directing 20 8. Controlling PART B Business Finance and Marketing 9. Financial Management UNIT- 4 15 10. Financial Markets 11. Marketing Management UNIT - 5 15 12. Consumer Protection 8 ECONOMICS PART A INTRODUCTORY MACROECONOMICS 80 National Income and related aggregates 10 Money and Banking 6 Determination of Income and Employment 12 Government Budget and the Economy 6 Balance of Payments 6 PART B INDIAN ECONOMIC DEVELOPMENT Development Experience (1947-90) and Economic Reforms since 1991 12 Current Challenges facing Indian Economy 20 Development Experiences of India - A comparison with 8 neighbours 9 POLITICAL PART A 1. The End of Bipolarity 5 80 SCIENCE 2. Alternative Centres of Power 5 3. Contemporary South Asia 5 4. United Nations 6 5. Security 5 6. Environment 5 7. Globalization 6 PART B 8. Challenges Of Nation Building 5 9. Era of One Party Dominance 6 10. Planned Development 4 11. India's External Relations 5 12. Challenges To And Restoration of the Congress System 6 13. Crisis of Democratic Order 6 14. Regional Aspirations 6 15. Recent Developments In Indian Politics 5 10 PSYCHOLOGY Chapter 1 Variations in Psychological Attributes 13 70 Chapter 2 Self and Personality 13 Chapter 3 Meeting Life Challenges 9 Chapter 4 Psychological Disorders 12 Chapter 5 Therapeutic Approaches 9 Chapter 6 Attitude and Social Cognition 8 Chapter 7 Social Influence and Group Processes 6 11 COMPUTER Unit 1: ● Revision of Python topics covered in Class XI. 40 70 SCIENCE Computational ● Functions: types of function (built-in functions, functions Thinking and defined in module, user defined functions), creating user defined Programming – function, arguments and parameters, default parameters, positional 2 parameters, function returning value(s), flow of execution, scope of a variable (global scope, local scope) ● Exception Handling: Introduction, handling exceptions using try-except-finally blocks
● Introduction to files, types of files (Text file, Binary file, CSV
file), relative and absolute paths ● Text file: opening a text file, text file open modes (r, r+, w, w+, a, a+), closing a text file, opening a file using with clause, writing/appending data to a text file using write() and writelines(), reading from a text file using read(), readline() and readlines(), seek and tell methods, manipulation of data in a text file ● Binary file: basic operations on a binary file: open using file open modes (rb, rb+, wb, wb+, ab, ab+), close a binary file, import pickle module, dump() and load() method, read, write/create, search, append and update operations in a binary file ● CSV file: import csv module, open / close csv file, write into a csv file using writer(),writerow(),writerows() and read from a csv file using reader() ● Data Structure: Stack, operations on stack (push & pop), implementation of stack using list. Unit 2: ● Evolution of networking: introduction to computer networks, 10 Computer evolution of networking (ARPANET, NSFNET, INTERNET) Networks ● Data communication terminologies: concept of communication, components of data communication (sender,receiver, message, communication media, protocols), measuring capacity of communication media (bandwidth, data transfer rate), IP address, switching techniques (Circuit switching, Packet switching) ● Transmission media: Wired communication media (Twisted pair cable, Co-axial cable, Fiber-optic cable), Wireless media (Radio waves, Micro waves, Infrared waves) ● Network devices (Modem, Ethernet card, RJ45, Repeater, Hub, Switch, Router, Gateway, WIFI card) ●Network topologies and Network types: types of networks (PAN, LAN, MAN, WAN), networking topologies (Bus, Star, Tree) ● Network protocol: HTTP, FTP, PPP, SMTP, TCP/IP, POP3, HTTPS, TELNET, VoIP ●Introduction to web services: WWW, Hyper Text Markup Language (HTML), Extensible Markup Language (XML), domain names, URL, website, web browser, web servers, web hosting Unit 3: ● Database concepts: introduction to database concepts and its 20 Database need Management ● Relational data model: relation, attribute, tuple, domain, degree, cardinality, keys (candidate key, primary key, alternate key, foreign key) ● Structured Query Language: introduction, Data Definition Language and Data Manipulation Language, data type (char(n), varchar(n), int, float, date), constraints (not null, unique, primary key), create database, use database, show databases, drop database, show tables, create table, describe table, alter table (add and remove an attribute, add and remove primary key), drop table, insert, delete, select, operators (mathematical, relational and logical), aliasing, distinct clause, where clause, in, between, order by, meaning of null, is null, is not null, like, update command, delete command, aggregate functions (max, min, avg, sum, count), group by, having clause, joins: cartesian product on two tables, equi-join and natural join ● Interface of python with an SQL database: connecting SQL with Python, performing insert, update, delete queries using cursor, display data by using connect(), cursor(), execute(), commit(), fetchone(), fetchall(), rowcount, creating database connectivity applications, use of %s format specifier or format() to perform queries 12 INFORMATION PART A : UNIT 1 : Communication Skills 10 60 TECHNOLOGY Employability UNIT 2 : Self-Management Skills Skills UNIT 3 : ICT Skills UNIT 4 : Entrepreneurial Skills UNIT 5 : Green Skills
PART B:Subject Java: 20
Specific Skills Fundamentals of Java programming, Introduction to Java, Object Oriented Programming, Java Language Elements, Operators, Control Flow, Array, Class Design, Exception Handling, Assertions, Threads, Wrapper Classes, String Manipulation
Database Concepts :SQL 15
Operating web based applications 10 Work Integrated Learning IT- DMA 5 FASHION EMPLOYABILITY SKILLS 13 60 STUDIES UNIT 1 Communication Skills-IV 2 UNIT 2 Self-Management Skills-IV 2 UNIT 3 ICT Skills-IV 2 UNIT 4 Entrepreneurial Skills-IV 2 UNIT 5 Green Skills-IV 2 SUBJECT SPECIFIC SKILLS UNIT 1 History of Fashion 10 UNIT 2 Basic Pattern Development 16 UNIT 3 Elements of Fashion 12 UNIT 4 Basics of Garment Making 12 14 HOME SCIENCE UNIT 1 1. Work, Livelihood and Career 5 70 UNIT 2 2. Clinical Nutrition 23 3. Public Nutrition and Health 4. Food Science and Technology 5. Food Quality and Food Safety UNIT 3 6. Early Childhood Care and Education 10 7. Management of Support Services, Institutions and Programmes for Children, Youth and Elderly UNIT 4 8. Design for Fabric and Apparel 17 9. Fashion Design and Merchandising 10. Care and Maintenance of Fabrics in Institutions UNIT 5 11. Hospitality Management 10 12. Consumer Education and Protection UNIT 6 13. Development Communication and Journalism 5 15 HISTORY Theme 1 Theme -1: Bricks,beads and Bones 5 80 Theme-2: King's, farmer's and towns 5 Theme-3: Kinship, Caste and Class 7 Theme-4: Thinkers,beliefs and buildings 8 25 Theme- II Theme-5: Through the eyes of travellers 5 Theme-6: Bhakti and Sufi Movement 5 Theme-7: An Imperial Capital Vijayanagar 7 Theme-8: Peasants, Zamindars and the State 8 25 Theme-III Theme-9: Colonialism and the Countryside 5 Theme- 10: Rebels and the Raj 5 Theme-11 Mahatma Gandhi and the Nationalist Movement 8 Theme-12: Making of the Indian Constitution 7 25 Map Work 5 16 GEOGRAPHY UNIT-1 1.Human Geography:Nature and Scope 30 70 UNIT-2 2.The World Population Distribution,Density and Growth. 3. Human Development UNIT-3 4. Primary Activities. 5. Secondary Activities 6. Tertiary and Quaternary Activities UNIT-4 8.Transport and Communication Map work 5 UNIT-1 1. Population Distribution, Density , Growth and Composition UNIT-2 2. Human Settlements 30 UNIT-3 3.Land Resources and Agriculture 4. Water Resources 5. Mineral and Energy Resources 6. Planning and sustainable Development in India UNIT-4 7. Transport and Communication UNIT-5 8. Geographical perspective on selected Issues and Problems Map Work 5 17 LEGAL STUDIES UNIT 1 Judiciary 8 70 UNIT 2 Alternative Dispute Resolution in India 8 UNIT 3 Topics in Law- I (Business Laws) 20 Chapter 3 (A) - Law of Contract Chapter 3 (B) - Law of Torts Chapter 3 (C) - Law of Property Chapter 3 (D) - Intellectual Property UNIT 4 Topics in Law- II (General Laws) 10 Chapter 4 (A) -Law and Sustainable Development Chapter 4 (B)- Forms of Legal Entities Chapter 4 (C) - Criminal Law UNIT 5 Concept of Human Rights 10 Chapter 5 (A) : Human Rights in India Chapter 5 (B) : Human Rights Violations - Complaint Mechanism (Quasi-Judicial Bodies) UNIT 6 International Law 8 UNIT 7 Legal Profession 8 UNIT 8 Legal Services 8 18 PHYSICAL UNIT 1 9 70 EDUCATION Management of Sporting Events UNIT 2 Children and Women in Sports 7 UNIT 3 Yoga as Preventive Measures for Lifestyle Disease 11 UNIT 4 Physical Education and Sports for CWSN 10 UNIT 5 Sports and Nutrition 7 UNIT 6 Test and Measurement in Sports 18 UNIT 7 Physiology and Injuries in Sports 18 19 PAINTING UNIT I Rajasthani and pahari school of miniature paintings 10 30 UNIT 2 Mughal and deccan schools of miniature paintings 10 UNIT 3 indian national flag , the Bengal School of painting and modern 10 trends in Indian art