## Question 1 What is the output if the following prerequisites and number of courses are given as input? prerequisites = [[1, 0], [1, 2], [3, 1], [4, 1], [1, 4], [5, 1]] num_courses = 6 ### Options 1. TRUE Incorrect ---------------------------- 2. FALSE Correct It is not possible to finish all the courses because there exists a cycle between 1 and 4 courses. ---------------------------- --------------------------------------------- ## Question 2 What is the output if the following prerequisites and number of courses are given as input? prerequisites = [[1, 0], [2, 1], [3, 2], [4, 3], [5, 4], [6, 2], [1, 6], [7, 1]] num_courses = 8 ### Options 1. TRUE Incorrect ---------------------------- 2. FALSE Correct It is not possible to finish all the courses because there exists a cycle among 6, 2, and 1 courses. ---------------------------- --------------------------------------------- ## Question 3 What is the output if the following prerequisites and number of courses are given as input? prerequisites = [[1, 0], [2, 1], [3, 1], [1, 4]] num_courses = 5 ### Options 1. TRUE Correct ---------------------------- 2. FALSE Incorrect ---------------------------- ---------------------------------------------