Viva 1 - Fractional knapsack problem

Viva 1 - Fractional knapsack problem

University

5 Qs

quiz-placeholder

Similar activities

Algorithms and algorithmic Complexity

Algorithms and algorithmic Complexity

University

10 Qs

Topic 2-1: Problem Solving

Topic 2-1: Problem Solving

University

8 Qs

The Program Development Cycle

The Program Development Cycle

11th Grade - University

10 Qs

Computational Thinking - Intro

Computational Thinking - Intro

University

9 Qs

Dynamic Programming: 0/1 Knapsack Quiz

Dynamic Programming: 0/1 Knapsack Quiz

University

10 Qs

4th_DAA

4th_DAA

University

10 Qs

Design And Analysis of Algorithms

Design And Analysis of Algorithms

University

10 Qs

Algorithm Design

Algorithm Design

University

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