wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Practice Quiz QBASIC and Excel Functions

Total questions: 20

Worksheet time: 15mins

Name
Class
Date
1.

The function that lets you add up a range of cells or values

a)

AVERAGE

b)

SUM

c)

MIN

d)

MAX

2.

What function was used to find the highest data ?

a)

AVERAGE

b)

MIN

c)

SUM

d)

MAX

3.

What function was used to find the lowest data ?

a)

AVERAGE

b)

MIN

c)

MAX

d)

SUM

4.

The function COUNT is specific for _________________

a)

Counting cells

b)

Counting text

c)

Counting number

d)

Counting tables

5.

The function COUNTA is specific for _________________

a)

Counting text

b)

Counting cells

c)

Counting number

d)

Counting tables

6.
What would be a correct formula for SUM in excel?
a)
=SUM(B3:B9)
b)
=SUMB3+B9
c)
SUM(B3:B9)
d)
=ADD(B3:B9)
7.
Which symbol must all formula begin with?
a)
=
b)
+
c)
(
d)
@
8.

How would you write a cell reference formula for cell A1 subtracted from Cell C3?

a)

A1-C3

b)

A1-C3=

c)

=A1-C3

d)

=C3-A1

9.

Which operator is used to multiply in Excel?

a)

+

b)

x

c)

/

d)

*

10.
The quickest way to find a total in Excel is by using __________.
a)
AutoTotal
b)
AutoSum
c)
AutoAdd
d)
AutoPlus
11.

A data value that does not change during the execution of a program is _____.

a)

Variable

b)

Constant

c)

Character

12.

The statement used to display the output on the screen is _______.

a)

INPUT

b)

LET

c)

PRINT

13.

In PRINT command, the message is closed in ______.

a)

Double Quotes

b)

Semicolons

c)

Single Quotes

14.

What is the Output:

PRINT "how are you?"

(a)  

15.

The QBASIC Statement for accepting the values from the user:-

a)

LET

b)

PRINT

c)

REM

d)

INPUT

16.

Which out of the following is a valid variable to hold the text in QBASIC.

a)

LET

b)

$S

c)

S$

d)

SS

17.

Statement in QBASIC to clear the output screen

a)

CLS

b)

CLEAR

c)

CLEAR SCREEN

d)

CLRSCR

18.

x=5

a)

is numeric constant

b)

is alphabet constant

c)

is algebraic constant

d)

is string constant

19.

an example of a string constant is

a)

"123"

b)

-7

c)

4rs

d)

5/6

20.

What is the correct output of the following statement:

PRINT "9-9"

a)

0

b)

NINE

c)

9-9

d)

None of the Above