Looking for answers? Westonci.ca is your go-to Q&A platform, offering quick, trustworthy responses from a community of experts. Get accurate and detailed answers to your questions from a dedicated community of experts on our Q&A platform. Our platform provides a seamless experience for finding reliable answers from a network of experienced professionals.

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


Sagot :

Answer:

C. a nested IF statement

Explanation:

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

if (true)

{

     if(true)

     {

       

     }

}