1/15
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
Expression
A fundamental building block in programs that evaluates to a typed value at runtime.
Numerical Operators
Operators used for arithmetic operations such as addition (+), multiplication (*), division (/), and modulus (%).
Method Call Expression
A call to a method associated with an object that performs an operation or returns information, e.g., 'hello'.upper().
Constructor Expression
An expression that creates a new object of a specified type using its class constructor, e.g., int('110').
Operator Precedence
The rules that determine the order in which different operations are evaluated in an expression.
Type Conversion
The process of converting a value from one data type to another, often using constructor functions like str() or int().
Expression
A fundamental building block in programs that evaluates to a typed value at runtime.
Literal Expression
An expression that results in an object guided by what was literally written in code, e.g., the string 'hello' produces a str object.
Operator Expression
An expression that includes operators like addition or multiplication to evaluate a numerical result based on operator precedence rules.
Relational Operators
Operators that compare two values and return a boolean result, e.g., ==, !=, >, <.
Function Call Expression
An expression that calls a function to perform a specific computation, e.g., round(3.5).
Type Conversion
The process of converting a value from one data type to another, often using constructor functions like str() or int().
Equality Operator (=)
A relational operator that compares two values and returns True if they are equal, or False otherwise.
Inequality Operator (!=)
A relational operator that compares two values and returns True if they are not equal, or False otherwise.
Greater Than Operator ( > )
A relational operator that compares two values and returns True if the left value is greater than the right value, or False otherwise.
Less Than Operator ( < )
A relational operator that compares two values and returns True if the left value is less than the right value, or False otherwise.