
Chapterwise Question Bank CBSE Class 11 Computer Science (Python)
Computer overview and its Basics. 2. Software Concepts. 3. Data Representation. 4. Microprocessor and Memory Concepts. 5. Programming Methodology. 6. Algorithms and Flowcharts. 7. Introduction to Python. 8. Getting Started with Python. 9. Operators in Python. 10. Functions. 11. Conditional and Looping Constructs. 12. Strings. 13.
Q.1 „Python is an interpreted language‟. What does it mean to you? Ans- It means that the Python installation interprets and executes the code line by line at a time. Q.2 What does a cross platform language mean? Q.3 Python is a Free and Open Source language. What do …
Free Class 11 Python List Questions for Practice
Nov 30, 2020 · Python List Questions for Practice. ASSIGNMENT SET – 1. Q Write a function evensum(list) in python that takes list of 10 numbers as argument and display the sum of all …
(Chapter Wise) Python Basic MCQs for Class 11
Python Basic MCQs for Class 11. In this section we will learn the python fundamental MCQ for CBSE class 11 Computer Science. This exercise will also help the students of CBSE Computer Science class 12 students who are appearing in Multiple Choice Question based, Term 1 examination in November/ December 2021.
Python Programming Class 11 Questions and Answers
Apr 9, 2025 · Python Programming Class 11 Very Short Answer Type Questions. Question 1. For B=x: x is a natural number less than 8, write the set. Question 2. What are the types of matrix? Various types of matrix are row matrix, column matrix, square matrix, diagonal matrix, scalar matrix. Question 3.
70+ Important (Solved) Python Output based Questions class 11
Nov 23, 2020 · Python Output based Questions are important for Exam. for Loop output based questions, while loop output based questions, output based questions based on conditional statement in python
[Class 11] Important programs in Python - Code + Examples
Dec 13, 2024 · 1. Program to sort 3 numbers in descending order using if-else statements. a = int(input( "Enter first number: " )) b = int(input( "Enter second number: " )) c = int(input( "Enter third number: " )) if. a>b: if. b>c: print( "Numbers in sorted order:" ,a, " " ,b, " " ,c) else. if. c>a: print( "Numbers in sorted order:" ,c, " " ,a, " " ,b) else.
NCERT Solutions for Class 11 Computer Science (Python)
Detailed, Step-by-Step NCERT Solutions for Class 11 Computer Science (Python) solved by Expert Teachers as per NCERT (CBSE) Book guidelines. Download Now. Here is the list of chapters for Class 11 Computer Science (Python) NCERT Textbook. 1. Computer overview and its Basics. 2. Software Concepts. 3. Data Representation. 4.
Important Questions Python Fundamentals Class 11 Computer …
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 ―There is nothing here‖.
Python Programming Class 11 MCQ Online Test - Learn CBSE
Apr 8, 2025 · Class 11 Python Programming MCQ MCQ on Python Programming Class 11. Class 11 Python Programming MCQ – Python Programming MCQ Class 11. Multiple Choice Questions. ... Question 11. Index value of last element in list is _____. a. 0 b. -10 c. -1 d. 10 Answer: c. -1. Question 12. What will be the output of the following code?