Nested If - R Nested If Statements Flashcards

1
Q

108) You can also have if statements inside if statements, this is called nested if statements.

A

x <- 41 if (x > 10) {print(“Above ten”) if (x > 20) {print(“and also above 20!”)} else {print(“but not above 20.”)}} else {print(“below 10.”)}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly