M2 Flashcards

1
Q

a symbol that specifies a particular action in an expression

A

operator

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

object instantation

A

new

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

error suppression

A

@

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

is a characteristic of operators that determines the order in which they evaluate the operands surrounding them.

A

operator precedence

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

is a characteristic of an operator specifies how operations of the same precedence are evaluated as they are executed.

A

operator associativity

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

_______ statement is placed within the code of a loop to cause the program to break out of the loop statement.

A

break

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

statement that causes execution of the current loop iteration to end and commence at the beginning of the next iteration.

A

continue

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

statement used to jump to other section of the program to support labels.

A

goto … label:

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

alternative enclosure syntax (‘{ }’):

A

: …. endif; / endwhile;
if (…..) :

endif;

How well did you know this?
1
Not at all
2
3
4
5
Perfectly