wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Screening test

Total questions: 67

Worksheet time: 34mins

Name
Class
Date
1.

Which of the following is an example of output devices?

a)

keyboard

b)

mouse

c)

scanner

d)

monitor

2.

What refers to the physical components of the computer system?

a)

software

b)

hardware

c)

peopleware

d)

tupperware

3.

The following are the elements of a computer system hardware, peopleware and ____?

a)

software

b)

tupperware

c)

keyboard

d)

monitor

4.

The following are the four parts of hardware input devices, output devices, system unit and ______?

a)

storage devices

b)

hardware devices

c)

software

d)

peripherals

5.

During a class project, Scarlett is trying to figure out which of the following devices converts/translates human language into computer language?

a)

output devices

b)

input devices

c)

storage devices

d)

system unit

6.

It looks like a typewriter and it was invented by Christopher Latham Sholes.

a)

monitor

b)

keyboard

c)

mouse

d)

printer

7.

Which of the following are the parts of the keyboard?

a)

alphanumeric, numeric, editing, function & arrow keys

b)

alphanumeric, editing, function & arrow keys

c)

alphanumeric, numeric, editing, & arrow keys

d)

numeric, editing, function & arrow keys

8.

What part of the keyboard is also known as shortcut keys?

a)

arrow keys

b)

editing keys

c)

function keys

d)

alphanumeric keys

9.

What do you call the part of the mouse which is used for scrolling?

a)

ratchet wheel

b)

left button

c)

right button

d)

rachet wheel

10.

What do you call the physical components of the computer system?

a)

software

b)

hardware

c)

peopleware

d)

tupperware

11.

What device is use to produced sounds in your computer?

a)

keyboard

b)

printer

c)

speaker

d)

monitor

12.

What do you call a handheld pointing device

a)

monitor

b)

keyboard

c)

mouse

d)

printer

13.

What part of the hardware is used to display work while you are using the computer & its the computer who supplies information to the users?

a)

input devices

b)

storage devices

c)

system unit

d)

output devices

14.

What output device invented by Karl Ferdinand Braun and it will displays what you are doing in your computer?

a)

keyboard

b)

mouse

c)

monitor

d)

speaker

15.

Which of the following are the types of monitor?

a)

CRT, LCD, & LED

b)

CRT, LMD, & LED

c)

CTR, LCD & LED

d)

CRT, LCD & LMD

16.

What is used to output the sounds produced by your computer?

a)

monitor

b)

printer

c)

speakers

d)

keyboard

17.

If the printer produced a hard copy, what do you call the copies saved in the computer?

a)

printer copies

b)

hardware copies

c)

soft copy

d)

file copy

18.

What part of the keyboard used to move the cursor?

a)

alphanumeric keys

b)

arrow keys

c)

function keys

d)

numeric keys

19.

Which printer is usually used for printer high quality output like books?

a)

dot matrix

b)

inkjet

c)

typewriter

d)

laser jet printer

20.

What is used to store data & programs?

a)

input devices

b)

storage devices

c)

system unit

d)

output devices

21.

Which of the following are the internal storage of a computer?

a)

hard disk

b)

flash drive

c)

diskette

d)

cd/dvd

22.

The following are examples of storage devices except?

a)

flash drive

b)

hard disk

c)

diskette

d)

cpu

23.

Which of the following devices below is NOT an example of an output device?

a)

projector

b)

monitor

c)

joystick

d)

printer

24.

What do you call the computer language of computer?

a)

human language

b)

binary language

c)

english

d)

tagalog

25.

What do you call a storage which is already obsolete and it will be inserted in the floppy drive?

a)

flash drive

b)

hard disk

c)

diskette

d)

cd/dvd

26.

What is a variable in C?

a)

A variable in C is a function that returns a value

b)

A variable in C is a reserved keyword used for loops

c)

A variable in C is a named storage location that can hold a value of a specific data type.

