M2 Flashcards
a symbol that specifies a particular action in an expression
operator
object instantation
new
error suppression
@
is a characteristic of operators that determines the order in which they evaluate the operands surrounding them.
operator precedence
is a characteristic of an operator specifies how operations of the same precedence are evaluated as they are executed.
operator associativity
_______ statement is placed within the code of a loop to cause the program to break out of the loop statement.
break
statement that causes execution of the current loop iteration to end and commence at the beginning of the next iteration.
continue
statement used to jump to other section of the program to support labels.
goto … label:
alternative enclosure syntax (‘{ }’):
: …. endif; / endwhile;
if (…..) :
…
endif;