Questions
Save
Practice questions for this set
Learn 1 /7 Study using Learn
A container that holds methods.
Choose an answer
1 class 2 control structure
3 >= 4 AND
Don't know?
Terms in this set (132)
control structure A logical design that controls the order in which
statements execute.
sequence structure A set of statements that execute in the order that
they appear.
decision structure Execute statements only under certain
circumstances.
, if-else Will execute one block of statement if its Boolean
expression is true or another block if its Boolean
expression is false.
AND &&
OR ||
NOT !
AND operator Both subexpression must be true for the compound
expression to be true.
OR operator One or both subexpression must be true for the
compound expression to be true.
NOT operator It negates (reverses) the value to its opposite one.
< Less than
> Greater than
>= Greater than or equal to
<= Less than or equal to
== equal to
!= not equal to
flag A variable that signals when some condition exists in
the program
String.Compare Compares two strings