Module 1 Quiz
Rating
0
0
There are no comments for now.
Join this Course
to be the first to leave a comment.
1.
What are the four fundamental elements that make a language?
2.
What do you call a file containing a program written in a high-level programming language?
3.
What is true about compilation? (Select two answers)
4.
What is the best definition of a script?
5.
Select the true statements. (Select two answers)
6.
What is CPython?
It’s a programming language that is a superset of the C language, designed to produce Python-like performance with code written in C
It’s the default, reference implementation of Python, written in the C language
It’s a programming language that is a superset of Python, designed to produce C-like performance with code written in Python
It’s the default, reference implementation of the C language, written in Python
7.
What do you call a command-line interpreter which lets you interact with your OS and execute Python commands and scripts?
8.
What is the expected behavior of the following program? print("Hello!")
9.
What is the expected behavior of the following program? prin("Goodbye!")