Binary Busters
Cybersecurity Central
Algorithm Alley
Network Know-It-All
Python Pack
100

What number is represented by the binary 1010?

10

100

What tool blocks unauthorized access to a network?

Firewall

100

What keyword usually starts a pseudocode algorithm?

START

100

What does LAN stand for?

Local Area Network

100

What type of data is used for whole numbers?

Integer

200

Convert the decimal number 25 to binary

11001

200

What is the purpose of antivirus software?

To detect and remove harmful programs

200

What type of statement is used to make decisions in pseudocode?

Conditional (IF/THEN/ELSE)

200

Which type of cable is faster and uses light to send data?

Fiber Optic

200

What symbol is used in Python for "not equal to"?

!=

300

What ASCII character is represented by the binary 01000001?

A

300

What does an echo check help detect during transmission?

Errors

300

In a flowchart, what shape is used to represent a decision (e.g., yes/no)?

Diamond

300

What’s one advantage of wireless networks over wired ones?

More mobility / No physical cables needed

300

What’s the purpose of a library in programming?

To reuse pre-written code or functions

400

What is the result of this logic expression: NOT 0?

1

400

Give one advantage of using a strong password.

Harder for hackers to guess

400

Which type of search checks every item one by one?

Linear Search

400

What does PAN stand for, and give an example.

Personal Area Network (e.g., Bluetooth earbuds)

400

Give an example of a Boolean value.

True / False

500

You receive a binary message: 01001000 01101001. What does it say in ASCII text?

Hi

500

What’s one difference between a virus and spyware?

Spyware gathers data secretly; a virus spreads and may damage files

500
Predict the output:

x = 10

IF x>5 THEN

    PRINT "Big"

ELSE

    PRINT "Small"

Big

500

What’s one security disadvantage of using wireless networks?

Easier to intercept without proper encryption

500

Explain what a conditional statement does in a program.

It decides what code to run based on conditions (e.g., IF... THEN)