

MCQOPTIONS
Saved Bookmarks
1. |
Correct Declaration of Values to variables ‘a’ and ‘b’?$ |
A. | int a = 32, b = 40.6; |
B. | int a = 42; b = 40; |
C. | int a = 32; int b = 40; |
D. | int a = b = 42; |
Answer» D. int a = b = 42; | |