C++ Arrays Week 2

C++ Arrays Week 2

University

20 Qs

quiz-placeholder

Similar activities

Data Structures Quiz 1

Data Structures Quiz 1

12th Grade - University

18 Qs

Data Structures FCI

Data Structures FCI

University

19 Qs

Data Structures

Data Structures

University

20 Qs

Heap and Search Tree

Heap and Search Tree

University

15 Qs

Heap

Heap

University

15 Qs

Queue

Queue

University

20 Qs

DAA QUIZ-2

DAA QUIZ-2

University

19 Qs

Tri-Tech-Cup Round 3

Tri-Tech-Cup Round 3

University

15 Qs

C++ Arrays Week 2

C++ Arrays Week 2

Assessment

Quiz

Computers

University

Medium

Created by

Chong May

Used 37+ times

FREE Resource

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is an array in C++?

An array in C++ is a type of loop structure

An array in C++ is a keyword used to declare variables

An array in C++ is a data structure that can store a fixed-size sequential collection of elements of the same type.

An array in C++ is a built-in function for sorting data

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you declare an array in C++?

int myArray[5];

array myArray[5];

int myArray{};

myArray = new int[5];

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the syntax for accessing elements in an array?

array[index]

arr[element]

arr{index}

arr[index]

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Can the size of an array be changed once it is declared?

No

Only 1 time can be changed

Sometimes

Anytime when required.

5.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

How do you initialize an array in C++?

int arr[5] = [0];

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

int arr[5] = [1, 2, 3];

int arr(5) = {1, 2, 3, 4, 5};

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

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

-1

10

1

0

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you find the length of an array in C++?

Use the 'sizeof()' method to find the length of an array in C++.

Access the 'size' attribute to get the length of an array in C++.

Call the 'count()' function to determine the length of an array in C++.

Use the 'length()' method to find the length of an array in C++.

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?