…Abstract…
This document is your go-to guide for nailing the Computer
Science practical viva for CBSE Class 11 and 12🎉🎉🎉.
Packed with frequently asked questions straight from external
examiners🙄, it breaks down everything you need—from
Python basics to logic building, project insights, and database
handling. No boring textbook lingo, just simple, relatable
answers to help you flex your knowledge😉 and secure those
full marks💯. Whether you're prepping last minute or just want
to feel fully prepped, this is your vibe!!!!👌😎
1. Which language translator is used by python?
ANS: Interpreter
2. How python interpreter interprets the code?
ANS: Python interpreter interprets the code line by line.
3. Is python case sensitive?
, ANS:NO
4. What are Python Keywords?
ANS: Keyword is a special word that has a special meaning and purpose.
5. What are the built-in data types available in python?
ANS: Numbers, Strings, Lists, Tuples, Dictionaries
6. Name a few mutable data types of python.
ANS: Lists, Dictionaries
7. Name any 3 Immutable Data Types.
ANS: Numbers, Strings, Tuples
8. Which data type store the combination of real and imaginary numbers?
ANS: Complex Numbers
9. What is the significance of an empty/ pass statement in python?
ANS: Pass means, no-operation Python statement,
10. What are comments in python?
ANS: Python comments are non-executable text written in the python program to
give a description for a statement or group of statements.
11. What is the use of comments in Python?
ANS: comments are used for the description or information related to statements,
basic details of programs etc.
12. Which symbols are used for single line comments and multiple line comments?
ANS: #(hash) symbol is used for single line comment and ‘’’ (Triple quotes) are used
for multiline comments.
13. What are literals in Python?