wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

AP CSP S1 FINAL QUIZIZZ - 20 TEST POINTS

Total questions: 110

Worksheet time: 4hrs 52mins

Name
Class
Date
1.

What two numbers do we use in binary?

a)

-1 & 0

b)

2 & 1

c)

1 & 0

d)

4 & 0

2.

What number does 110 represent in binary?

a)

6

b)

3

c)

8

d)

12

3.

How would you represent the number 5 in binary?

a)

10

b)

100

c)

101

d)

110

4.

What base is binary in?

a)

2

b)

4

c)

1

d)

7

5.

The following program is run. Then the user NEVER clicks the “homeButton” button. What will be displayed in the console?

a)

1 2 3

b)

1 3

c)

1 3 2 2

d)

3 2 1

6.

The following program is run. Then the user clicks the “homeButton” button TWICE. What will be displayed in the console?

a)

1 2 3

b)

1 3

c)

1 3 2 2

d)

3 2 1

7.

I am enjoying this Quizizz...

a)

Very Very Much ! ! !

b)

Very Much ! !

c)

Much !

d)

Not at All

8.

What color is represented by (0, 150, 0)?

a)

Blue

b)

Green

c)

Yellow

d)

Red

9.

What is displayed to the console log?

a)

$10

b)

$ 10

c)

$10.00

d)

error

10.

What gets logged to the console?

a)

[1, 2, 3, 4, 5]

b)

1

c)

myList

d)

error

11.

What gets logged to the console?

a)

[1, 2, 3, 4, 5]

b)

1

c)

myList

d)

2

12.
a)

True

b)

False

13.

a)

True

b)

False

14.

A student is recording a song on her computer. When the recording is finished, she saves a copy on her computer. The student notices that the saved copy is of lower sound quality than the original recording. Which of the following could be a possible explanation for the difference in sound quality?

a)

The song was saved using fewer bits per second than the original song.

b)

The song was saved using more bits per second than the original song.

c)

The song was saved using a lossless compression technique.

d)

Some information is lost every time a file is saved from one location on a computer to another location.

15.

For which of the following lists can a binary search be used to search for an item in the list?

a)

I only

b)

III only

c)

I and III only

d)

I, II, and III

16.

Which of the following school policies is most likely to have a positive impact on the digital divide?

a)

A school allows students to bring a graphing calculator from home to complete in-class mathematics assignments.

b)

A school allows students to bring a tablet computer to class every day to participate in graded quizzes.

c)

A school provides a laptop or tablet computer to all students enrolled at the school.

d)

A school recommends that all students purchase a computer with as much processing speed as possible so that projects run faster.

17.

An online store uses 6-bit binary sequences to identify each unique item for sale. The store plans to increase the number of items it sells and is considering using 7-bit binary sequences. Which of the following best describes the result of using 7-bit sequences instead of 6-bit sequences?

a)

2 more items can be uniquely identified.

b)

10 more items can be uniquely identified.

c)

2 times as many items can be uniquely identified.

d)

10 times as many items can be uniquely identified.

18.

An algorithm has been developed to compute the sum of all the elements in a list of integers. Which of the following programming structures must be added to the existing algorithm so that the new algorithm computes the sum of only the even integers in the list?

a)

Iteration

b)

Searching

c)

Selection

d)

Sequencing

19.

Over winter break I plan to ...

4 lines
20.

Match the following

a)

a circuit with two inputs and one output defined such that its output is TRUE (or ON) only when both of its inputs are TRUE (or ON).

1.

AND gate

b)

an elementary building block of a digital circuit. Examples would be AND, OR, and NOT gates that perform basic digital operations.

2.

logic gate

c)

a circuit with one input and one output defined such that its output is TRUE (or ON) when its input is FALSE (or OFF) and vice versa.

3.

NOT gate

d)

a circuit with two inputs and one output defined such that its output is TRUE (or ON) when either or both of its inputs are TRUE (or ON).

4.

OR gate

21.

Match the following

a)

condition is a true/false condition. It is named after George Boole (1815-1864) an English mathematician.

1.

boolean

b)

any symbol that requires one byte of storage.

2.

character

c)

an informal way of describing an integrated circuit (IC) consisting of millions of tiny circuits.

3.

chip

d)

such as the numeral '5', is an abstraction that represents a single thing, e.g., the value 5.

4.

