+ 3
Answer to this question.
Answer is in the question,'Type in a code to declare variable b and assign a's value to b, and then print their sum to the screen' Answer is A, +.
7 Respuestas
+ 4
the correct answer is b = a is answer
+ 1
this QA discussion is for queries.. not to get solutions of homeworks.. first self try..
+ 1
int var3;
double salary;
bool ab_c14;
0
Fill in the blanks to declare an int variable named var3, a double variable named salary, and a bool variable named ab_c14.
var3;
salary;
ab_c14;
0
Fill in the blanks to declare a variable called 'city' and assign the value "new york" to it
String _ ;
City _
"New york" _
0
Fill in the blanks to declare a variable called 'city' and assign the value "New York" to it.
String
city
;
city
=
"New York"
;
0
fill in the blanks to declare a variable called country and assign the value ''USA'' to it.