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

Python_DS2

Python_DS2

Professional Development

10 Qs

Power BI Service 03 - Connect to Data

Power BI Service 03 - Connect to Data

Professional Development

10 Qs

Excel Data Validation

Excel Data Validation

6th Grade - Professional Development

10 Qs

Basic Python Data Types

Basic Python Data Types

Professional Development

8 Qs

GO4 x FE23! Quiz Zerius Day 6

GO4 x FE23! Quiz Zerius Day 6

Professional Development

6 Qs

SQL Select 1

SQL Select 1

Professional Development

10 Qs

FinTech 02-1 Python

FinTech 02-1 Python

Professional Development

11 Qs

Unit I - Introduction Data Structure/Array

Unit I - Introduction Data Structure/Array

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