constant

e)

The process of translating the entire source code into a single binary file.

5.

compilation

22.

Match the following

a)

a machine that processes information under the control of a program.

1.

computer

b)

can run many different programs (e.g. a smartphone).

2.

general purpose computer

c)

has a fixed program (e.g. a simple calculator, a digital watch, a car's anti-lock braking system).

3.

special purpose computer

d)

An informal term for error in computer hardware or software -- the term was coined by Grace Hopper.

4.

computer bug

23.

Match the following

a)

consists of the programs that control the computer.

1.

software

b)

includes its electronic and mechanical components that carries out the instructions of a computer program.

2.

hardware

c)

houses the computer's main electronic components.

3.

motherboard

d)

stores the computer's programs and data temporarily while power is on.

4.

RAM

e)

the part of the computer's hardware that interprets and runs the computer program.

5.

CPU

24.

Match the following

a)

names a memory location to hold different values in your program.

1.

variable

b)

Variables that are declared and exist only inside a procedure or function (this is called their scope).

2.

local variables

c)

sets a variable to a value or a mathematical expression.

3.

assignment

d)

involves values, variables, and operators for example (a+b)/2

4.

expression

e)

input variables for a procedure.

5.

parameters

25.

Match the following

a)

Inserts x at end of the list

1.

APPEND(list, x)

b)

inserts an element into a list at the index given

2.

INSERT(list, i, value)

c)

removes the element in the given list at the given index

3.

REMOVE(list, x)

d)

data sent to a computer for processing by a program and can be tactile, audible, visual, or text

4.

input

e)

a block of programming statements that controls the flow or behavior of an algorithm.

5.

control structure

26.

Match the following

a)

Selection or conditional algorithm that allows a program to choose between different actions.

1.

If/Else

b)

occurs when the ending condition will never evaluate to true.

2.

Infinite loop

c)

Loops that have a predetermined beginning, end, and increment (step interval).

3.

For loop

d)

a programming construct used to repeat a set of commands (loop) as long as (while) a boolean condition is true

4.

While loop

e)

a statement that will evaluate to true or false and run code based on the answer

5.

conditional statement

27.

Match the following

a)

puts a list into alphabetic or numeric order.

1.

sorting algorithm

b)

a step-by-step procedures for solving a particular problem.

2.

algorithm

c)

a search algorithm that repeatedly divides a sorted list to narrow in on the searched-for item

3.

binary search

d)

specify the values of the parameters when a procedure is called.

4.

arguments

e)

an algorithm that checks ever element in a list from the start to the end of the list to find an item.

5.

linear or sequential search

28.

Match the following

a)

another term for 'repetition'

1.

iteration

b)

a programming language that is directly readable by the computer's CPU.

2.

machine learning

c)

data sent back from the program to the device and can be tactile, audible, visual, or text.

3.

output

d)

a sequence of instructions that controls the computer.

4.

program

e)

a notation for expressing algorithms, which is more precise that ordinary English but less formal than a programming language.

5.

pseudocode

29.

Match the following

a)

control structure uses a true or false condition to determine which of two parts of an algorithm is used.

1.

selection

b)

control structure that is the application of each step of an algorithm in the order in which the statements are given.

2.

sequence

c)

a non-executable block of text that can be added to a program to provide clarification and documentation of the code.

3.

comment

d)

Putting two strings together to make a new string.

4.

concatenation

e)

a system of rules that govern the behavior of some system.

5.

protocol

30.

Match the following

a)

A sequence of characters that can be stored in a variable or list.

1.

string

b)

Part of an existing string

2.

substring

c)

solve by trial and error; trying every possible option

3.

brute force

d)

how well an algorithm uses time and memory/space resources, CPU and RAM

4.

efficiency

e)

A procedure that computes and returns a value.

5.

function

31.

Match the following

a)

A value sent back by a function to the place in the code where the function was called form

1.

return value

b)

<, >, <=, >=, ==, != indicate a Boolean expression

2.

comparison operators

c)

users are asked to present several separate pieces of evidence involving knowledge (something they know like a password), possession (something they have like a texted code), and/or inherence (something they are like biometrics).

3.

multi-factor authentication (MFA)

d)

The process of removing errors from computer hardware or software.

4.

debugging

e)

a computational model in which operations are performed in order, one at a time on one processor or computer

5.

sequential computing

