Search Header Logo
Revision

Revision

Assessment

Presentation

Computers

9th Grade

Medium

Created by

computer GHIS

Used 9+ times

FREE Resource

10 Slides • 48 Questions

1

media

2

media

3

Multiple Choice

What is binary?

1

A part of the computer

2

The way computers talk to each other

3

A computer program

4

Software for a computer

4

Multiple Choice

If 1 and 0 mean on and off. Is the number 1 on or off?

1

On

2

Off

5

Multiple Choice

What is the point of binary?

1

Because it describes star systems

2

Because we like to make you do extra math

3

It represents how computers interpret electrical signals

4

It is fun

6

Multiple Choice

What is the main function of binary code?

1

Turning on switches to off

2

Allowing computers to represent and store data

3

Providing a gateway into higher mathematics

7

media

8

Multiple Choice

Which of these are the correct place values for binary?

1

128,64,32,16,8,4,2,1

2

128, 68,34,12,6,4,2,1

3

1,0

4

0,1

9

Multiple Choice

Convert the binary number 1110 to decimal

1

14

2

8

3

10

4

12

10

Multiple Choice

1101 to decimal

1

11

2

12

3

15

4

13

11

Multiple Choice

1011 to decimal

1

12

2

15

3

13

4

11

12

Multiple Choice

10111 to decimal

1

27

2

30

3

23

13

Multiple Choice

1111 to decimal

1

12

2

13

3

15

4

11

14

media

15

media

16

media

17

Multiple Choice

What is the decimal number 8 in binary?

1

0101

2

0011

3

1000

4

1111

18

Multiple Choice

Convert the decimal number 12 to binary

1

0001

2

0011

3

0111

4

1100

19

Multiple Choice

Convert the decimal number 15 to binary

1

0011

2

0101

3

1111

4

1101

20

Multiple Choice

Convert 128 to binary

1

10000001

2

10000000

3

01111110

4

11001100

21

media

22

media

23

media

24

media

25

Multiple Choice

Question image

What flowchart symbol does this represent?

1

Input/Output

2

Decision

3

Start/End

4

Process

26

Multiple Choice

Question image

What is this symbol?

1

Decision

2

Start/End

3

Input/Output

4

Process

27

Multiple Choice

What is an Algorithm?

1

A set of instructions in order

2

A task for the computer

28

Multiple Choice

Question image

What is this symbol used for in a flowchart?

1

A decision/question

2

A task to carry out

29

Multiple Choice

What symbol do flowcharts begin with?

1

oval

2

rectangle

3

parallelogram

4

diamond

30

Multiple Choice

Can this shape be used for both Start and Stop?

1

Yes

2

No

31

Multiple Choice

What symbol shows a decision?

1

oval

2

rectangle

3

parallelogram

4

diamond

32

Multiple Choice

What is used to connect the flowchart symbols together?

1

Rectangles

2

Arrows

3

Lines

4

Patterns

33

Multiple Choice

A logical step-by-step process for solving a problem is called

1

Binary Numbers

2

Algorithms

3

Coding

34

Multiple Choice

A diagram that represents a set of instructions is called:

1

Flow Chart

2

Shapes

3

Pseudocode

35

Multiple Choice

Flowcharts are from

1

Left

2

Bottom

3

Right

4

Top to bottom

36

Multiple Choice

What is the purpose of a flowchart?

1

To plan the program before it is made

2

Because it is easier

37

Multiple Choice

Question image

What's missing from this part of a flowchart?

1

An Arrow

2

A Square

3

A Diamond

4

A Line

38

Multiple Choice

Question image

What is the Output if the user enters:

1

Leave umbrella at home

2

Take an umbrella

39

Multiple Choice

Only top software programmers can write an algorithm.

1

True

2

False

40

Multiple Choice

What algorithm do we use when we're making a cake?

1
2

A list of instructions

3

A recipe

41

Multiple Choice

In a flowchart how are symbols connected?

1

Symbols do not get connected together in a flowchart

2

With dashed lines and numbers

3

With solid lines to link events

4

With lines and an arrow to show the direction of flow

42

Multiple Choice

When do you use an else statement?

1

To tell what will happen when an if-statement is false

2

To handle string values

3

To end an IF statement

4

To input a variable

43

Multiple Choice

Which of the following is NOT true about all algorithms?

1

All algorithms can only do number calculations.

2

All algorithms stop in a finite amount of time.

3

All algorithms have an order.

4

All algorithms have clear instructions.

44

Multiple Choice

Question image

The following code could be rewritten using:

1

not

2

and

3

none of the answers

4

or

45

Multiple Choice

When should you use an ELIF statement?

1

To repeat sections of code

2

To counter user actions

3

To get user input

4

To make a follow-up True/False decision

46

Multiple Choice

Write the code to test if the number in the variable text1 is greater than 15.

1

if (text1 > "15"):

2

if (text1 >= 15):

3

if (text1 > 15):

4

if (text1 < "15"):

47

Multiple Choice

Write the code to test if the number 78 is stored in the variable text1:

1

if (text1 == "78"):

2

if (text1 == 78):

3

if ("text1" == 78):

4

if (str(text1) == 78):

48

Multiple Choice

Write the code to test if the variables num1 and num2 are not the same.

1

if (num1 < num2):

2

if (not(num1 != num2)):

3

if (num1 != num2):

4

if (num1 == num2):

49

Multiple Choice

To test if x is greater than or equal to y:

if (x ___ y):

1

>

2

<=

3

>=

4

<

50

Multiple Choice

Question image

What is the output?

1

1

2

3

3

2

4

4

51

Multiple Choice

Question image

What is output?

1

1

2

3

3

2

4

4

52

Multiple Choice

What best defines an algorithm?

1

Code that does an action

2

Steps used to complete a goal

3

Using IF and ELSE statements in order to gather input and print outputs

4

A set of precise steps used to perform a task, typically on a computer

53

Multiple Choice

Write the code to test if x is greater than or equal to 2.

1

if (x <= 2):

2

if (x >= 2):

3

if (x < 2):

4

if (x > 2):

54

Multiple Choice

Pick the simplest line of code to test if the word "BASIC" is stored in the variable text1.

1

if (text1 == str("BASIC")):

2

if (int(text1) == BASIC):

3

if (text1 == "BASIC"):

4

if (text1 == BASIC):

55

Multiple Choice

Which of the following is equivalent to:

if (90 <= x <= 100):

1

if (90 <= x and <= 100):

2

if (90 <= x and x <= 100):

3

if (90 <= x or <=100):

4

if (90 <= x or x <= 100):

56

Multiple Choice

Which of the following is true?

a = 1

b = 10

1

a < b and a == b

2

b <= a or a >= b

3

a < b and a != b

4

a > b or a == b

57

Multiple Choice

Which of the following is used to show not equals?

1

==

2

!!

3

=!

4

!=

58

Multiple Choice

Mark all the mistakes in the following code:

IF (name1 = "sue") :

1

"sue" should not have quotes

2

There should not be ( )

3

IF should be if

media

Show answer

Auto Play

Slide 1 / 58

SLIDE