Open In App

GATE | GATE CS 2008 | Question 85

Like Article
Like
Save
Share
Report

Which combination of the integer variables x, y and z makes the variable a get the value 4 in the following expression?




a = ( x > y ) ? (( x > z ) ? x : z) : (( y > z ) ? y : z )


(A) x = 3, y = 4, z = 2
(B) x = 6, y = 5, z = 3
(C) x = 6, y = 3, z = 5
(D) x = 5, y = 4, z = 5


Answer: (A)

Explanation: The given expression assigns maximum among three elements (x, y and z) to a.

Quiz of this Question


Last Updated : 28 Jun, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads