Fill in the Blanks
- ___________ are set of instructions.
- Python was created by ____________.
- Python was release in the year ____________.
- Python is ________ independent programming language
- Python is a case-_______ language.
- Python is ______________ language ( interpreted / compiled )
- After installing python, you can start python in two modes : __________ and __________
- The default mode of python is ___________
- A high level language is computer language which uses __________ , ________ and __________ for coding
- Examples of high level languages are ______ , ________ and _______.
- __________ is the rules to be followed while writing program in any language
- IDLE Python screen has four components : ______ , _______, _______ and _________
- ________ is the area which displays name of the application and document
- Menus in Menu bar of Python window are : _______, _______, __________, ___________, ________ and ________
- Command Prompt is denoted by ________
- __________ tells you current status of control or cursor on the window
- ____________ is the area where you type code.
- In Interactive mode of python, instructions are exceuted ____________ giving the output.
- In Interactive mode, commands are type next to ___________
- Interactive mode is useful for ___________ code
- _______ function is used to display the output of any command on the screen
- Print and print are ________ things in python
- print(“Naman is a good boy”) will display ________________
- To evaluate ___________ expression, it not necessary to use print() function
- ________ is used to store data in python.
- When a new value is stored in variable, its previous value is _________
- A variable name should start with an _________ or an ____________
- A vairable name can consist of _______ , ________ and _______
- A _________ cannot be used as variable name
- Age and age are ____________ variable names
- If a variable is being used without assigning a value, it gives _______
- For writing lengthy program , you must use ________ mode in python
- ______ is extension of python files
- ______ represents the type of data stored in a variable.
- Three types of integers in python are _____ , ________ and _____
- _______ data types stores numbers with fractional / decimal part.
- String data type represents string of _______ enclosed with ______ and ________ quotation marks.
- _____ function is used to accept the value of variable from user.
- To input integer and float values, you can use ______ and _______ along with ________ function.
- print() function can have ________ parameters
- print() function supports ________ sequences to format output
- ______ is escape sequence for new line
- ______ is escape sequence for tab
- ______ is escape sequence for carriage return
- print() converts ____ or ______ into _____ before writing to the screen
- Identify and fill in blanks if variable to right or wrong and why
| Variable Name | Correct or Incorrect | Why Incorrect |
| minvalue | ||
| Employee Code | ||
| balanceFee | ||
| 10code | ||
| min@Value | ||
| c.o.s.t | ||
| else |
39. Itentify data types to store below values
| Value | Data Type |
| 100 | |
| Naman | |
| 100.1 | |
| 8 > 5 |
