Get comprehensive solutions to your problems with IDNLearn.com. Discover reliable and timely information on any topic from our network of experienced professionals.
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)
{
}
}