Python Programming Terms with Complete Solutions
Python Programming Terms with Complete Solutions algorithm - Correct Answer A set of specific steps for solving a category of problems token - Correct Answer basic elements of a language(letters, numbers, symbols) high-level language - Correct Answer A programming language like Python that is designed to be easy for humans to read and write. low-level langauge - Correct Answer A programming language that is designed to be easy for a computer to execute; also called machine language or assembly language keyword - Correct Answer define the language's syntax rules and structure, and they cannot be used as variable names statement - Correct Answer instruction that the Python interpreter can execute operators - Correct Answer special tokens that represent computations like addition, multiplication and division modulus operator - Correct Answer %, works on integers (and integer expressions) and gives the remainder when the first number is divided by the second evaluate - Correct Answer To simplify an expression by performing the operations in order to yield a single value. int - Correct Answer A Python data type that holds positive and negative whole numbers float - Correct Answer A Python data type which stores floating-point numbers. Floating-point numbers are stored internally in two parts: a base and an exponent. When printed in the standard format, they look like decimal numbers flow of execution - Correct Answer The order in which statements are executed during a program run. function - Correct Answer A named sequence of statements that performs some useful operation. Functions may or may not take parameters and may or may not produce a result fruitful function - Correct Answer A function that returns a value when it is called. local variable - Correct Answer A variable defined inside a function. A local variable can only be used inside its function. Parameters of a function are also a special kind of local variable. parameter - Correct Answer A name used inside a function to refer to the value which was passed to it as an argument. boolean function - Correct Answer A function that returns a Boolean value. The only possible values of the bool type are False and True. None - Correct Answer A special Python value. One use in Python is that it is returned by functions that do not execute a return statement with a return argument.
Written for
- Institution
- Python Programming
- Course
- Python Programming
Document information
- Uploaded on
- February 18, 2026
- Number of pages
- 57
- Written in
- 2025/2026
- Type
- Exam (elaborations)
- Contains
- Questions & answers