

MCQOPTIONS
Saved Bookmarks
1. |
Which of the conversions are valid for the given set of code?
static void Main(string[] args) { int a = 22; long b = 44; double c = 1.406; b = a; c = a; a = b; b = c; } |
A. | C = a, b = c |
B. | A = c, b = a |
C. | B = a, c = a |
D. | All of the mentioned |
Answer» B. A = c, b = a | |