
CS Fundamentals: A Guide to clear thinking
Quiz by Sa Rah
Feel free to use or edit a copy
includes Teacher and Student dashboards
Measure skillsfrom any curriculum
Tag the questions with any skills you have. Your dashboard will track each student's mastery of each skill.
- edit the questions
- save a copy for later
- start a class game
- automatically assign follow-up activities based on students’ scores
- assign as homework
- share a link with colleagues
- print as a bubble sheet
- Q1
In an algorithm, which data structure does not exist?
For
Do while
Depending on the case
While
45s - Q2
To transform source code into machine readable code, one uses a:
Translator
Compiler
Debugger
Transformer
45s - Q3
A variable is:
A location on the hard disk
A name
A constant
A location in RAM (Random Access Memory)
45s - Q4
Which variable name is not valid:
Age
Size
_month_ year
Name_lastname
45s - Q5
In a conditional structure, the presence of ELSE is:
Optional
Mandatory
45s - Q6
An iteration is:
A repetitive structure
A conditional structure
A test
A control structure
45s - Q7
Does this program work?
no
yes
45s - Q8
Does this program work?
yes
no
45s - Q9
Does this program work?
yes
no
45s - Q10
Which structure will you choose if I ask you to create a program that displays numbers from 1 to 10?
For
Do while
While
45s - Q11
This program:
Allows entering 4 notes
Allows entering 5 notes
Allows entering 6 notes
45s - Q12
What will be the value of 'b' at the end of the execution?
4
5
6
45s - Q13
what did the program in the previous question do?
A permutation
An allocation
An iteration
45s