C++ arrays

C++ arrays

Assessment

Flashcard

Computers

12th Grade

Hard

Created by

Quizizz Content

FREE Resource

Student preview

quiz-placeholder

25 questions

Show all answers

1.

FLASHCARD QUESTION

Front

Unlike regular variables, arrays can hold multiple values

Back

true

2.

FLASHCARD QUESTION

Front

In a C++ array, every element has the same

Back

data type (like int, bool, char, etc)

3.

FLASHCARD QUESTION

Front

What is the last legal subscript that can be used with the following array? int values[5]; Hint: what's the highest number you can put in for x in the [ ] for "cout<<values[x]"?

Back

4

4.

FLASHCARD QUESTION

Front

Given the following declaration, where is the value 77 stored in the scores array? int scores[] = {83, 62, 77, 97, 86}

Back

scores[2]

5.

FLASHCARD QUESTION

Front

What will the following code display?
int numbers[5] = {99, 87, 66, 55, 101};
for (int i = 1; i < 4; i++)
cout << numbers[i] << " ";

Back

87 66 55

6.

FLASHCARD QUESTION

Front

An array of string objects that will hold five names would be declared with which of the following statements? string names[5];, string names(5);, string names 5;, String[5] = names;

Back

string names[5];

7.

FLASHCARD QUESTION

Front

Given the following declaration, where is the value 15 stored in the nums array? int nums[] = {83, 15, 57, 87, 80}

Back

nums[1]

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?