Computer Science, asked by axitavora591, 4 months ago

which value is return by conditional operator when conditional is false.​

Answers

Answered by anjelshivani2008
0

Answer:

Conditional operators return one value if condition is true and returns another value is condition is false. These operators are used to either increase or decrease the value of the variable by one.

Answered by fearless24678
0

Answer:

Conditional operators return one value if condition is true and returns another value is condition is false. This operator is also called as ternary operator. Syntax : (Condition? true_value: false_value); Example : (A > 100 ? 0 : 1);

Similar questions