Podcast
Questions and Answers
An ordered set of instruction to be executed by a computer to carry out a specific task is called ______.
An ordered set of instruction to be executed by a computer to carry out a specific task is called ______.
program
Computer understand the language of 0s and 1s which is called
Computer understand the language of 0s and 1s which is called
A program written in a high-level language is called ______ code
A program written in a high-level language is called ______ code
object
Python uses ______ to convert its instruction into machine language.
Python uses ______ to convert its instruction into machine language.
Signup and view all the answers
Language translator convert ______ code to ______ code.
Language translator convert ______ code to ______ code.
Signup and view all the answers
Python is case sensitive.
Python is case sensitive.
Signup and view all the answers
Which Keyboard key is used to run python programs?
Which Keyboard key is used to run python programs?
Signup and view all the answers
All keywords in python are in lower case.
All keywords in python are in lower case.
Signup and view all the answers
Which of the following is not the feature of python language?
Which of the following is not the feature of python language?
Signup and view all the answers
In which of the following mode, the interpreter executes the statement and displays the result as soon as we press 'Enter' key?
In which of the following mode, the interpreter executes the statement and displays the result as soon as we press 'Enter' key?
Signup and view all the answers
By default, the Python scripts are saved with ______ extension.
By default, the Python scripts are saved with ______ extension.
Signup and view all the answers
By default, the Python scripts are saved in ______
By default, the Python scripts are saved in ______
Signup and view all the answers
______ are reserved words.
______ are reserved words.
Signup and view all the answers
Which of the following is not correct for naming an identifier in Python?
Which of the following is not correct for naming an identifier in Python?
Signup and view all the answers
Study Notes
Python - Basic Concepts
- An ordered instruction set to execute a task is called an algorithm or a program
- Computers understand binary code (0s and 1s), also known as machine language or low-level language.
- Programs written in high-level languages (like Python) need translation into machine code.
- Python uses an interpreter to convert its high-level code into machine code.
- Python is an open-source language.
- Python was developed by Guido van Rossum.
- Python is case-sensitive
- Python programs are run using the Ctrl + r key combination.
- Keywords in Python are lowercase.
- Python is not proprietary software.
- Python statements are executed and displayed when the enter key is pressed in interactive mode.
- Python code files (.py) are usually saved in the python installation folder or on a drive.
- Python has reserved words (keywords) that cannot be used as identifiers.
Python Identifiers
- Identifiers can be any length.
- Identifiers cannot be keywords.
- Special symbols (like !, @, #, $, %, etc.) are not allowed in identifiers.
- Spaces are not allowed in identifiers.
Studying That Suits You
Use AI to generate personalized quizzes and flashcards to suit your learning preferences.
Related Documents
Description
Test your knowledge on the fundamental concepts of Python, including algorithms, identifiers, and the workings of high-level programming languages. This quiz covers essential information about Python's features, its case sensitivity, and the use of keywords. Perfect for beginners looking to solidify their understanding of Python basics.