How to pass the exam?#
To pass the exam you need to be able to write Python code which solves exam problems. You also need to be familiar with our exam rules and with how we evaluate your solutions.
In the second half of the course we practice solving exam problems. We also practice how to write and test your solutions.
Exam quiz#
Question 1#
What is the exam type for the courses 02002 and 02003?
Question 2#
What material will the students be given at the exam day?
Question 3#
Which modules are allowed to be imported in the exam solutions?
Question 4#
What should students submit during the exam?
Question 5#
What should each file with solutions contain?
Question 6#
The exam task requires that the function returns one of the following values: normal
, night
, or rush hour
. You made a mistake in the function and it returns nigth
instead of night
. Full points is 10, how many points will you get?
Question 7#
The exam task requires that the function returns a numeric value computed from the input. You made a mistake in the function and instead of returning the value, you print it. Full points is 10, how many points will you get?
Question 8#
The exam task requires that you write a function called best_value
. You made a mistake and called the function bedst_value
. Full points is 10, how many points will you get?
Question 9#
During the exam you run the test provided for a task, and it fails. What should you do?
Question 10#
During the exam you run the test provided for a task, and it passes. What can you conclude?