71.5k views
3 votes
An IF statement inside the true block of another IF statement is called:

A. it is not possible to put an IF statement inside the block of another IF statement
B. a relational operator
C. a nested IF statement
D. a branched IF statement
E. a conditional operator

User Massfords
by
7.2k points

1 Answer

5 votes

Answer:

C. a nested IF statement

Step-by-step explanation:

Anytime something is contained within another of itself, it's referred to as being "nested".

if (true)

{

if(true)

{

}

}

User Sbose
by
6.0k points