The ____ statement assigns a new array size to the specified array variable.

A. ChangeSize
B. ReDim
C. ArraySize
D. NumElem


Answer: B

Computer Science & Information Technology

You might also like to view...

Which statement is true regarding the CInt function?

a. It converts letters to numbers. b. It cannot convert a string such as "24.7" to an integer. c. A floating-point number such as 24.7 is converted to 24, dropping its decimal positions. d. A floating-point number such as 24.7 is converted to 25, rounding its decimal positions.

Computer Science & Information Technology

Basic authentication in Apache Web Server is controlled by:

a. mod_auth_digest b. AuthName c. AuthType d. mod_auth_basic

Computer Science & Information Technology

What does the code in line 1 do?

``` 1 string sentence = “C++ is my favorite programming language.”.; 2 string word; = “favorite” 3 int sentSize = sentence.size(); 4 int wordSize = word.size(); 5 int wordInSentence = sentence.find(word); ``` A. Creates a string called sentence. B. Initializes a string called sentence. C. Both A & B D. Neither. Strings aren’t initialized that way.

Computer Science & Information Technology

PowerPoint checks your spelling and grammar as you type

Indicate whether the statement is true or false

Computer Science & Information Technology