Consider the following code:
n ← 4
x ← -2.5
IF(n < 3) {
DISPLAY(Team A)
} ELSE {
IF(n < 2) {
DISPLAY(Team B)
} ELSE {
IF(x > -2) {
DISPLAY(Team C)
} ELSE {
DISPLAY(Team D)
}
}
}
Which of the following is the output of the code?
a) Team A
b) Team B
c) Team C
d) Team D