The elements of an array are stored in __________ storage locations in the computer’s memory.
Fill in the blank(s) with correct word
consecutive
Computer Science & Information Technology
You might also like to view...
The best font size for reading is 10-12 points
Indicate whether the statement is true or false
Computer Science & Information Technology
Given the following code, what is the correct statement to insert the string str2 into str1, directly after the 'd'?
string str1="abcdefg"; string str2="ABCDE"; a. str1.insert(4,str2); b. str2.insert(4,str1); c. insert(str1,4)=str2; d. insert(str2,4)=str1;
Computer Science & Information Technology