Correct Declaration Of Values To Variables 8216a8217 And #3
Correct Declaration of Values to variables ‘a’ and ‘b’?
This multiple choice question (MCQ) is related to the book/course gs gs108 CSharp. It can also be found in gs gs108 Data Types, Variables and Operators - Integer Data Types - Quiz No.1.
Correct Declaration of Values to variables ‘a’ and ‘b’?
int a = 32, b = 40.6;
int a = 42; b = 40;
int a = 32; int b = 40;
int a = b = 42;