Font size
WorksheetsT1-CSC401/P.C.1.1-1.9
Total questions: 15
Worksheet time: 11mins
Python is an example of:
a natural language
a high-level language
a machine language
A complete set of known commands is called:
a machine list
an instruction list
a low-level list
What is source code?
Another name for source file
Machine code executed by compters
A program written is high-level programming language
What do you call a program which directly executes instructions written in a programming language?
Compiler
Interpreter
translator
What python version is covered in this course?
Python 3
Python 2
Python 1
What is IDLE?
Its an acronym that stands for Interactive Development and Learning Extension
Its a Python version
Its an acronym that stands for Intergrated Development and Learning Environment for Python
What do you call a tool that lets you launch your code step by step and inspect it at each moment of execution?
An editor
A debugger
A console
Which of the following is an example of Python file extension?
pi
p
py
Which of the following statement will be used to display on screen?
What will be the output?
print(My Python Program)
The code is erroneous
(My Python Program)
print"My Python Program"
Which type of algorithm is shown in picture:
Pseudocode
Flowchart
Diagram
Which of the following is/are example of high-level language(s)? (Select all)
Python
machine language
Java
A set of well-defined logical steps that must be taken to perform a task or solve a problem is called:
Pseudocode
Algorithm
Sequence
At which stage of the program development life cycle would you create algorithms or pseudocode?
Design the program
Write the code
test the program
Create a program that will display “Hello World”
print(Hello World)
Print("Hello World)
print("Hello World")