32.

Match the following

a)

the number or position of an element in the list.

1.

index

b)

In computer science, this stores multiple items under one variable name and uses an index to number and access them.

2.

list

c)

Symbols like +,-,*,/ used for addition, subtraction, multiplication, division.

3.

operator

d)

in computer science is the practice of organizing and encapsulating algorithms in named procedures that can then be invoked by name. An example would be the 'sqrt(x)', square root of x, which encapsulates the algorithm for calculating the square root of x.

4.

procedural abstraction

e)

the lack of pattern or regularity. A random sequence of events has no order or pattern.

5.

random

33.

Match the following

a)

data means to transmit data from a computer to an online repository or service such as a bulletin board service, or drop box, or network.

1.

upload

b)

gives the remainder when one number is divided by another.

2.

mod operator

c)

an event that cannot be predicted with certainty. Examples would include flipping a fair coin, rolling a die, picking a card from a well shuffled deck.

3.

random event

d)

an algorithm that generates a sequence of numbers that seem to occur in random order.

4.

random number generator

34.

Computing Device

a)

A group of computers working together for a common purpose

b)

A group of connected computers that can send or receive data

c)

A machine that can run a program

d)

A sequence of direct connections

35.

computing system

a)

A group of computers working together for a common purpose

b)

A group of connected computers that can send or receive data

c)

A machine that can run a program

d)

A sequence of direct connections

36.

computing network

a)

A group of computers working together for a common purpose

b)

A group of connected computers that can send or receive data

c)

A machine that can run a program

d)

A sequence of direct connections

37.

path

a)

A group of computers working together for a common purpose

b)

A group of connected computers that can send or receive data

c)

A machine that can run a program

d)

A sequence of direct connections

38.

Which of the following best describes the protocols used on the Internet?

a)

The protocols of the Internet are secret to maintain the privacy and security of people using them

b)

The protocols of the Internet are designed by government agencies to ensure they remain free to use

c)

The protocols of the Internet are open and used by all devices connected to the network

d)

Each device connected to the Internet will use a protocol designed by the company that manufactured it

39.

Jesse purchases a new smartphone and is immediately able to use it to send a photo over the Internet to a friend who lives in a different country. Which of the following is NOT necessary to make this possible?

a)

A single direct connection is established between any two devices connected to the Internet

b)

The data of the image is routed through a sequence of directly connected devices before arriving at its destination.

c)

Both devices are using the same shared and open protocols

d)

Both devices are directly connected to at least one part of the Internet

40.

This diagram shows a number of computing devices connected to the Internet with each line representing a direct connection.   What is the MINIMUM number of paths that would need to be broken to prevent Computing Device A from connecting with Computing Device E?

a)

1

b)

2

c)

3

d)

4

41.

This diagram shows a number of computing devices connected to the Internet with each line representing a direct connection.   Device A is attempting to send data over the Internet to Device E. Which of the following is true of how the data will travel through the network?

a)

If the data travels through Device D then it will not travel through Device B

Answer

b)

It is possible that the data travels through any of the devices in the network before arriving at device E

c)

The data will never be sent to Device G since there are other shorter paths available

d)

The data will always travel through Device B as it is the shortest path

42.


Which of the following is true of how the Internet has responded to the increasing number of devices now using the network?

a)

The protocols of the Internet were designed to scale as new devices are added

b)

The protocols of the Internet are no longer necessary thanks to the large number of devices now connected to the network

c)

The Internet protocols are changed every year to adapt to the new devices that have been connected to the network

d)

While the number of devices connected to the Internet has grown, the network itself has not grown

43.

Which of the following is true of how packets are sent through the Internet?

a)

Packet metadata is only included on important packets to indicate they should get access to faster paths through the network

b)

Information sent through the internet is only encapsulated in packets if the message is too large to be sent as a datastream

c)

Information sent through the internet is split into two packets, one which contains the message and another which contains the metadata

d)

Packet metadata is used to route and reassemble information travelling through the Internet

44.

Emilee is watching an online video. The video is being sent to her laptop by a server over the Internet which splits the video into packets and sends them in the order they appear in the video. Which of the following is true about how the packets will arrive at her computer?

a)

The packets may arrive out of order

b)

Packets that arrive out of order will be sent back to the server.

c)

Either every packet will reach her computer or none of them will.

d)

