1.

Conditional operator is not used to make two way decisions​

Answer»

Answer:

In computer programming, ?: is a TERNARY OPERATOR that is part of the syntax for basic conditional expressions in SEVERAL programming LANGUAGES. It is commonly referred to as the conditional operator, inline if (iif), or ternary if. An expression a ? B : c evaluates to b if the value of a is true, and otherwise to c .



Discussion

No Comment Found