Section D - 1 - How Data is Organised - Data Structures 1

Section D - 1 - How Data is Organised - Data Structures 1

Professional Development

6 Qs

quiz-placeholder

Similar activities

Cloud Computing

Cloud Computing

University - Professional Development

10 Qs

Javascript Array and Object

Javascript Array and Object

University - Professional Development

9 Qs

DS_Linked_List

DS_Linked_List

Professional Development

10 Qs

Data Structure Quiz

Data Structure Quiz

University - Professional Development

10 Qs

Java: знакомство и как пользоваться базовыми АПИ - семинар 4

Java: знакомство и как пользоваться базовыми АПИ - семинар 4

Professional Development

6 Qs

Python Lesson 1

Python Lesson 1

Professional Development

10 Qs

Vlookup Formula in Excel

Vlookup Formula in Excel

Professional Development

10 Qs

Data & SQL 1 data types

Data & SQL 1 data types

Professional Development

10 Qs

Section D - 1 - How Data is Organised - Data Structures 1

Section D - 1 - How Data is Organised - Data Structures 1

Assessment

Quiz

Computers

Professional Development

Hard

Created by

Kiran Jones

Used 7+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

What is an Array?

Select all that apply.

Only one data type can be stored in a single array.

Many different data types can be stored in a single array.

You can only have an array of numbers.

You can have an array made up of any data type.

2.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

What is a 2D array?

Select all that apply.

Only one data type can be stored in a single 2D array.

Different rows can store different data types.

Different columns can store different data types.

You need both the row & column number to find individual elements.

You can access individual elements using only the column number.

3.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

What is a linked list?

Select all that apply.

It can store many different types of data.

It can only store a single type of data.

It is made up of nodes.

The starting node contains a null pointer.

The end node contains a null pointer.

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the purpose of the null pointer?

It points to an empty area of RAM.

It indicates the start of a linked list.

It indicates the end of a linked list.

It indicates a broken linked list node.

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the main difference between an array and a linked list?

Linked lists can increase and decrease in size.

Linked lists can store many different data types in a single list.

Arrays can increase and decrease in size.

Arrays can store many different data types in a single array.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

If you wanted a data structure to store a game of chess. Which of the following data structures would work best?

One-dimensional array.

Two-dimensional array.

Linked List