Data Structures (Arrays)

Data Structures (Arrays)

University

15 Qs

quiz-placeholder

Similar activities

Quanta

Quanta

University

20 Qs

Arrays

Arrays

University

20 Qs

CodeMavarick

CodeMavarick

University

20 Qs

Data Structures FCI

Data Structures FCI

University

19 Qs

Array

Array

University

10 Qs

Understanding Arrays in Programming

Understanding Arrays in Programming

University

10 Qs

Day5_Arrays

Day5_Arrays

University - Professional Development

12 Qs

In-Lab5

In-Lab5

University

14 Qs

Data Structures (Arrays)

Data Structures (Arrays)

Assessment

Quiz

Other

University

Easy

Created by

Nathaniel Mensah

Used 2+ times

FREE Resource

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.

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?