Question:Choose another way to write x ? a = b : a = c 

A if ('x') { a = b; } else { a = c; } 

B if (x) { a = c; } else { a = b; } 

C x : a = c ? a = b 

D None of above 

+ Answer
+ Report
Total Preview: 796

Copyright © 2024. Powered by Intellect Software Ltd