Computer Science, asked by sanjay32151, 15 days ago

maximum = (75 > 35) ? 25 : 50; The value stored in the variable maximum is________

Answers

Answered by anindyaadhikari13
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
Math, 15 days ago