What is a nested if and how many times can we nest?

It is an if branch within an if branchIt is the indentation of the code inside an if branchYou can only have one nest per if branchWe can have infinite nests

Great work. A nested if is an if branch within another if branch and there's no limit to the number of nests we can have.

Not quite. A nested if is an if branch within another if branch and there's no limit to the number of nests we can have.