CBSE Class 11 Computer Science
Download CBSE Class 11 Computer Science books, NCERT Solutions, Latest sample papers and past year question papers with solutions. Also access latest syllabus and guidelines issued by CBSE and NCERT. Get important questions and answers for all chapters.All study material has been prepared based on latest guidelines, term examination pattern and blueprint issued by cbse and ncert
Click below for Class 11 Computer Science worksheets, assignments, syllabus, ncert cbse books, ncert solutions, easy to learn concepts and study notes of all chapters
CBSE Class 11 Computer Science sample papers, NCERT Solutions, guess papers, last year question papers, hots, syllabus, multiple choice questions (mcqs) easy to learn and understand concepts of all chapters. Also includes revision worksheets and easy to learn study notes based on cbse guidelines. students and parents can download free a collection of all computer science study material issued by various best schools in india. the computer science study material has been carefully compiled by the best cbse teachers in india
Please refer to the most updated syllabus for Class 11 Computer Science
1. Prerequisites
No major prerequisites are required for this course other than basic Mathematical skills. However, it will be helpful if the student has a basic knowledge of Computer Applications.
2. Learning Outcomes
a) Develop basic computational thinking. Learn how to reason with variables, state transitions, conditionals, and iteration.
b) Understand the notion of data types, and higher order data structures such as lists, tuples, and dictionaries.
c) Appreciate the notion of an algorithm, and understand its structure, including how algorithms handle corner cases.
d) Develop a basic understanding of computer systems - architecture, OS, mobile and cloud computing.
e) Learn basic SQL programming.
f) Learn all about cyber safety.
3. Distribution of Marks
Unit No. | Unit Name | Marks |
1. | Programming and Computational Thinking - 1 | 35 |
2. | Computer Systems and Organisation | 10 |
3. | Data Management - 1 | 15 |
4. | Society, Law and Ethics - 1 | 10 |
5. | Practical | 30 |
| Total | 100 |
4.1 Unit 1: Programming and Computational Thinking (PCT-1) (80 Theory + 70 Practical)
a) Familiarization with the basics of Python programming: a simple “hello world" program, process of writing a program, running it, and print statements; simple data-types: integer, float, string Introduce the notion of a variable, and methods to manipulate it (concept of L-value and R- value even if not taught explicitly)
b) Knowledge of data types and operators: accepting input from the console, assignment statement, expressions, operators and their precedence.
c) Conditional statements: if, if-else, if-elif-else; simple programs: e.g.: absolute value, sort 3 numbers, and divisibility.
d) Notion of iterative computation and control flow: for, while, flowcharts, decision trees and pseudo code; write a lot of programs: interest calculation, primarily testing, and factorials.
e) Idea of debugging: errors and exceptions; debugging: pdb, break points.
f) Lists, tuples and dictionary: finding the maximum, minimum, mean; linear search on list/tuple of numbers, and counting the frequency of elements in a list using a dictionary. Introduce the notion of accessing elements in a collection using numbers and names.
g) Sorting algorithm: bubble and insertion sort; count the number of operations while sorting.
h) Strings: compare, concat, substring; notion of states and transitions using state transition diagram
4.2. Unit 2: Computer Systems and Organisation (CSO) (20 Theory + 6 Practical)
a) Basic computer organisation: description of a computer system and mobile system, CPU, memory, hard disk, I/O, battery, power.
b) Types of software: application, OS, utility, libraries.
c) Language of Bits: bit, byte, MB, GB, TB, and PB.
d) Boolean logic: OR, AND, NAND, NOR, XOR, NOT, truth tables, De Morgan’s laws
e) Information representation: numbers in base 2, 8, 16, unsigned integers, binary addition
f) Strings: ASCII, UTF8, UTF32, ISCII (Indian script code)
g) Execution of a program: basic flow of compilation – program à binary à execution
h) Interpreters (process one line at a time), difference between a compiler and an interpreter
i) Running a program: Notion of an operating system, how an operating system runs a program, idea of loading, operating system as a resource manager.
j) Concept of cloud computers, cloud storage (public/private), and brief introduction to parallel computing.
4.3. Unit 3: Data Management (DM-1) (30 Theory+ 24 Practical)
a) Relational databases: idea of a database and the need for it, relations, keys, primary key, foreign key; use SQL commands to create a table, keys, foreign keys; insert/delete an entry, delete a table.
b) SQL commands: select, project, and join; indexes, and a lot of in-class practice.
c) Basics of NoSQL databases - Mongo DB.
4.4. Unit 4: Society, Law and Ethics (SLE-1) - Cyber safety (10 Theory)
a) Cyber safety: safely browsing the web, identity protection, confidentiality, social networks, cyber trolls and bullying
b) Appropriate usage of social networks: spread of rumours, and common social networking sites (Twitter, LinkedIn, and Facebook) and specific usage rules.
c) Safely accessing web sites: adware, malware, viruses, Trojans
d) Safely communicating data: secure connections, eavesdropping, phishing and identity verification.
5. Practical
S.No. | Unit Name | Marks (Total=30) |
1. | Lab Test (12 marks) |
|
| Python program (60% logic + 20% documentation + 20% code quality) | 8 |
| SQL program (at least 4 queries) | 4 |
2. | Report File + viva (10 marks) |
|
| Report file: Minimum 20 Python programs and 8 SQL commands | 7 |
| Viva voce (based on the report file) | 3 |
3. | Project (that uses most of the concepts that have been learnt) (See CS-XII for the rules regarding the projects). | 8 |
5.1. Programming in Python: At least the following Python concepts should be covered in the lab sessions: expressions, conditionals, loops, list, dictionary, and strings. The following are some representative lab assignments.
a) Find the largest and smallest numbers in a list.
b) Find the third largest number in a list.
c) Test for primarily.
d) Find whether a string is a palindrome or not.
e) Given two integers x and n, compute xn.
f) Compute the greatest common divisor and the least common multiple of two integers.
g) Test if a number is equal to the sum of the cubes of its digits. Find the smallest and largest such numbers.
5.2. Data Management: SQL Commands At least the following SQL commands should be covered during the labs: create, insert, delete, select, and join. The following are some representative assignments.
a) Create a student table with the student id, name, and marks as attributes where the student id is the primary key.
b) Insert the details of a new student in the above table.
c) Delete the details of a particular student in the above table.
d) Use the select command to get the details of the students with marks more than 80.
e) Create a new table (name, date of birth) by joining two tables (student id, name) and (student id, date of birth).
f) Create a new table (order ID, customer Name, and order Date) by joining two tables (order ID, customer ID, and order Date) and (customer ID, customer Name, contact Name, country).
Unit 1: Computer Systems and Organisation (10 Marks)
- 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, and interpreter), application software
- Operating System(OS): functions of the operating system, OS user interface
- Boolean logic: NOT, AND, OR, NAND, NOR, XOR, truth tables and De Morgan’s laws, Logic circuits
- Number System: Binary, Octal, Decimal and Hexadecimal number system; conversion between number systems
- Encoding Schemes: ASCII, ISCII, and Unicode (UTF8, UTF32)
Note for Students: This unit provides a fundamental understanding of how computer hardware and software interact, including logical operations and how data is represented numerically.
Unit 2: Computational Thinking and Programming - I (45 Marks)
- Introduction to Problem-solving: Steps for Problem-solving (Analyzing the problem, developing an algorithm, coding, testing, and debugging), representation of algorithms using flowchart and pseudocode, 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 operators, augmented assignment operators, identity operators (is, is not), membership operators (in not in)
- Expressions, statement, type conversion, and input/output: precedence of operators, expression, evaluation of an expression, type-conversion (explicit and implicit conversion), accepting data as input from the console and displaying output.
- Errors: syntax errors, logical errors, and run-time errors
- Flow of Control: introduction, use of indentation, sequential flow, conditional and iterative flow
- Conditional statements: if, if-else, if-elif-else, flowcharts, simple programs: e.g.: absolute value, sort 3 numbers and divisibility of a number.
- Iterative Statement: for loop, range(), 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, string operations (concatenation, repetition, membership and slicing), traversing a string using loops, built-in functions/methods–len(), capitalize(), title(), lower(), upper(), count(), find(), index(), endswith(), startswith(), isalnum(), isalpha(), isdigit(), islower(), isupper(), isspace(),lstrip(), rstrip(), strip(), replace(), join(), partition(), split()
- Lists: introduction, indexing, list operations (concatenation, repetition, membership and slicing), traversing a list using loops, built-in functions/methods–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 and slicing); built-in functions/methods – 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; linear search on a tuple of numbers, counting the frequency of elements in a tuple.
- Dictionary: introduction, accessing items in a dictionary using keys, mutability of a dictionary (adding a new term, modifying an existing item), traversing a dictionary, built-in functions/methods – len(), dict(), keys(), values(), items(), get(), update(), del, clear(), fromkeys(), copy(), pop(), popitem(), setdefault(), max(), min(), sorted(); 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()).
Note for Students: As the most significant part of the syllabus, this unit focuses on developing core programming skills in Python, covering everything from basic syntax to complex data structures.
Unit 3: Society, Law, and Ethics (15 Marks)
- Digital Footprints
- Digital Society and Netizen: net etiquettes, communication etiquettes, social media etiquettes
- Data Protection: Intellectual property rights (copyright, patent, trademark), violation of IPR (plagiarism, copyright infringement, trademark infringement), open source software and licensing (Creative Commons, GPL and Apache)
- Cyber Crime: definition, hacking, eavesdropping, phishing and fraud emails, ransomware, cyber trolls, cyber bullying
- Cyber safety: safely browsing the web, identity protection, confidentiality
- Malware: viruses, trojans, adware
- E-waste management: proper disposal of used electronic gadgets.
- Information Technology Act (IT Act)
- Technology and society: Gender and disability issues while teaching and using computers
Note for Students: This unit explores the impact of technology on society, emphasizing the importance of digital ethics, cybersecurity, and the legal frameworks governing the digital world.