wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Hawkin's hunt ROUND-2

Total questions: 30

Worksheet time: 23mins

Name
Class
Date
1.

Eleven hides her powers using private variables but gives Mike access through methods. Which OOP principle is this?

a)

Abstraction

b)

Encapsulation

c)

Inheritance

d)

Polymorphism

2.

Dustin explains that the CPU switching between Demogorgon-fighting processes is called:

a)

Deadlock

b)

Context Switching

c)

Paging

d)

Scheduling

3.

Hopper uses TCP instead of UDP to talk to Joyce. Why?

a)

TCP is faster but unreliable

b)

TCP ensures delivery with acknowledgments

c)

UDP uses 3-way handshake

d)

UDP guarantees sequencing

4.

Which SQL command will Hopper use to permanently remove the Demogorgon table

a)

DELETE

b)

DROP

c)

TRUNCATE

d)

REMOVE

5.

Eleven uses git commit in Hawkins Lab repo. What does it do?

a)

Creates a repo

b)

Saves a snapshot of changes

c)

Sends code to GitHub

d)

Shows status of repo

6.

Will arranges Hawkins kids in sorted order and Hopper searches using Binary Search. Worst-case complexity?

a)

O(1)

b)

O(log n)

c)

O(n)

d)

O(n log n)

7.

Vecna’s broadcast curse affects every house in Hawkins. This is similar to

a)

Unicast

b)

Broadcast

c)

Multicast

d)

Anycast

8.

Which data structure fits Eleven’s box-stacking method against Demogorgons?

a)

Queue

b)

Stack

c)

Tree

d)

Graph

9.

Dustin makes a branch called portal_fix. Which Git command creates it?

a)

git init portal_fix

b)

git branch portal_fix

c)

git clone portal_fix

d)

git checkout portal_fix

10.

If Vecna’s processes wait forever for each other, this condition is called:

a)

Starvation

b)

Deadlock

c)

Blocking

d)

Fragmentation

11.

Eleven builds a class PsychicPortal. Which are true about classes in OOP?

a)

They act as blueprints for objects

b)

They support data + methods

c)

They can never be inherited

d)

Objects are instances of classes

12.

Hopper finds that the OS is thrashing. Possible reasons?

a)

Too many page faults

b)

Insufficient RAM

c)

CPU overheating

d)

Overloaded I/O devices

13.

Dustin sets up communication between Hawkins Lab computers. Which protocols belong to the Transport Layer?

a)

TCP

b)

UDP

c)

IP

d)

SMTP

14.

Vecna maintains a Victims table. Which SQL constraints could be used?

a)

PRIMARY KEY

b)

FOREIGN KEY

c)

NOT NULL

d)

MERGE

15.

Eleven wants to revert changes in Git. Which commands can she use?

a)

git reset

b)

git revert

c)

git clone

d)

git checkout

16.

Which are linear data structures? (Think Dustin organizing Hawkins toys in line)

a)

Queue

b)

Stack

c)

Linked List

d)

Graph

17.

Will’s location search is modeled as a graph problem. Which algorithms can find shortest paths?

a)

Dijkstra’s Algorithm

b)

BFS (on unweighted graph)

c)

DFS

d)

Bellman-Ford

18.

Joyce notices anomalies in Hawkins DB. Which anomalies occur without normalization?

a)

Insertion anomaly

b)

Deletion anomaly

c)

Update anomaly

d)

Sorting anomaly

19.

Hopper checks DNS records. Which ones exist?

a)

A

b)

AAAA

c)

CNAME

d)

MX

20.

Dustin describes Binary Trees. Which statements are true?

a)

Each node can have at most 2 children

b)

In a BST, left < root < right

c)

Traversal can be inorder, preorder, postorder

d)

BFS traversal uses stack

21.

Eleven’s limited powers, private variables, getters/setters → Which OOP principle?

(a)  

22.

CPU scheduling, Hopper assigning turns, Arcade machines in Hawkins → What OS concept?

(a)  

23.

Vecna’s curse broadcast, Router flooding packets, Everyone in Hawkins affected → Which Networking type?

(a)  

24.

Joyce’s Christmas lights to communicate with Will, Packet transmission acknowledgment in TCP → What networking feature?

(a)  

25.

Hopper’s “master key”, Unique VictimID in DB → Which DBMS concept?

(a)  

26.

Stranger Things alternate dimensions, Git branching system → What Git feature?

(a)  

27.

Demogorgon popping out randomly, Stack pop operation → Which data structure principle?

(a)  

28.

Hopper tracing Will’s shortest path home, Graph algorithms → Which Algorithm?

(a)  

29.

Vecna trapping processes, Processes waiting on each other forever → What OS problem?

(a)  

30.

The Upside Down and Hawkins being “mirrors”, Class & Object relationship → What OOP concept?

(a)