Courses
Courses for Kids
Free study material
Offline Centres
More
Store Icon
Store

CBSE Class 12 Computer Science Syllabus 2024-25: Updated Curriculum

ffImage

Computer Science Class 12 Syllabus 2024-25 - FREE PDF Download

Vedantu offers the updated CBSE Computer Science Class 12 Syllabus 2024-25, providing a detailed overview of the updated curriculum. It includes key topics like python programming, database management and computer networks, ensuring students gain essential skills and knowledge. By downloading the revised PDF, students can stay current with the new syllabus and prepare effectively for their exams. 


This is a comprehensive overview of the latest CBSE Class 12 syllabus for Computer Science 2024-25, as prescribed by CBSE. It offers students the complete syllabus, marks distribution, suggested reading material and prescribed experiment lists and provides them the chance to gain a headstart on their exam preparation. You can access the download right now by pressing the ‘Download PDF’ button on the page.

CBSE Computer Science Class 12 Syllabus 2024-25 Course Structure

Learning Outcomes

The following are the expected learning outcomes according to the CBSE guidelines:


a) apply the concept of function.

b) explain and use the concept of file handling.

c) use basic data structure: Stacks

d) explain basics of computer networks.

e) use Database concepts, SQL along with connectivity between Python and SQL


Course Structure

Unit No

Unit Name

Marks

Periods

Theory

Practicals

1

Computational Thinking and Programming – 2 

40

70

50

2

Computer Networks

10

15 

-

3

Database Management 

20

25 

20 

Total

70

110

70


CBSE Class 12 Science Syllabus 2024-25: Complete Overview

Unit 1: Computational Thinking and Programming – 2

  • Revision of Python topics covered in Class XI.

  • Functions: types of function (built-in functions, functions defined in module, user defined functions), creating user defined function, arguments and parameters, default parameters, positional 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: Computer Networks

  • Evolution of networking: introduction to computer networks, evolution of networking

(ARPANET, NSFNET, INTERNET)

  • 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 Management

  • Database concepts: introduction to database concepts and its need

  • 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 


CBSE Class 12 Computer Science 2024-25 Practicals

S. No 

Unit Name 

Marks (Total=30)  

1

Lab Test: 1. Python program (60% logic + 20% documentation + 20% code quality)

8

2. SQL queries (4 queries based on one or two tables) 

4

2

Report file:  Minimum 15 Python programs.  SQL Queries – Minimum 5 sets using one table / two tables.  Minimum 4 programs based on Python – SQL connectivity

7

3

Project (using concepts learnt in Classes 11 and 12) 

8

4

Viva voce

3


Prescribed Practical List

Python Programming:

  • Read a text file line by line and display each word separated by a #.

  • Read a text file and display the number of vowels/consonants/uppercase/lowercase characters in the file.

  • Remove all the lines that contain the character 'a' in a file and write it to another file.

  • Create a binary file with name and roll number. Search for a given roll number and display the name, if not found display appropriate message.

  • Create a binary file with roll number, name and marks. Input a roll number and update the marks.

  • Write a random number generator that generates random numbers between 1 and 6 (simulates a dice).

  • Write a Python program to implement a stack using list.

  • Create a CSV file by entering user-id and password, read and search the password for given userid.


Database Management

Create a student table and insert data. Implement the following SQL commands on

the student table:


  • ALTER table to add new attributes / modify data type / drop attribute

  • UPDATE table to modify data

  • ORDER By to display data in ascending / descending order

  • DELETE to remove tuple(s)

  • GROUP BY and find the min, max, sum, count and average


  • Similar exercise may be framed for other cases.

  • Integrate SQL with Python by importing suitable module. 


Project: 

The aim of the class project is to create something that is tangible and useful using Python file handling/ Python-SQL connectivity. This should be done in groups of two to three students and should be started by students at least 6 months before the submission deadline. The aim here is to find a real world problem that is worthwhile to solve.


Students are encouraged to visit local businesses and ask them about the problems that they are facing. For example, if a business is finding it hard to create invoices for filing GST claims, then students can do a project that takes the raw data (list of transactions), groups the transactions by category, accounts for the GST tax rates, and creates invoices in the appropriate format. Students can be extremely creative here. They can use a wide variety of Python libraries to create user friendly applications such as games, software for their school, software for their disabled fellow students, and mobile applications, of course to do some of these projects, some additional learning is required this should be encouraged. Students should know how to teach themselves.


The students should be sensitized to avoid plagiarism and violations of copyright issues

while working on projects. Teachers should take necessary measures for this. 


Prescribed Books for Computer Science Syllabus Class 12 CBSE 2024-25

  • NCERT Textbook for COMPUTER SCIENCE (Class XII).

  • Support Materials on the CBSE website. 


