Arrays and Pointers in C++

Arrays and Pointers in C++

Assessment

Quiz

Computers

University

Medium

Created by

noore ilahi

Used 98+ times

FREE Resource

Student preview

quiz-placeholder

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The __________, also known as the address operator, returns the memory address of a variable.

asterisk (* )

ampersand ( & )

percent sign ( % )

exclamation point ( ! )

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A pointer variable is designed to store

any legal C++ value

only floating-point values

an integer

a memory address

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the operator used for dereferencing or indirection?

*

+

&

&&

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Arrays are used to store multiple values in a single variable.

True

False

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

To access an array element, use the array name and the element's ___________.

data type

value

Subscript

Name

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Given the following declaration, where is the value 77 stored in the scores array?

int scores[] = {83, 62, 77, 97, 86}

scores[0]

scores[1]

scores[2]

scores[3]

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the last legal subscript that can be used with the following array?

int values[5];

0

5

4

6

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?