Basic Python Class 6 PDF
Document Details
Uploaded by NimbleBugle
Adamas International School
Tags
Summary
This document contains multiple choice questions on basic Python programming concepts, such as programs, machine language, interpreters, and keywords. It's a practice quiz suitable for sixth-grade level computer science courses.
Full Transcript
# Class - 6 ## Chapter - Basic Python 1. An ordered set of instruction to be executed by a computer to carry out a specific task is called **program**. 2. Computer understand the language of 0s and 1s which is called **all of the above** (machine language, low level language, binary language). 3. A...
# Class - 6 ## Chapter - Basic Python 1. An ordered set of instruction to be executed by a computer to carry out a specific task is called **program**. 2. Computer understand the language of 0s and 1s which is called **all of the above** (machine language, low level language, binary language). 3. A program written in a high-level language is called **code**. 4. Python uses **interpreter** to convert its instruction into machine language. 5. Language translator convert **source** code to **object** code. 6. Which of the following is not correct about python? **Python is based an ABC language.** 7. Python is case sensitive. **True**. 8. Which Keyboard key is used to run python programs? **F6**. 9. All keywords in python are in lower case. **True**. 10. Which of the following is not the feature of python language? **Python is a proprietary software.** 11. In which of the following mode, the interpreter executes the statement and displays the result as soon as we press 'Enter' key? **Interactive mode**. 12. By default, the Python scripts are saved with **.py** extension. 13. By default, the Python scripts are saved in **Python installation folder**. 14. **Keywords** are reserved words. 15. Which of the following is not correct for naming an identifier in Python? **Spaces are allowed in identifiers.**