Viva 1 - Fractional knapsack problem

Viva 1 - Fractional knapsack problem

University

5 Qs

quiz-placeholder

Similar activities

DAA

DAA

University

10 Qs

Graph-1

Graph-1

University

8 Qs

Viva - Practical - Main

Viva - Practical - Main

University

10 Qs

Quiz3_DivideConquer_GreedyApproach

Quiz3_DivideConquer_GreedyApproach

University

10 Qs

Data Structure & Algorithm

Data Structure & Algorithm

University

10 Qs

UAS Struda C

UAS Struda C

University

10 Qs

DAA_QUIZ_2

DAA_QUIZ_2

University

10 Qs

KNN and Decision Tree

KNN and Decision Tree

University

8 Qs

Viva 1 - Fractional knapsack problem

Viva 1 - Fractional knapsack problem

Assessment

Quiz

Computers

University

Easy

Created by

Eben Sophia Paul

Used 2+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Fractional knapsack problem is solved most efficiently by which of the following algorithm?

Divide and conquer

Dynamic programming

Greedy algorithm

Backtracking

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the objective of the knapsack problem?

To get maximum total value in the knapsack

To get minimum total value in the knapsack

To get maximum weight in the knapsack

To get minimum weight in the knapsack

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following statement about 0/1 knapsack and fractional knapsack problem is correct?

In 0/1 knapsack problem items are divisible and in fractional knapsack items are indivisible

Both are the same

0/1 knapsack is solved using a greedy algorithm and fractional knapsack is solved using dynamic programming

In 0/1 knapsack problem items are indivisible and in fractional knapsack items are divisible

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The result of the fractional knapsack is greater than or equal to 0/1 knapsack.

True

False

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Time complexity of fractional knapsack problem is

O(n log n)

O(n)

O(n2)

O(nW)