1. A variable declaration must contain all of the following except a(n) ______________.
Which of the following is true of variable declarations?
Assume that you have two variables declared as int var1 = 3; and int var2 = 8;. Which of the following would display 838?
Assume that you have a variable declared as int var1 = 3;. Which of the following would display X 3X?
Assume that you have a variable declared as int varl = 3;. What is the value of 22 % var1?
Assume that you have a variable declared as int var1 = 3;. What is the value of 22 / var1?
What is the value of the expression 4 + 2 * 3?
Assume that you have a variable declared as int var1 = 3;. If var2 = ++var1, what is the value of var2?
Assume that you have a variable declared as int var1 = 3;. If var2 = var1++, what is the value of var2?
A variable that can hold the two values true and false is of type ______________.
Which of the following is not a C# comparison operator?
What is the value of the expression 6 >= 7?
Which of the following C# types cannot contain floating-point numbers?
Assume that you have declared a variable as double hourly = 13.00;. What will the statement WriteLine(hourly); display?
Assume that you have declared a variable as double salary = 45000.00;. Which of the following will display $45,000?
When you perform arithmetic operations with operands of different types, such as adding an int and a float____________________ .
Unicode is_____________________.
Which of the following declares a variable that can hold the word computer?
Which of the following compares two string variables named string1 and string2 to determine if their contents are equal?