Viva 1 - Fractional knapsack problem

Viva 1 - Fractional knapsack problem

University

5 Qs

quiz-placeholder

Similar activities

Greedy II

Greedy II

1st Grade - University

5 Qs

E10-DAA_7CSN

E10-DAA_7CSN

University

10 Qs

DAA - UNIT III

DAA - UNIT III

University

10 Qs

Algoritma dan Modelling Machine Learning

Algoritma dan Modelling Machine Learning

University

10 Qs

Computer Science test 1

Computer Science test 1

University

10 Qs

Introduction to Programming

Introduction to Programming

9th Grade - University

10 Qs

Grade2-Term3-Shj

Grade2-Term3-Shj

4th Grade - University

10 Qs

Step to Solve Problem in Computer Programming

Step to Solve Problem in Computer Programming

University

10 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)