NEW
Font size
WorksheetsHAWKIN'S HUNT ROUND -1 QUIZ
Total questions: 30
Worksheet time: 15mins
Hopper creates a class Monster and a subclass Demogorgon. What concept is this?
Abstraction
Inheritance
Polymorphism
Encapsulation
Eleven hides her powers inside private variables but allows Mike to use them through getter methods. What OOP principle is this?
Inheritance
Polymorphism
Encapsulation
Abstraction
If Dustin writes multiple methods called signal() with different parameters to detect Upside Down creatures, this is an example of:
Method Overriding
Method Overloading
Abstraction
Inheritance
Vecna creates an abstract class Curse that defines haunt(). Which statement is true?
It can be instantiated directly
Subclasses must implement haunt()
It cannot have variables
It can’t be extended
If Eleven overrides the attack() method of Human class with her own psychic powers, what concept is shown?
Overloading
Overriding
Inheritance
Data Hiding
Hawkins Lab’s OS allows multiple kids to use arcade machines at the same time. What concept is this?
Virtualization
Multiprogramming
Deadlock
Paging
If Will’s process is waiting for I/O (like the lights to blink), which state is it in?
Ready
Waiting
Running
Terminated
Dustin explains to Lucas that context switching happens when:
CPU changes from one process to another
Data is swapped between RAM and disk
A process completes
A deadlock is resolved
Eleven uses semaphores to control gate entry to the Upside Down. What problem do semaphores help solve?
Paging
CPU Scheduling
Synchronization
Thrashing
Hopper finds that multiple tasks are stuck waiting forever for resources. What is this condition?
Starvation
Deadlock
Paging
Fragmentation
Dustin compares IP addresses to Hawkins house addresses. What layer of OSI uses IP?
Application
Transport
Network
Data Link
Hopper uses TCP instead of UDP to call Joyce. Why?
TCP is unreliable
TCP provides guaranteed delivery
UDP is connection-oriented
TCP doesn’t use acknowledgments
If Vecna’s curse spreads like a broadcast in Hawkins, which layer does this happen in?
Physical
Data Link
Transport
Network
Eleven uses DNS to find Mike’s server. Which record maps a hostname to an IPv4 address?
A
AAAA
MX
CNAME
Will sends a distress signal over email from the Upside Down. Which protocol is mainly used for email sending?
HTTP
FTP
SMTP
DNS
Each VictimID in Vecna’s curse table is unique. Which key is this?
Foreign key
Primary key
Candidate key
Alternate key
Dustin notices redundant data in Hawkins DB, causing anomalies. Which process removes redundancy?
Deadlock
Normalization
Indexing
Caching
If Monsters table references Victims table using VictimID, what type of key is in Monsters
Primary key
Candidate key
Foreign key
Super key
Eleven runs ROLLBACK after a failed experiment update. Which property of transactions is applied?
Consistency
Durability
Isolation
Atomicity
Which SQL command is used by Hopper to remove the Demogorgon table permanently?
DELETE
DROP
TRUNCATE
REMOVE
Dustin saves his Stranger Things project with a snapshot. Which Git command is used?
git init
git commit
git push
git status
Eleven wants to work on a new feature telekinesis. Which command creates a new branch?
git init
git branch telekinesis
git clone
git merge telekinesis
Hopper uploads Hawkins Lab’s repo to GitHub. Which command is used?
git push
git pull
git fetch
git clone
Vecna downloads Eleven’s repo copy to his own system. Which Git command does this?
git pull
git clone
git push
git init
If Joyce checks recent changes in the repo, which command does she use?
git init
git status
git log
git fetch
Eleven stacks boxes to block Demogorgons. Removing boxes from the top follows which principle?
FIFO
LIFO
Circular Queue
Priority Queue
Will sends a signal from the Upside Down, and Hopper finds the shortest path to him. Which algorithm fits?
BFS
DFS
Dijkstra’s Algorithm
Kruskal’s Algorithm
Dustin arranges Hawkins kids in sorted order and looks for Mike using Binary Search. What is the time complexity in worst case?
O(n)
O(log n)
O(n log n)
O(1)
If Vecna’s curse spreads in levels outward (like BFS), which data structure is used internally?
Stack
Queue
Heap
Tree
Hopper stores unique victim names using a HashSet. What is the average time complexity of search?
O(1)
O(log n)
O(n)
O(n log n)
