Font size
WorksheetsGrade 10 Computer Quiz
Total questions: 43
Worksheet time: 43mins
Write your name.
Write your class and section.
Which level of a programming language is Machine Code?
Low
High
Which level of a programming language is Assembly Code?
Low
High
Which level would create the fastest code to execute?
Low
Assembly
High
Which level would create the easiest code for humans to understand?
Low
Assembly
High
Which generation?
Machine Code - Low
Assembly Code - Low
High Level
Which generation?
Machine Code - Low
Assembly Code - Low
High Level
What is Decomposition?
Breaking the problem down to look for specific patterns
Solving the problem by placing the algorithm into a single flowchart
Breaking the task down into smaller, more manageable tasks
Identifying where the algorithm needs to be repeated so that it save you time when writing it
The computer works with the principle of
Input ---> Process ---> Output
Input ---> Output ---> Process
Output ---> Process ---> Input
Which of the following are languages of computer ?
Machine Language
Assembly Language
High Level Language
All of above
What does <= mean?
less than
greater than
less than or equal to
greater than or equal to
What is the only function all C++ programs must contain?
start()
system()
main()
program()
What punctuation is used to signal the beginning and end of code blocks?
{ }
-> and <-
BEGIN and END
( and )
Which of the following is a correct comment?
*/ Comments */
** Comment **
/* Comment */
{ Comment }
y = 3;
x = 5 * y;
Which of the following is NOT a logical operator in C++ language?
&
&&
||
!
Which of the following is NOT a comparison operator in C++ language?
>
<=
=
==
Evaluate the following expressions to true or false
5 >= (1+6)-4
True
False
Evaluate the following expressions to true or false
5+1==6 || 8-1>4
True
False