Benefits of downloading the Class 12 Computer Science Syllabus PDF 2024-25

  • The Computer Science Class 12 Syllabus 2024-25 offers a comprehensive overview of the curriculum, including the weightage of different topics.

  • Vedantu provides the CBSE Computer Science Class 12 Syllabus for free download in PDF format, making it accessible even offline.

  • This syllabus covers essential portions and includes lab practicals and related programs to help students understand it’s key concepts.

  • The updated syllabus list for Computer Science Syllabus Class 12 CBSE 2024-25 also highlights the suggested lab practical programs for teachers and schools to easily adopt.

  • Easily get a quick idea of the weightage, mark distribution and topics covered at a glance with our concisely created Syllabus PDF.

  • Download the latest CBSE Computer Science Class 12 Syllabus 2024-25 and ensure you are well-prepared for your studies.


The Computer Science Class 12 Syllabus 2024-25 Syllabus from Vedantu offers a complete guide to the latest curriculum updated to comply with the newest CBSE guidelines. The PDF highlights everything you need to know about what comprises the new course structure and the distribution of marks across the syllabus for Computer Science Class 12.


Related Topic Pages for Class 12 Computer Science


Related Study Material Links for Class 12 Computer Science

You can refer to the following study material to gain a headstart on your exam prep. The materials are provided by master teachers, ensuring their accuracy.


FAQs on CBSE Class 12 Computer Science Syllabus 2024-25: Updated Curriculum

1. What is the Project Work in the CBSE Class 12 Computer Science Syllabus?

The project work which is part of the Computer Science Syllabus for Class 12 is a class project which requires group work which aims for students to create something original and useful. This project requires students to look out for a real-life problem faced by the world and think of a possible solution for it, and then create a user-friendly application, game, software, etc. that shall be programmed to solve that problem as best as it can be solved. This kind of project requires students to not only think, but to also do some extra learning for the same in their own time. The project must have a minimum of 500 lines of code and there is a strict rule against plagiarism.


2. What is the Marks Weightage in the Class 12 Computer Science Syllabus?

The Class 12 Computer Science Syllabus is divided into the theory component for 70 marks and the practical component for 30 marks, adding up to a total of 100 marks.


The theory paper includes the following units:

  1. Programming and Computational Thinking - 2 (PCT-2) - 30 marks

  2. Computer Networks (CN) - 15 marks

  3. Data Management-2 (DM-2) - 15 marks

  4. Society, Law and Ethics-2 (SLE-2) - 10 marks

The practical component includes the following units:

  1. Lab test only Python - 7 marks

  2. Lab test Python with SQL queries - 3 marks

  3. Report file - 7 marks

  4. Viva voce (report file) - 2 marks

  5. Project - 8 marks

  6. Viva voce (project) - 3 marks.

3. What all programs have been removed from the revised course of CBSE Class XII Computer Science?

The following are a few python programs that the CBSE board has removed from the Class 12 computer science course:

  • Write a program to find the factorial of a natural number recursively.

  • Write a program to generate a recursive code to find the sum of all elements of a list.

  • Write a program to generate a recursive code to compute the nth Fibonacci number.

4. How can we download the CBSE Class 12th Computer Science Syllabus?

Follow the steps given below to download the revised computer science syllabus of 2024-25 for CBSE Class 12th:

  • Visit Vedantu.

  • Go and Click on 'Study Material.' 

  • Click to CBSE and search for CBSE Syllabus under the same header!

  • Now, you can select your class, such as the Class 12th Syllabus, and check out all the latest updates regarding the syllabus.

5. What tips should one keep in mind while preparing for CBSE Class 12 Computer Science?

Following are some relevant tips that one should keep in mind to pass exams with flying colours:

  • Go through the complete syllabus and highlight the most important topics.

  • Solve previous year question papers of class XII to get accustomed to the examination pattern and marking scheme. This will also increase your speed and accuracy during examinations.

  • Practice programming and SQL queries as much as you can to avoid any silly mistakes during the examination.

6. What type of python programs can be asked during the practicals of class XIIth Computer Science?

Here is a list of python programs that can be asked during the practical examination of the CBSE Class XII Computer Science examination:

  • Write a program in python to implement a queue and stack using a list data structure.

  • Create and input a binary file with the name, roll no and marks of students.

  • Write a program to generate random numbers between 1 and 6.

7. What is the programming language covered in the Computer Science Class 12 Syllabus?

Python is the programming language covered in the Computer Science Class 12 Syllabus 2024-25. The syllabus PDF also highlights the different practical programs suggested by CBSE.

8. What other language is taught in the CBSE Computer Science Class 12 Syllabus?

Students are also taught SQL (Structured Query Language) in Class 12 Computer Science. It is taught as a supplementary language to python, and most of the topics align between both the languages to provide for a systematic approach.

9. How can CBSE Computer Science Class 12 Syllabus 2024-25 PDF help the students?

The latest Computer Science Class 12 Syllabus PDF highlights the different chapters and topics covered in the curriculum and provides a comprehensive view of the syllabus. Students can use this PDF to gain a quick glance of the portions, or even go for a more structured reading of the entire syllabus.

10. Are there any supporting materials for Class 12 Computer Science?

You can find a lot of supplementary study materials for Class 12 Computer Science from topic pages to Previous Year papers, Revision Notes and NCERT Solutions on the Vedantu website. You can use these materials to headstart your exam preparation and expand your understanding of the subjects.