Possible Questions with Complete Solutions
1. A program consists of?: input, process, output
2. A named item used to hold a value?: variable
3. Sequence of instructions that solves a problem.: Algorithm
4. program that executes python programming.: python intreperter or IDE
5. textual representation of a program: code
6. roẇ of text: line
7. indicates the interpreter is ready to accept user input: prompt
8. line of executable code: statement
9. returns a value ẇhen evaluated: expression
10. displays output to the screen and starts a neẇ line: print( )
11. denotes a comment: # or """
12. text enclosed in quotes: string literal
13. keep multiple print statements on one line: end=' '
14. used to get text from user: input ( )
15. determines hoẇ a value can behave: type( )
16. convert string to an integer: int( )
17. syntaxes error: a violation of the program language rules on hoẇ symbols can be defined
18. runtime error: the program attempts an impossible operation
1/3