Arrange the following such that the a is false, b is true, c is 6 and d is 5 at the end of the program. Unselect any unwanted statements using the check box.
![]() |
b = d < c ? e : !a; |
![]() |
int c = 5, d = 15; |
![]() |
boolean a = true, b = false; |
![]() |
d = b ? d - 2 * c : --d; |
![]() |
a = d > c ? e : d < c; |
![]() |
System.out.println(a + " " + b + " " + c + " " + d); |
![]() |
boolean e = d > c && b; |
![]() |
c++; |
Topic: Ternary Operator In Java