CBSE Class 11 Computer Science (083) Sample Paper 2020-21

CBSE Class 11 Computer Science (083) Sample Paper General Instructions: 1- This question paper contains two parts A and B. Each part is compulsory. 2- Part-A has 2 sections: a) Section – I is short answer questions, to be answered in one word or one line. b) Section – II has two case studies questions….

Unit 1- Basic Computer Organisation

CBSE Computer Science with Python Class 11 Basic Computer Organisation A computer is an electronic device, under the control of instructions stored in its memory that can accept data (input), process the data according to specified rules (Program) on processor & produces information (output), and store the information for future use. Data vs Information Data…

|

CBSE Computer Science Practical File for class 12 2024-25

CBSE Computer science practical file for class 12  In this section CBSE students of class 12 Computer science can check the important python programs that must be prepare before the practical examination. Here are 20+ python programs with output, for Computer science practical file Term 1.   Program:1 Write a python Program to take input…

Operator in python

Operator in python Operators are the constructs which can manipulate the value of operands. Consider the expression 4 + 5 = 9. Here, 4 and 5 are called operands and + is called operator. Types of Operator Python language supports the following types of operators. Arithmetic Operators Comparison (Relational) Operators Assignment Operators Logical Operators Bitwise…

|

Tuple in Python Class 11 Notes Computer Science/ Informatics Practices

Tuple in Python Class 11 Notes : Easy Notes for CBSE Students Introduction to Tuples in Python Hey Class 11-12 CBSE students! Welcome to your easy notes on Tuples in Python—a key topic in your Computer Science syllabus. A tuple is like a list, but you cannot change its elements after creating it. It’s a…