Search Header Logo

Data Structures (Arrays)

Authored by Nathaniel Mensah

Other

University

Used 2+ times

Data Structures (Arrays)
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Data structures are important in computer programming because:

They only store data.

They enable efficient data access and manipulation.

They replace algorithms.

They are not related to software design

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In C++, how do you access the first element of an array named age?

age(1);

age;

age[0];

age;

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which syntax demonstrates universal initialisation in C++?

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

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

int arr = { 1, 2, 3 };

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

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the time complexity for searching a value in an array?

O(1).

O(log N).

O(N).

O(N^2).

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is a disadvantage of arrays?

They allow random access to elements.

They have good cache locality.

The size cannot be changed once declared.

They represent data items with a single name.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is an array?

A non-linear data structure.

A data structure with elements stored in separate memory locations.

 A collection of elements stored in contiguous memory locations.

A data structure where the last item added is the first one removed.

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the range of the index of an array?

1 to n, where n is the length of the array.

0 to n, where n is the length of the array.

0 to n-1, where n is the length of the array.

1 to the maximum memory size.

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?