Answer the following statements true (T) or false (F)

1. Numeric variables can be initialized to zero or any other number, but once they are
initialized, they cannot be changed.
2. The following two statements are equivalent. (T/F)
var1 = var2
var2 = var1
3. The value of (11 Mod 2) is 1.
4. The value of (11 \ 2) is 1.
5. If strVar.Length is 5, then the value of
strVar.Substring(4, 1)


1. False
2. False
3. True
4. False
5. True

Computer Science & Information Technology

You might also like to view...

What is a ResultSet?

What will be an ideal response?

Computer Science & Information Technology

Which of the following statements correctly rotates the button 45 degrees counterclockwise?

a. button.setRotate(45); b. button.setRotate(Math.toRadians(45)); c. button.setRotate(360 - 45); d. button.setRotate(-45);

Computer Science & Information Technology

Most programming languages allow you to express "greater than or equal to" by typing ____.

A. >= B. <= C. ==< D. ==>

Computer Science & Information Technology

A table of figures lists the figure ________ in a document

A) numbers B) captions C) titles D) names

Computer Science & Information Technology