Home
Download App
Study Material
{{ shortTitle }}
Video Lessons
Practice Tests
Ask Doubts
Pricing
JOIN NOW
Computer Applications
if
(
a
>
b
)
c
=
a
;
else
c
=
b
;
It can be written as:
c= (b>a)?a:b;
c= (a!=b)?a:b;
c= (a>b)?b:a;
None
Java Conditional Stmts
76 Likes
Answer
None
Answered By
9 Likes
Related Questions
Condition is essentially formed by using:
View Answer
Bookmark Now
If(a>b)&&(a>c)), then which of the statement is true?
View Answer
Bookmark Now
If a, b and c are the sides of a triangle then which of the following statement is true for: if(a!=b && a!=c && b!=c)?
View Answer
Bookmark Now
Two arithmetic expressions can be compared with if statement, using:
View Answer
Bookmark Now