d)

A variable in C is a constant value that cannot be changed

27.

How many data types are there in C?

a)

10

b)

5

c)

7

d)

3

28.

What are the different control structures in C?

a)

Iteration

b)

Condition

c)

Branching

d)

Sequence, Selection, Loop

29.

What is a function in C?

a)

A function in C is a variable declaration

b)

A function in C is a data type

c)

A function in C is a block of code that performs a specific task.

d)

A function in C is a loop structure

30.

How are arrays declared in C?

a)

By using parentheses instead of square brackets

b)

By using curly braces to enclose the elements

c)

By specifying the size of the array first followed by the data type of elements

d)

By specifying the data type of elements followed by square brackets containing the size of the array.

31.

What is the syntax for declaring a variable in C?

a)

float value;

b)

int num;

c)

bool flag;

d)

string name;

32.

What is the size of int data type in C?

a)

2 bytes on 32-bit systems and 4 bytes on 64-bit systems

b)

8 bytes on 32-bit systems and 16 bytes on 64-bit systems

c)

1 byte on 32-bit systems and 2 bytes on 64-bit systems

d)

4 bytes on 32-bit systems and 8 bytes on 64-bit systems

33.

What is the purpose of if-else statement in C?

a)

To execute different blocks of code based on a specified condition.

b)

To skip the condition check

c)

To always execute the else block

d)

To confuse the compiler

34.

How are functions defined in C?

a)

ReturnType function_name(ParameterType parameter1, ParameterType parameter2){ // Function body }

b)

ReturnType function_name(ParameterType parameter1, ParameterType parameter2); // Function body

c)

Return_Type function_name(Parameter_Type parameter1, Parameter_Type parameter2, ...){ // Function body }

d)

void function_name(ParameterType parameter1, ParameterType parameter2){ // Function body }

35.

What is the use of switch case in C?

a)

Switch case in C is used for iteration purposes only.

b)

Switch case in C is used to define functions.

c)

Switch case in C is used to handle exceptions.

d)

Switch case in C is used to execute different blocks of code based on the value of an expression.

36.

What is the difference between while and do-while loop in C?

a)

while loop executes the statements first and then checks the condition

b)

while loop checks the condition before executing the statements, whereas do-while loop executes the statements first and then checks the condition

c)

do-while loop checks the condition after executing the statements

d)

while loop is used for infinite loops, whereas do-while loop is used for conditional loops

37.

How are multi-dimensional arrays declared in C?

a)

By specifying the dimensions within square brackets.

b)

By using parentheses instead of square brackets.

c)

By specifying the dimensions within curly brackets.

d)

By declaring each dimension separately.

38.

What is the return type of a function in C?

a)

integer

b)

boolean

c)

array

d)

string

39.

What is the purpose of for loop in C?

a)

To execute code only once

b)

To skip a block of code

c)

To repeatedly execute a block of code a specified number of times.

d)

To execute code in random order

40.

How are strings represented in C?

a)

Strings in C are represented as linked lists of characters.

b)

Strings in C are represented as arrays of characters terminated by a null character '\0'.

c)

Strings in C are represented as arrays of integers.

d)

Strings in C are represented as integers.

41.

What is the role of break statement in C?

a)

The break statement in C is used to skip a specific iteration of a loop

b)

Break statement in C is used to exit the program immediately

c)

In C, break statement is used to jump to a specific line of code

d)

The role of the break statement in C is to terminate the execution of a loop or switch statement.

42.

What is the scope of a variable in C?

a)

The scope of a variable in C refers to the color of the variable

b)

The scope of a variable in C refers to the size of the variable

c)

The scope of a variable in C refers to the shape of the variable

d)

The scope of a variable in C refers to the region of the program where the variable is accessible.

43.

How are function prototypes used in C?

a)

Function prototypes in C are used to declare the signature of a function before its actual implementation.

b)

