Question: Assume that n is 1. For each of the combinations of a, b, and c given at right, what is the value of n after
Assume that n is 1. For each of the combinations of
a, b, and c given at right, what is the value of n after each compound if statement?
a. if (a
b) { if (b
c) { n = 2; } else { n = 3; } }
b. if (a
b) { if (b
c) { n = 2; } } else { n = 3; }
c. if (a
b) if (b
c) { n = 2; } else { n = 3;}
d. if (a
b) n = 2; else if (b
c) n = 3;

a 1 22 2 b 2 1 13 3 C 3 3 1
Step by Step Solution
3.48 Rating (155 Votes )
There are 3 Steps involved in it
To answer this question we have to evaluate the compound if statements one by one for each set of values provided in the table for a b and c We will d... View full answer
Get step-by-step solutions from verified subject matter experts
