maximum = (75 > 35) ? 25 : 50; The value stored in the variable maximum is________
Answers
Answered by
2
SOLUTION:
Given,
→ maximum = (75 > 35) ? 25 : 50;
We have find out the value of the variable 'maximum'
>> maximum = (75 > 35) ? 25 : 50
>> maximum = (true) ? 25 : 50 (As 75 > 35 is true)
As the condition is true,
>> maximum = 25.
ANSWER:
- maximum = 25.
•••♪
Similar questions