πŸ”₯ LIVE πŸ‘©β€πŸ« Teachers: Host Live Tests  |  πŸŽ“ Students: Practice Class-wise Quizzes Go to Quiz Portal βž”

(New) IT 402 Class 10 Sample Paper 2021

(New) IT 402 Class 10 Sample Paper 2021 Class X (Session 2020-2021) Max. Time: 2 Hours/Max. Marks: 50 General Instructions: Please read the instructions carefully. This Question Paper consists of 21 questions in two sections: Section A & Section B. Section A has Objective type questions whereas Section B contains Subjective type questions. Out of … Read more

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 … Read more

CBSE Sample Paper 2020-21 Information Technology (402) for class 9 Set-2

CBSE Sample Paper 2020-21 Information Technology (402) for class 9 Set-2 Class-IX Time: 3:00 hour/M.M.-50 Sub- Information Technology (Set-2) All questions are compulsory. SECTION – A 1- Fill in the blanks- (4) i) USB Stands for ___________. ii) AutoSum option is available in____ group under the home tab. iii) Which Shortcut key for print the … Read more

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 … Read more

Dictionary in Python Class 11 Notes

Dictionary in Python Class 11 Notes   Welcome to the complete Dictionary in Python β€” Class 11 Notes. A dictionary is Python’s key-value data structure β€” instead of finding items by position (like in a list), you find them by a unique key. It’s one of the most practical and most-asked chapters in CBSE Computer … Read more

List Manipulation in Python Class 11 Notes

List Manipulation in Python Class 11 Notes Welcome to the complete List Manipulation in Python β€” Class 11 Notes. Lists are the most widely used data structure in the CBSE Computer Science / Informatics Practices syllabus, and almost every board paper carries 3–4 marks directly from this chapter. These notes cover the complete CBSE syllabus … Read more

String Data Type in python Class 11 Notes

String data type in PythonΒ  Welcome to the complete String Data Type in Python β€” Class 11 Notes. Strings are one of the most important data types in Python and one of the most frequently tested topics in CBSE board exams. Every year you will find at least 2–3 questions on string indexing, slicing, and … Read more

Number Data Type in python

Number Data Type in python Python Numbers Number data types store numeric values. Number objects are created when you assign a value to them. For example βˆ’ var1 = var2 = 10 You can also delete the reference to a number object by using the del statement. The syntax of the del statement is βˆ’ … Read more

What are variables in python

What are variables in python Variables are nothing but reserved memory locations to store values. This means that when you create a variable you reserve some space in memory. Based on the data type of a variable, the interpreter allocates memory and decides what can be stored in the reserved memory. Therefore, by assigning different … Read more