Saved Bookmarks
| 1. |
6. Write the following if...else statement using the conditional operaif (x = = 100)a = "x is 100"elsea = "x is not 100" |
|
Answer» X == 100 ? a = "X is 100" : a = "X is not 100" This is the CORRECT answer Hope you understand Thank You |
|