1. Find the Missing Word (IT Terms)Task: Fill in the missing IT term.
- Cloud _______ (computing)
- Machine _______ (learning)
- Source _______ (code)
- Data _______ (center)
- Cyber _______ (security)
2. Match the Pair (Concept – Definition)Match the IT term with its meaning:
A) API
B) Algorithm
C) Firewall
D) Database
E) Compiler
- A rule-based process for solving problems
- A system that blocks unauthorized access
- A tool that translates code
- A structured storage of data
- A set of rules that allows systems to communicate
Answer order sample: A-5, B-1, C-2, D-4, E-3
3. Guess the Term (Short Riddles)- I store values, I change during runtime. What am I?
- (Variable)
- I protect networks from attacks.
- (Firewall)
- I live in the cloud and scale automatically.
- (Cloud service)
- Humans write me, machines execute me.
- (Code / Program)
- I connect the frontend with the backend.
- (API)
4. IT Acronym ChallengeExpand the acronyms:
- SQL – ______
- CPU – ______
- RAM – ______
- UI – ______
- HTTP – ______
5. Word Scramble (Unscramble IT words)Unscramble the letters:
- BYTERSECUCI → Cybersecurity
- TAWFOSER → Software
- TAAD ENGINREE → Data Engineer
- NORGATICLHA → Algorithm
- KOBRETWEN → Network
6. IT Odd One OutChoose the word that does NOT belong:
- Python / Java / C++ / Banana
- Router / Switch / Firewall / Apple
- HTML / CSS / SQL / Hamburger
- RAM / SSD / GPU / Pizza
- API / Endpoint / Database / Watermelon
7. Fill the Gap Coding Style- A function always ______ a value.
- (return)
- A loop repeats code ______.
- (multiple times)
- Arrays store many values under one ______.
- (name)
- GitHub is used for code ______.
- (version control)
- Bug fixing is part of ______.
- (debugging)
8. Tech SynonymsRewrite the IT slang into a formal IT term:
- “Lag” → ______
- “Crash” → ______
- “Glitch” → ______
- “Boot up” → ______
- “Ping” → ______
Examples: latency, system failure, minor error, start the system, check connection.
9. True or False (IT Edition)- Python is a compiled language. — False
- HTML is not a programming language. — True
- A firewall protects networks. — True
- SSD is slower than HDD. — False
- CSS is used to style websites. — True
10. Short Coding PuzzleFind the output:
Puzzle 1:x = 3 y = 2 print(x * y + 1)
Answer:
7Puzzle 2:list = [1, 2, 3] print(len(list))
Answer:
3Puzzle 3:for i in range(3): print("Hi")
Answer: Hi
Hi
Hi