Skip to main content

CBSE Informatics Practices (065) | Complete Syllabus & Marks Distribution 2026-27 (Class XI & XII)

 

Title: CBSE Informatics Practices (065) | Complete Syllabus & Marks Distribution 2026-27 (Class XI & XII)

This page provides the official unit-wise marks distribution and syllabus overview for Informatics Practices (Code: 065) for the academic session 2026-27.


Part 1: Class XII Informatics Practices (Theory)

The Class 12 IP curriculum is centered around Data Science and advanced Database management.

Unit No.Unit NameMarks
IData Handling using Pandas and Data Visualization25
IIDatabase Query using SQL25
IIIIntroduction to Computer Networks10
IVSocietal Impacts10
Total Theory Marks70

Focus Topics:

  • Data Science: Python Pandas (Series & DataFrames) and Data Visualization using Matplotlib.

  • Database: SQL aggregate functions, Group By, and Having clauses.

  • Ethics: Digital Footprint, Net and Communication Etiquettes, and E-waste management.


Part 2: Class XI Informatics Practices (Theory)

The Class 11 curriculum introduces students to the foundations of data handling and relational databases.

Unit No.Unit NameMarks
IIntroduction to Computer System10
IIIntroduction to Python25
IIIDatabase Concepts and Structured Query Language (SQL)30
IVIntroduction to Emerging Trends05
Total Theory Marks70

Focus Topics:

  • Systems: Basic computer organization, CPU, and memory types.

  • Programming: Introduction to Python, data types, and control flow.

  • Databases: Relational Data Model, DDL/DML commands, and basic SQL queries.

  • Trends: Introduction to AI, Machine Learning, and Cloud Computing.


Part 3: Practical Examination Scheme (30 Marks)

Practical assessment remains an integral part of the learning process.

DescriptionMarks
Lab Test: Problem Solving using Python (Pandas/Basics) and SQL15
Report File: Minimum 15 programs (Pandas/SQL/Basics)7
Project: Real-world data analysis project5
Viva Voce: Based on the syllabus and project3

Teacher's Resources & Links

  • Official CBSE Curriculum: Download PDF

  • IP Practical List 2026-27: [Coming Soon]

  • Project Work Guidelines: [Browse Archive]

Popular posts from this blog

Project Work for Class XII Informatics Practices (065) - CBSE 2020-2021

  Marks  allotted : 05 Marks A. PROJECT GUIDELINES The aim of the class project is to create tangible and useful IT application. The learner may identify a real-world problem by exploring the environment. e.g. Students can visit shops/business places, communities or other organizations in their localities and enquire about functioning of the organization, and how data are generated, stored, and managed. The learner can take data stored in csv or database file and analyze using Python libraries and generate appropriate charts to visualize. If an organization is maintaining data offline, then the learner should create a database using MySQL and store the data in tables. Data can be imported in Pandas for analysis and visualization. Learners can use Python libraries of their choice to develop software for their school or any other social good. Learners should avoid plagiarism and violation of copyright issues while working on projects. Any resources (data, image etc.) used in t...

Assignments - XII Computer Science

POINTERS ASSIGNMENT Assignment Date: 09/09/15 Submission Date: 14/09/15 Q1. What will be the output of the following program: int main() { int x [ ] = { 50, 40, 30, 20, 10}: int *p, *t; p = x; t = x + 1; cout << *p << “,” << *t++; return 0; } Q2. What will be the output of the program( Assume all necessary header files are included) void print (char * p ) { p = "Comp"; cout<<"value is "<<p<<endl; } int main( ) { char * x = "Class XII"; print(x); cout<<"new value is "<<x<<endl; return 0; } Q3. Identify errors on the following code segment, and underline the error. float c[ ] ={ 1.2,2.2,3.2,56.2}; float *k,*g; k=c; g=k+4; k=k*2; g=g/2; cout<<”*k=”<<*k<<”*g=”<<*g; Q4. Write the output of the following program. void print (char * p ) { p = "Comp"; cout<<"valu...