Saved Bookmarks
| 1. |
Convert the following if – else to a single conditional statement:If (x>=10)a = m; |
|
Answer» a = (x> =10)? m + 5:m; |
|