Discrete Mathematics (Eng) Chapter 8 : Applications on Graph

Discrete Mathematics (Eng) Chapter 8 : Applications on Graph

University

9 Qs

quiz-placeholder

Similar activities

Introduction of Data Structure

Introduction of Data Structure

University

9 Qs

Design And Analysis of Algorithms

Design And Analysis of Algorithms

University

10 Qs

Artificial Intelligence - Searching Quiz 4A

Artificial Intelligence - Searching Quiz 4A

University

9 Qs

Greedy Method

Greedy Method

University

12 Qs

Unit - 4 Network Analysis & DEM

Unit - 4 Network Analysis & DEM

University

10 Qs

CSS TECH TRIVIA - MEDIUM LEVEL

CSS TECH TRIVIA - MEDIUM LEVEL

University

10 Qs

Programming Knowledge Quiz (Medium)

Programming Knowledge Quiz (Medium)

5th Grade - Professional Development

10 Qs

DS UNIT-2 TEST-3

DS UNIT-2 TEST-3

University

10 Qs

Discrete Mathematics (Eng) Chapter 8 : Applications on Graph

Discrete Mathematics (Eng) Chapter 8 : Applications on Graph

Assessment

Quiz

Computers

University

Hard

Created by

วัชรศักดิ์ ศิริเสรีวรรณ

Used 1+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Which of the following are problems we discussed last week. Those problems can apply the graph model and develop an algorithm to solve them .

Minimum Spanning Tree

Heuristic search

Shortest Path

Travelling salesman problem

2.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Which are properties of graph that we found in Minimum Spanning Tree problem ?

directed

connected

simple

weighted

3.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Which of the following are the name of algorithms for solving Minimum Spanning Tree.

Kruskal's

Prim's

Dijkstra's

Euclidean

4.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Which statements are TRUE for Prim's algorithm

Must sort all edge values by weight first

The tree obtained at each step of the method is always a connected graph

Do not select edges that create a cycle with the tree being constructed

The choices of edges to select for MST are every unselected edge left in the graph.

5.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Media Image

How much is

(#of steps of Kruskal's algorithm * 100) +

the total weight of MST of this graph ?

ie. using 4 steps and weight = 15 -> 415

6.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Which of the following is not the initialization for the Dijkstra's algorithm?

d[i] = 0 for all node i

d[s] = 0 for the source node s

p[s] = 0

Known[i] = FALSE for all node[i]

7.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Media Image

From the Dijkstra's table, which node is the source ?

8.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Media Image

From the Dijkstra's table, which node is the next s (the node to be considered) for the next step ?

9.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Media Image

From this Dijkstra's table, which of the following is NOT the shortest path we can derive.

K-M-L

L-N-O

L-M-K-P

L-M-K

L-M-N