Function prototypes in C are used to skip the implementation of a function

c)

Function prototypes in C are used to execute a function multiple times

d)

Function prototypes in C are used to define variables within a function

44.

What is the purpose of continue statement in C?

a)

To increment the loop counter

b)

To print a message to the console

c)

To terminate the loop immediately

d)

To skip the current iteration of a loop

45.

How are arrays passed to functions in C?

a)

By passing the base address of the array (pointer to the first element)

b)

By passing each element individually

c)

By passing the array size

d)

By passing a copy of the array

46.
What is the probability of spinning an even number? 
a)
16 2/3%
b)
33 1/3%
c)
50%
d)
75%
47.
Find the probability of rolling greater than a 1 on a single die.
a)
6/6
b)
5/6
c)
4/6
d)
1/6
48.
Determine whether the event is impossible, unlikely, equally likely, likely, or certain. You flip a fair coin and the coin will land heads up.
a)
impossible
b)
unlikely
c)
as likely as not
d)
likely
49.
Probability can be between what two numbers?
a)
10 and 20
b)
0 and 100
c)
0 and 1
d)
All Numbers are possible
50.
What is the likelihood of selecting a "razzle dazzle" colored crayon?
a)
unlikely
b)
as likely as not likely
c)
likely
d)
certain
51.
What is the probability of spinning pink?
a)
0
b)
1/2
c)
3/4
d)
1
52.
What is the probability of spinning green?
a)
0
b)
1/4
c)
1/2
d)
3/4
53.
What is the probability of rolling 15 with a pair of dice?
a)
impossible
b)
unlikely
c)
equally likely
d)
likely
54.
The following M & M colors are in the bowl:
4 yellow, 6 orange, 3 green, 5 blue, 2 brown
What is the sample space?
a)
green
b)
4 yellow, 6 orange, 3 green, 5 blue, 2 brown
c)
20
d)
yellow, orange, green, blue, brown
55.
The following M & M colors are in the bowl:
4 yellow, 6 orange, 3 green, 5 blue, 2 brown
What is the probability of selecting a brown candy?
a)
2/18
b)
1/9
c)
2/20
d)
1/10
56.
How do you write 0.02 as a percent?
a)
20%
b)
200%
c)
2%
d)
.02%
57.
Find the experimental probability:
Roll dice:  1, 3, 3, 4, 4
P(1) = 
a)
1/5
b)
1/6
c)
2/5
58.
What is the probability of flipping a coin and getting tails?
a)
1/2
b)
1/3
c)
1/4
d)
Never, Tails never fails.
59.
The letters that form the word MATHEMATICS are placed in a bowl. What is the probability of choosing a "M"?
a)
8/121
b)
4/11
c)
2/11
d)
4/121
60.
The letters that form the word MATHEMATICS are placed in a bowl. What is the probability of choosing a letter M or T?
a)
8/121
b)
4/11
c)
2/11
d)
4/121
61.
The letters that form the word ALGEBRA are placed in a bowl. Craig says the probability of choosing an 'a' is 2/7, is this experimental or theoretical probability?
a)
Theoretical
b)
Experimental 
62.
A spinner is marked with four sections and was spun 100 times. Is this experimental or theoretical probability?
a)
experimental
b)
theoretical
63.
Jackson flipped a coin 18 times and got heads 6 of those times. What is the experimental probability of flipping heads? 
a)
1/3
b)
1/2
c)
2/3
d)
I'm not sure how to do this problem. 
64.
You flip a coin 20 times and record the results. Is this experimental or theoretical probability?
a)
Experimental
b)
Theoretical
65.
P(not A) = 
*Remember to simplify.*
a)
6/8
b)
3/4
c)
2/8
d)
1/4
66.
Write 11/25 as a percent
a)
11%
b)
44%
c)
22%
d)
55%
67.
⅛=______
a)
12.5%
b)
4.2%
c)
784.898%
d)
900%