NEW
Font size
WorksheetsDigiPro 7 Unit 1 Review
Total questions: 11
Worksheet time: 6mins
Which Programming Language is the most famous worldwide?
Python
Java
C++
Ruby
A set of well-defined instructions that allow you to solve a problem in a step-by-step manner, or interpret any program in detailed step-by-step instructions
Programming
Algorithm
Interpretation
Coding
A graphical representation of steps. It uses standard symbols to visually explain how instructions would be carried out in a sequence to achieve the desired results, it's used for Programming and Algorithms
Flowchart
Drawing
Design
Interpretation
Variables must always be on the left, and values must always be on the right
( For example: name="Mohammed Ali" )
True
False, their position don't matter
False, it depends on how it's written
Values get assigned to variables
False, variables get assigned to values
False, it depends on their position
True
False, it depends how its written
Commenting in Python can be done by using
Double Quotes
#
@
Not possible
Which one is a valid variable name?
Ca$h
9th
What up
_H3Y_
NuM=79
num="sup"
print (num,NuM)
What's the output of the program above?
num,Num
Error!
sup 79
sup sup
79 sup
Which one is not a token of Python?
Keywords
Literals
Delimiters
Functions
Occurs when a user writes an invalid statement (examples: missing parenthesis, wrong name, different quotations, unintended space, etc...), is called:
Syntax error
Program error
General error
User error
Which one is not an example of a value that can be assigned to a variable?
27
"Hello world!!"
input("What's your name?")
print(hey there)
