Question: Given the if/else statement: if (a < 5) b = 12; else d = 30; Which of the following performs the same operation? d =
Given the if/else statement: if (a < 5) b = 12; else d = 30; Which of the following performs the same operation?
d = 30 ? b = 12 : a = 5;
| a >= 5 ? d = 30 : b = 12; |
| a < 5 ? b = 12 : d = 30; |
| b < 5 ? b = 12 : d = 30; |
| None of these |
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
