AI, But Why?
Guess the Output
Tech in Real Life
Find the Error
Wildcard
100

What does AI stand for?

Aritificial Intelligence

100

print("Hello" + "World")

HelloWorld

100

This technology allows you to unlock many phones using your face.

Facial Recognition

100

print("Hello World)

Missing quotation mark

100

The keyboard shortcut almost everyone uses after making a mistake.

Ctrl Z

200

What does LLM stand for?

Large Language Model

200

x = 5 

y = 3 

print(x + y)

8

200

This keeps your password safe by scrambling it so others can't read it.

Encryption

200

if x = 5:

Missing "="

200

What's the meaning of the error code "404"?

"Page Not Found"

300

When an AI confidently gives false or made-up information, it's called:

Hallucinations

300

for i in range(3): 

print(i)

2

300

This technology lets your phone communicate wirelessly with nearby devices.

Bluetooth

300

name = input("Enter name: )
print(name)

Missing "

300

What's the traditional first thing you print when you write your first program?

Hello World
400

Instead of being explicitly programmed with every rule, many AI systems improve by finding patterns in:

Data

400

x = 10 

if x > 5: 

print("SIGSOFT") 

else: 

print("ACM")

SIGSOFT

400

The small files websites store on your browser to remember information about you.

Cookies

400

while True: 

print("Help")

Infinite Loop

400

How many bits are in a byte?

8

500

An AI model may have billions of these adjustable values that it changes during training to learn patterns.

Parameters

500

x = "5"

 y = 5 

print(x * y)

55555

500

This system stores and processes data on remote servers accessed through the internet.

Cloud Computing

500

numbers = [1, 2, 3] 

print(numbers[3])

Index Error

500
What does HTTP stand for?

Hypertext Transfer Protocol