Back to Freecodecamp

Building a Multiple Choice Quiz

curriculum/challenges/english/blocks/object-oriented-programming-with-python/building-a-multiple-choice-quiz-video.md

latest416 B
Original Source

--description--

In this video, you will practice what you have learned about classes and objects by building a multiple choice quiz.

--questions--

--text--

Which of the following is the correct way to import the Question class from the Question module?

--answers--

Question import


from Question


from Question import Question


import Question.py

--video-solution--

3