Erstellt von Rosa Luz Estevané Rodríguez
vor etwa 4 Jahre
|
||
What is Computational Thinking?
Which are the pillars of Computational Thinking?
What is an algorithm?
Which are the properties of algorithms?
Some examples of algorithms are:
When can algorithms be used?
What is the Page Rank?
What is a Variable?
Which are the rules to name a variable?
What is camelCase?
Select all valid variable names to save the grade of 1st partial:
a) 1stGrade b) firstGrade
c) studentGrade1 d) FIRSTGRADE
Select the only valid variable name :
a) street.name b) #product
c) 3rd semester d) appName
What is a constant?
What is Data type?
What are the main data types used by computers?
Name the components we have used in our Thunkable apps
Which are the prefixes to name each Thunkable component?
Mention at least 5 properties of Thunkable's components
Which are the basic arithmetic operators?
Which operator is used for exponentiation?
What is the meaning of the % operator?
What is the order to solve operations in a programming expression?
Find the value of c:
c = 5 * 4 + 8 / 2 – 1
Find the value of a:
a = 10 + 17 % 3 ** 2
Find the value of a:
a = 4 ** 2 - ( 7 % 2 + 4)