|

Important Questions Python Fundamentals Class 11 Computer Science

Important Questions Python Fundamentals Class 11 Computer Science   Very Short answer Type Questions   Q.1 What is None literal in Python? Ans: Python has one special literal, which is None. The None literal is used to indicate absence of value. It is also used to indicate the end of lists in Python. It means…

|

Important Questions Getting Started with Python Class 11 Computer Science

Important Questions Getting Started with Python Class 11 Computer Science Very Short answer Type Questions   Q.1 When was Python released? Ans- Python was released in February 1991.   Q.2 Who developed Python? Ans- Python was developed by Guido Van Rossum.   Q.3 Which two languages contributed to Python as a Programming Language? Ans- ABC…

|

Class 11 Computer Science Sample Paper Term 2 Set-3

Class 11 Computer Science Sample Paper Term 2 Set-3 Time: 2 hours Maximum Marks: 35 General Instructions The question paper is divided into 3 sections – A, B and C Section A, consists of 7 questions (1-7). Each question carries 2 marks. Section B, consists of 3 questions (8-10). Each question carries 3 marks. Section…

|

Class 11 Computer Science Sample Paper Term 2 Set-2

Class 11 Computer Science Sample Paper Term 2 Set-2 Subject Code: 083 Class: 11 Max Marks – 35 /Time – 02 Hrs. General Instructions: The question paper is divided into 3 sections – A, B and C Section A, consists of 7 questions (1-7). Each question carries 2 marks. Section B, consists of 3 questions…

Class 11 Computer Science Sample Paper MCQ based Term 2 Set-2

Class 11 Computer Science Sample Paper MCQ based Term 2 Set-2 Class: XI  Computer Science Maximum Marks: 35 Time Allowed: 90 Minutes General Instructions: The question paper is divided into 3 Sections – A, B, and C. ♦ Section A consists of 25 Questions (1-20). Attempt any 15 questions. ♦ Section B consists of 24…

Class 11 Computer Science Sample Paper MCQ based Term 2 Set-1

Class 11 Computer Science Sample Paper MCQ based Term 2 Set-1   Term 2 Examination 2021-22 Class-XI Time:- 1.5 Hours Max. Mark:35   General instructions:- 1. This Question Paper Contains 4 Parts A,B,C,D. 2. Attempt 11 questions in Part-A and all questions in Part-B, C and D. 3. Each Question in Part A carry 1…

|

Introduction to Python Module Class 11 Notes Computer Science

Introduction to Python Module Class 11 Computer Science   What is module in Python? Modules are simply files with the “. py” extension containing Python code that can be imported inside another Python Program. A module can contain executable statements as well as function definitions. A module allows you to logically organise your python code.   User-Defined Modules…