DSC UNIT 7

DSC UNIT 7

University

9 Qs

quiz-placeholder

Similar activities

Common Algorithms Quiz

Common Algorithms Quiz

KG - Professional Development

11 Qs

Circular array quiz

Circular array quiz

University

10 Qs

CCS3101-CS1E

CCS3101-CS1E

University

11 Qs

BCSC0006 - Quiz 2 - Big-Oh Notation

BCSC0006 - Quiz 2 - Big-Oh Notation

University

10 Qs

Data Structure

Data Structure

University

10 Qs

GCSE Computer Science 9-1: Sorting Algorithms

GCSE Computer Science 9-1: Sorting Algorithms

10th Grade - University

10 Qs

Algorithm Intro

Algorithm Intro

9th Grade - University

14 Qs

Final Practice

Final Practice

University

7 Qs

DSC UNIT 7

DSC UNIT 7

Assessment

Quiz

Computers

University

Medium

Created by

Rashmi Vernekar

Used 2+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

__________ is a technique of finding an element from the given data list or set of the elements like an array, list, or trees

Sorting

Searching

Linked List

Stack

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The __________ is a technique to find out an element in a sorted or unsorted list.

Sorting

Searching

Linked List

Stack

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The __________ is a conventional method of searching data.

Insertion sort

Heap sort

linear search

Stack

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Complexity of linear search algorithm is __________

O(n)

O(logn)

O(n2)

O(n logn)

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The __________ is a method of searching a target element in a list sequence.

Insertion sort

Heap sort

linear search

Stack

6.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

Binary search algorithm cannot be applied to __________

sorted linked list

sorted binary trees

sorted linear array

pointer array

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A __________ is an algorithm for searching for a given key value in an indexed array that has been ordered by the values of the key.

Binary Search

Linear Search

Interpolation search

pointer array

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

On average the interpolation search makes about __________ comparisons

O(n)

O(logn)

O(n2)

log(log(n))

9.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which indicates in-order traversal?

Left, Parent, Right

Right, Parent, Left

Parent, Right, Left

Parent, left, right