The packets will always be received in the order that they were sent

45.


Which of the following best describes the purpose of an IP address?

a)

IP addresses provide a unique number for identifying devices that send and receive information on the Internet

b)

IP addresses assist in the reconstruction of a message that has been divided into many packets

c)

IP addresses indicate the location where an internet-connected computing device was manufactured

d)

IP addresses indicate how many times an individual packet has been requested by a router

46.

Which of the following Internet protocols is MOST important in reassembling packets and requesting missing packets to form complete messages?

a)

User Datagram Protocol (UDP)

b)

Transmission Control Protocol (TCP)

c)

HyperText Transfer Protocol (HTTP)

d)

Internet Protocol (IP)

47.

Which of the following Internet protocols is used to request and send pages and files on the World Wide Web?

a)

User Datagram Protocol (UDP)

b)

Internet Protocol (IP)

c)

HyperText Transfer Protocol (HTTP)

d)

Transmission Control Protocol (TCP)

48.


Two devices are connected to the Internet and communicating with one another. A squirrel chews through one of the wires in the network that is currently being used by the devices to communicate. The network immediately begins using a different path through the network and communication continues as normal.   This situation best exemplifies which principle?

a)

fault-tolerance

b)

scalability

c)

protocol

d)

pathing

49.

An Internet Service Provider (ISP) is a company that builds the routers and wired connections that allow individuals to access the Internet.   An ISP is considering adding additional redundant connections to its network. Which of the following best describes why the company would choose to do so?


a)

Redundant networks are more reliable

b)

It costs less to design a network that is redundant

c)

Adding additional connections reduces the fault-tolerance of the network

d)

The protocols of the Internet only work on networks that are redundant

50.

Which of the following situations is most likely to cause issues arising from the digital divide?

a)

A state makes voter registration forms available only by visiting a government website

b)

Two internet-connected devices located in different countries and thousands of miles apart attempt to communicate with one another

c)

Packets sent from one router to another begin arriving in a different order than they were sent

d)

A smartphone attempts to communicate over the Internet with another type of device, like a tablet or laptop

51.

Which of the following is MOST likely to be an outcome of the digital divide?

a)

People will have equal access and influence both globally and locally.

b)

Certain companies will be unable to certify their technology as digitally secure.

c)

People from some racial or ethnic groups have unequal access to computing technology.

d)

Political groups in some countries are unable to agree on regulations of digital technology.

52.

Choose the correct definition for the Router.

a)

a computer that is portable and suitable for use while traveling.

b)

the software that supports a computer's basic functions

c)

a computer that is suitable for any regular desk

d)

a device that forwards data packets along networks.

53.

Which of the devices in the network are considered computing devices?

A smart temperature sensor: It runs a program that checks whether the temperature is above or below the target range for that time of day and then triggers the heating or cooling system when needed.

A security camera: It uses a machine learning algorithm to detect non-plant motion and sends video footage to a computer.

A desktop computer: It generates a graph of the temperature based on data from the temperature sensor and stores video footage from the camera.

A wireless router: It uses networking software to enable the sensor, computer, and camera to send data to each other.

a)

Just the desktop computer

b)

Just the desktop computer and wireless router

c)

The desktop computer, security camera, and router

d)

All of them (the computer, router, camera, and sensor)

54.

A small part of the data is sent over the network.

a)

Data packet

b)

Router

c)

File

d)

IP address

55.

What is meant by an internet protocol?

a)

A software application used for sending and receiving emails.

b)

The process of browsing websites and accessing online content.

c)

A set of rules and protocols that govern how data is transmitted over the internet.

d)

The physical infrastructure that enables internet connectivity.

56.

The transmission control protocol (TCP) and Internet protocol (IP) are used in Internet communication. Which of the following best describes the purpose of these protocols?

a)

To ensure that communications between devices on the Internet are above a minimum transmission speed

b)

To ensure that private data is inaccessible to unauthorized devices on the Internet

c)

To establish a common standard for sending messages between devices on the Internet

d)

To validate the ownership of encryption keys used in Internet communication

57.

Which of the following Internet protocols is MOST important in reassembling packets and requesting missing packets to form complete messages?

a)

Transmission Control Protocol (TCP)

b)

Internet Protocol (IP)

c)

User Datagram Protocol (UDP)

d)

HyperText Transfer Protocol (HTTP)

