Posts

Showing posts with the label python quiz

Python Course Quiz 1

 Python Course Quiz 1 Ques 1: What is the best way to see which version of python3 is installed without running it? ·    (a)  python -version ·    (b)  python3 ·    (c)  python -v ·    (d)  python3 --version  Answer: Option(D )  python3 --version Ques 2:  When should you verify what the VS Code python.pythonPath setting is set to? ·   (a)  when you have multiple installations of Python on your computer ·   (b)  when the desired Python debugging extension fails to install ·   (c)  when the debugger does not default to your script's directory ·   (d)  when VS Code fails to load your Python script  Answer: Option(A):  when you have multiple installations of Python on your computer Ques 3:  What code should come instead of the ??? placeholders to have a function that takes the amount of local currency and a varying number of exchange...