boolean expressions
1.A=12 and B=(A==20)?30:48
Answers
Answered by
1
48
false
if the condition is true then the 1st expression will execute & if the condition is wrong then 2nd expression will execute.
here, A is not equal to 20 so ...the condition is wrong
Similar questions