Computer Science, asked by krishviradiya29, 4 months ago

if(a>b)

c=a;

else

c=b;

It can be written as:

1. c= (b>a)?a:b;

2. c= (a!=b)?a:b;

3. c= (a>b)?b:a;

4. None ​

Answers

Answered by heyParam
3

Answer:

4.  None

Explanation:

Te the correct answer will be this c= (a>b)?a:b;

It is not in the option so the answer is none.

Similar questions