58.

Which of these is not a protocol that powers the Internet?

a)

IP

b)

TCP

c)

HTTP

d)

UDP

e)

MFA

59.

Assume that the two variables age and day have been initialized with the values shown.

var age = 16;

var day = "Monday";


Determine if the following statement evaluates to true or false.

(age > 10) && (age < 20)

a)

true

b)

false

60.

Assume that the two variables age and day have been initialized as shown below.


var age = 16;

var day = "Monday";


Determine if the following statement evaluates to true or false.


!(age > 10)

a)

true

b)

false

61.

Assume that the two variables age and day have been initialized as shown below.


var age = 16;

var day = "Monday";


Determine if the following statement evaluates to true or false.


(day == "Tuesday") || (age < 12)

a)

true

b)

false

62.

Assume that the two variables age and day have been initialized as shown below.


var age = 16;

var day = "Monday";


Determine if the following statement evaluates to true or false.


!((age == 16) || (day == "Monday"))

a)

true

b)

false

63.

Assume that the two variables age and day have been initialized as shown below.


var age = 16;

var day = "Monday";


Determine if the following statement evaluates to true or false.


!((age == 16) && !(day == "Monday"))

a)

true

b)

false

64.

Assume that the two variables age and day have been initialized as shown below.


var age = 16;

var day = "Monday";


Determine if the following statement evaluates to true or false.


((age == 16) && (day == "Monday")) && (day == "Tuesday")

a)

true

b)

false

65.

Assume that the two variables age and day have been initialized as shown below.


var age = 16;

var day = "Monday";


Determine if the following statement evaluates to true or false.


((age == 16) && (day == "Monday")) || (day == "Tuesday")

a)

true

b)

false

66.

Assume that the two variables age and day have been initialized as shown below.


var age = 16;

var day = "Monday";


Determine if the following statement evaluates to true or false.


((age > 10) && ((age + 5) > 20))

a)

true

b)

false

67.

A program is:

a)

a series of steps to complete a task that a computer can understand.

b)

Python, JavaScript, Java, PHP, and Ruby

c)

the action we want the program to take.

d)

a condition that is false.

68.

Coding is:

a)

Python, JavaScript, Java, PHP, and Ruby

b)

the action of writing instructions for a computer in a language that it can understand.

c)

a language that is more precise than English but less precise than a coding language.

d)

a specific action to be taken if the condition is false.

69.

What is syntax?

a)

a catch-all for every other situation besides true.

b)

pieces of code that direct the program to run in different ways depending on what else is happening.

c)

a set of rules for how a language is written.

d)

English, Chinese, or Spanish.

70.

Control flow statements:

a)

pieces of code that direct the program to run in different ways depending on what else is happening.

b)

determine which code is being carried out at a given time.

c)

give the program the flexibility to go down more than one path.

d)

all of these.

71.

Pieces of code that only run "under certain conditions":

a)

conditional statements

b)

control flow statments

c)

syntax

d)

variables

72.

What is a condition?

a)

JavaScript

b)

Something that has to be true in order for an action to be carried out.

c)

syntax

d)

pseudocode

73.

This is a catch-all for every other situation besides the one where the condition is true.

a)

then

b)

do

c)

else

d)

if

74.

What is/are true about pseudocode?

a)

somewhere between English and a coding language.

b)

more precise than English but less precise than a coding language.

c)

used by programmers to figure out the logic and flow of their programs without having to worry about syntax.

d)

all of these

75.

A variable is...

a)

is a placeholder for a piece of information that can change.

b)

is like a bucket for holding information.

c)

can be written as letters or with longer words.

d)

all of these

76.

Which symbol means "not equal to"?

a)

==

b)

<=

c)

>=

d)

!=

77.

Which of the following is a test statement?

a)

color = sprite.ask("What's your favorite color?")

b)

sprite.say("So your favorite color is " + color.")

c)

if color == "red":

d)

color = "red"

78.

Which of the following best describes what a test statement is?

a)

This part is the code that runs in a conditional if the condition is true

b)

This is the part of the code that checks whether a condition is true or false

c)

This is a code that shows how many times a loop should run

d)

This is a code that saves multiple pieces of information in one place

79.

Which of the following best describes what the nested code part of a conditional is?

a)

This part is the code that runs in a conditional if the condition is true

b)

This is the part of the code that checks whether a condition is true or false

