Assessment | 15 Actual Questions and Answers |
2025 Update | 100% Correct.
Reverse Course - answer-A learning method involving video lectures at home
and labs in class
IPO thinking standard - answer-Input-Process-Output thinking standard to
determine coding structure
__name__ - answer-A special variable in Python that holds the name of the
current module
CS50 - answer-An introductory course to computer science offered by Harvard
University
Merge Sort - answer-An efficient, comparison-based sorting algorithm
Lists - answer-Ordered collection of items in Python denoted by square
brackets
Tuples - answer-Immutable ordered collection of items in Python denoted by
parentheses
, Variables and Expressions - answer-Symbols used to represent values and
perform operations
Functions - answer-Blocks of organized, reusable code for specific tasks
Lab Walkthroughs - answer-Guided demonstrations of critical programming
exercises
Arithmetic Operators - answer-Symbols used to perform mathematical
operations in Python
Comparisons - answer-Operations that return true or false based on the
comparison of values
Incrementing - answer-Increasing the value of a variable by a specified amount
Absolute value function - answer-Function to obtain the magnitude of an
integer, removing the negative sign
Type conversion/casting - answer-Converting a value to a different data type,
e.g., int('1') returns 1 as an integer
Precedence - answer-Enforcing order of operations using parentheses, e.g., 3 *
(2+1) = 9