C++ Arrays Quiz

C++ Arrays Quiz

University

62 Qs

quiz-placeholder

Similar activities

Network+ Days 1 - 12

Network+ Days 1 - 12

University

60 Qs

MATLAB Graphics and Functions Quiz

MATLAB Graphics and Functions Quiz

University

59 Qs

Python Programming Quiz

Python Programming Quiz

University

58 Qs

R va AT-2

R va AT-2

University

65 Qs

Algorimt/program-2

Algorimt/program-2

University

59 Qs

Python (IST 261)

Python (IST 261)

University

57 Qs

COMPROG

COMPROG

University

60 Qs

COMPROG QUIZ FINALS

COMPROG QUIZ FINALS

University

64 Qs

C++ Arrays Quiz

C++ Arrays Quiz

Assessment

Quiz

Information Technology (IT)

University

Easy

Created by

cjdsjv vjds acssacascas

Used 6+ times

FREE Resource

62 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is an array in C++?

A collection of elements of the same type stored in contiguous memory locations

A single variable that holds multiple values of different types

A function that performs calculations

A keyword for declaring variables

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you declare an integer array of size 5 in C++?

int array[5];

array arr(5);

int array = {5};

int array[];

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the index of the first element in an array?

0

1

-1

Depends on the array size

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will happen if you access an array index that is out of bounds?

Undefined behavior

The program will crash

It will return 0 by default

Compiler error

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is NOT a valid array declaration?

double data[] = new double[5];

int arr[5];

float numbers[10];

char str[20];

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which statement correctly initializes an array?

int arr[3] = {1, 2, 3};

int arr = {1, 2, 3};

arr[3] = {1, 2, 3};

int arr[3]; arr = {1, 2, 3};

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code? int arr[] = {10, 20, 30, 40}; cout << arr[2];

30

10

20

40

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?

Discover more resources for Information Technology (IT)