c)

This is a code that shows how many times a loop should run

d)

This is a code that saves multiple pieces of information in one place

80.

How many test statements does this program have?

a)

1

b)

2

c)

3

d)

4

81.

What happens if the user inputs "winter" into the first question in this program?

a)

The background changes to a winter background

b)

The user is asked another question

c)

The sprites says "Sad..."

d)

The sprite says "Me too!"

82.

Which of the following best describes what a flowchart is?

a)

A diagram that shows each step of a process or algorithm

b)

Conventions for making code easier for people to read

c)

The line of code in a conditional that checks if something is true or false.

d)

The line of code in a conditional that's indented over

83.

Which of the following symbols compares two values to see if they are the same?

a)

=

b)

[ ]

c)

==

d)

""

84.

According to the following flow chart, what will happen right after the user chooses "red"?

a)

The sprite will ask "Would you like to choose the red door, or the blue door?"

b)

The sprite will say "You win a car!"

c)

The sprite will say "You win a house!"

d)

The sprite will say "Thanks for playing!"

85.

According to the following flow chart, in what situation will the sprite say "Thanks for playing!"?

a)

If the user chooses "red"

b)

If the user chooses "blue"

c)

All of the above

d)

None of the above

86.

Which of the following programs follows the flowchart here?

a)
b)
c)
87.

In this program, there are several variables and If and statements. Check ALL of the lines that will be said by the program after the code is run.

a)

"Cool!"

b)

"Mindblowing!"

c)

"Sweet!"

d)

"Far out!"

88.

Which of these best describes when you want to use a conditional?

a)

When you want to repeat some code

b)

When you want to save a value

c)

When you want the program to do different things depending on user input

d)

When you want to add a certain amount to your variable

89.

Which of these is NOT a conditional?

a)

If-else

b)

If-And

c)

If statement

d)

For Counter

90.

Which line of code here has an error?

a)

1

b)

3

c)

5

d)

6

91.

To check if two values are the same, you need the (a)   sign.

92.

I have a program that has two variables, day and month. day tells you which # day it is, while month tells you which #r month it is. (Ex, for May 20 the month would be 5 and the day would be 20) Which kind of conditional would I need to check if today is Christmas?

a)

If else

b)

If

c)

If And

d)

For Counter

93.

I want to write a program that if the day is a friday, the program says "TGIF!" and if it isn't, it says "Hang in there!" What kind of conditional do I need?

a)

If else

b)

If

c)

If And

d)

For Counter

94.

I want to write a program so that if the user gets to 100 points, the program says "Congrats!" Which conditional should use?

a)

If else

b)

If

c)

If And

d)

For Counter

95.

Which of the following variable declarations are right?

a)

var 10 =10;

b)

var num = 10;

c)

var name = "Bob";

d)

var number 10 = 10;

96.

What is the value of x here?

(a)  

97.

What is the value of z?

(a)  

98.

Is this statement true or false? ( write true or false)

(a)  

99.

Is this statement true or false? (write true or false)

(a)  

100.

Is this statement true or false? (Write true or false)

(a)  

101.

Which statement will be printed to the console?

a)

I am 5

b)

I am not 5

c)

I'm not sure

d)

Nothing will be printed

102.

Which of these statements will be printed?

a)

I am less than or equal to 10

b)

I am none of the options

c)

I am 5

103.

What will be printed to the console?

a)

You are in elementary school

b)

You are in high school

c)

You are in some other school

104.

What will be printed to the console?

a)

You passed

b)

You failed

c)

None of the options

105.

What will be printed to the console log?

a)

You got the average

b)

You failed

c)

Congrats you get ice cream!

106.
If x has the value 12, Java will only evaluate the left side of the compound expression in the statement: if (x > 1 && x < 10)
a)
True
b)
False
107.

Match the following

a)

!

1.

Not

b)

||

2.

or

c)

&&

3.

and

d)

Logical Operator

4.

A symbol or word used to connect two or more expressions

e)

An expression that produces a true or false when evaluated

5.

Boolean Expression

108.

Any expression that can be evaluated for true or false is known as a ________ __________.

(a)  

109.

3 < 8 evaluates to? ​ (a)  

Choose from the below words
TRUE
FALSE
Boolean Value
Neither True or False
==
!
||
110.

Evaluate the expression for a Boolean Value