Computer Science, asked by superpower2003, 10 months ago

int a = 14; b = 4;
boolean x = (a>b)? true: false; write the ternary operator​

Answers

Answered by shiva752
1

Answer:

true

bcz a is 10 digit greater than 4

so,

a>b

then, x = (a>b)........

Similar questions