Data Structures and Algorithm

Data Structures and Algorithm

University

9 Qs

quiz-placeholder

Similar activities

Quiz 1 - AK2 Section

Quiz 1 - AK2 Section

University

10 Qs

DS Quiz1

DS Quiz1

University

10 Qs

Data Structure

Data Structure

University

10 Qs

DSA - Intro

DSA - Intro

University

10 Qs

Data Structures

Data Structures

University

12 Qs

A-Level Computer Science Data Structures Quiz

A-Level Computer Science Data Structures Quiz

12th Grade - University

14 Qs

Data Structures Quiz-2

Data Structures Quiz-2

University

10 Qs

DATA STRUCTURE-HEAP

DATA STRUCTURE-HEAP

University

12 Qs

Data Structures and Algorithm

Data Structures and Algorithm

Assessment

Quiz

Computers

University

Medium

Created by

ACPES WEBINAR

Used 47+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

It is used to implement an associative array, a structure that can map keys to values.

linked list

hashing

trees

array

2.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

It is a linear data structure that stores a collection of elements. Operates on first in first out (FIFO) algorithm.

stack

data structure

queue

array

3.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

Is a sequential collection of elements of the same data type. They are stored sequentially in memory.

array

trees

linked list

queue

4.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

It can be accessed and updated efficiently and it is a particular way of organizing data on a computer.

organization

framework

algorithm

data structure

5.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

In a tree data structure, the top most node is called ___

first node

crown node

root node

apex node

6.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

True or false: Data structures are not a crucial part in data management.

True

False

7.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

Which Time and Space Complexity uses the O(n2) notation?

Quadratic

Linear

Exponential

Logarithmic

8.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

push() and pop() functions are found in..

stacks

trees

queues

lists

9.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

Mathematical notation that describes the limiting behavior of a function when the argument tends towards a value or infinity

Quadratic notation

Big O notation

Function notation

Logarithmic notation