If Statements Flashcards

1
Q

Give 6 examples of comparison operators.

A

> , < , >=, <=, !=, ===

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

What data type do comparison expressions evaluate to?

A

Boolean

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

What is the purpose of an if statement?

A

A decision-making statement that guides a program to make decisions based on specified criteria

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

Is else required in order to use an if statement?

A

The else statement is not mandatory and will execute only if the if condition fails.

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

Describe the syntax (structure) of an if statement.

A

if ( condition) { }
if statement, condition, code block (else code block).

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

What are the three logical operators?

A

And, Or, Not

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

How do you compare two different expressions in the same condition?

A

Using logical operators

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