1.

Write the equivalent code for the following statement. R = (P<Q?P:Q)

Answer»

If(P<Q)

R = P; 

else 

R = Q;



Discussion

No Comment Found

Related InterviewSolutions