The VBScript '&' operator is used for ________.
a) logical AND
b) string concatenation
c) both a and b
d) referencing
b) string concatenation
You might also like to view...
Which of the following is not a valid Java identifier?
a. my Value b. $_AAA1 c. width d. m_x
When an object has been created from a class, we say that a(n) _______________ of the class has been created.
Fill in the blank(s) with the appropriate word(s).
Which type of instruction will cause a set of instructions to execute as long as a specified Boolean expression is true?
a. If/Else b. Loop c. Repeat d. While e. None of these
Which of the following for-loop headers results in equivalent numbers of iterations:
A. for (int q = 1; q <= 100; q++) B. for (int q = 100; q >= 0; q--) C. for (int q = 99; q > 0; q -= 9) D. for (int q = 990; q > 0; q -= 90) a. A and B. b. C and D. c. A and B have equivalent iterations and C and D have equivalent iterations. d. None of the loops have equivalent iterations.