WorksheetsSelection Structures
Total questions: 22
Worksheet time: 14mins
What is !=
greater than
not equal to
equal to
and
What is <
Greater than
Less than or Equal to
Less than
Greater than or Equal to
What is ==
equal to
not equal to
and
or
What is >
Or
Greater than
And
Less than
The Java (blank blank) help us to ask questions
(a)
What is <=
Less than or Equal to
Greater than or Equal to
Greater than
Equal to
What is &&
And
Equal to
Or
Not equal to
What is >=
Greater than or Equal to
Greater than
Less than
Less than or Equal to
What is ||
Less than
Greater than
Or
And
OR
||
!
&&
It returns true if and only if both expressions are true, else returns false.
(a)
AND
&&
||
!
(Blank Blank) are statements that check an expression (answerable by TRUE or FALSE) then may or not execute a statement or group of statements based on the result of the condition.
(a)
The Java (blank) statement executes one statement from multiple conditions.
Switch
Nested if-else
If-else-if
NOT
!
||
&&
It return true if any of the expressions are true, else returns false
(a)
This Java statement tests the condition. It executes the (blank) block if condition is true.
If-else-if
if-else
if
This statement executes one condition from multiple statements.
If-else-if ladder
if
if-else
The (blank) statement executes one if or else if statement inside another if or else if statement.
Nested if-else
switch
If-else-if
Conditional NOT
TRUE | TRUE
FALSE | FALSE
TRUE | FALSE
FALSE | TRUE
SELECTION STATEMENTS
Selection statements are statements that check an expression (answerable by TRUE or FALSE) then may or not execute a statement or group of statements based on the result of the condition.
• Also called as (blank blank) statements
(a)
This statement also tests the condition. It executes the (blank) block if condition is true otherwise (blank) block is executed.
if-else-if ladder
if-else
if
