Dive into the world of knowledge and get your queries resolved at IDNLearn.com. Get the information you need from our community of experts who provide accurate and comprehensive answers to all your questions.

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)

     {

       

     }

}

We greatly appreciate every question and answer you provide. Keep engaging and finding the best solutions. This community is the perfect place to learn and grow together. Thank you for visiting IDNLearn.com. We’re here to provide dependable answers, so visit us again soon.