1.

Convert the following if – else to a single conditional statement:If (x>=10)a = m;

Answer»

a = (x> =10)? m + 5:m;



Discussion

No Comment Found