Font size
WorksheetsCyberHunt IT Quiz
Total questions: 50
Worksheet time: 18mins
What programming language was primarily used in the movie The Social Network to develop Facebook?
Python
PHP
Java
C++
What is the full form of IP in networking?
Internet Protocol
Input Process
Information Protocol
Internal Processing
What does the "X" in XHTML stand for?
Extra
Extensible
Extreme
Executable
What was the name of the first Apple silicon processor?
A1
C1
M1
X1
Which layer of the OSI model is responsible for routing data packets?
Transport Layer
Network Layer
Session Layer
Application Layer
Who developed Yahoo?
Dennis Ritchie & Ken Thompson
David Filo & Jerry Yang
Vint Cerf & Robert Kahn
Steve Case & Jeff Bezos
What is the binary representation of the decimal number 13?
(a)
What does GPT stand for in AI models?
Generative Processing Technology
Generative Pre-trained Transformer
Generative Processing Transformer
Google Pre-trained Transformer
What is the primary function of a Transformer model in AI?
Image recognition
Natural language processing
Hardware acceleration
Database management
What is the output?
#include<stdio.h>
int main()
{
int x = 10;
int y = 10;
if ( !(x ^ y) )
printf(" A ");
else
printf(" B ");
return 0;
}
A
B
No output
Error
What type of learning is primarily used to train GPT models?
Supervised Learning
Unsupervised Learning & Reinforcement Learning
Federated Learning
Reinforcement Learning & Supervised Learning
Which algorithm is commonly used in deep learning models?
K-Means Clustering
Backpropagation
Dijkstra’s Algorithm
Naïve Bayes
Which AI framework is developed by Google and widely used for deep learning?
PyTorch
Keras
OpenCV
TensorFlow
Which type of malware encrypts a user’s files and demands payment to restore access?
Virus
Malware
Ransomware
Spyware
Which is a type of Electrically-Erasable Programmable Read-Only Memory?
Flash
Flange
Fury
FRAM
Which software development methodology follows an iterative and incremental approach?
Waterfall
V-Model
Agile
RAD
What is the output of the following Python code?
print(3 * "Hello")
HelloHelloHello
3Hello
Error
syntax error
Which of the following is an example of a cloud computing service provider?
Windows
Azure
MySQL
AWS (Amazon Web Services)
Which network topology uses a central hub to connect all devices?
Ring
Star
Mesh
Bus
Which company developed the first commercial AI chatbot in the 1960s?
IBM
MIT ELIZA chatbot
Microsoft
Which technique does GPT use to generate human-like text?
Decision Trees
Attention Mechanism (Self-Attention)
Support Vector Machines (SVM)
Clustering
What is the time complexity of searching for an element in a balanced binary search tree (BST)?
O(n)
O(log n)
O(1)
O(n²)
Which was the first computer virus ever created?
Brain
Melissa
ILOVEYOU
Creeper
Guess the answer
#include <stdio.h>
int main() {
int a = printf("Hello");
printf("%d", a);
return 0;
}
5
6
0
1
What is the key feature of the Google Pixel Watch 3?
Satellite calling
Augmented reality support
Advanced health tracking
Oxygen level
What does ACID stand for in the context of DBMS?
Automated, Consistent, Integrated, Data
Atomicity, Consistency, Isolation, Durability
Access, Control, Integrity, Data
Alter, Commit, Insert, Delete
Guess the output?
#include <stdio.h>
int main()
{
int n = 4;
n = n >> 2;
printf(" %d ",n);
return 0;
}
4
0
ERROR
1
What is the output of printf("%c", 65);?
A
65
Compilation Error
Undefined Behavior
Which operator has the highest precedence in C?
* (Multiplication)
++ (Increment)
&& (Logical AND)
= (Assignment)
What does arr represent if int arr[10]; is declared in C?
A pointer to an integer.
The address of the first element of the array.
The total size of the array.
The last element of the array.
What is the base condition in a recursive function?
The condition where the function calls itself indefinitely.
The condition that stops further recursive calls.
The condition that keeps the function running.
A special loop inside the function.
Who is this famous CEO?
Guess the output?
#include <stdio.h>
int main() {
int x = 5;
if (x = 0)
printf("Inside if\n");
else
printf("Inside else\n");
return 0;
}
Error
inside if
Segment Fault
Inside else
Python is a compiled language.
True
False
#include <stdio.h>
int main() {
printf("Hello ");
main();
return 0;
}
Prints "Hello" once
Infinite loop
Segmentation fault
Compilation Error
A compiler converts assembly language to machine code.
True
False
The OSI model has number of layers _
(a)
Which of the following is true about deadlocks in operating systems?
Deadlocks occur only in single-threaded systems
A system is in a deadlock state when one process is waiting for a resource indefinitely
The four necessary conditions for a deadlock are mutual exclusion, hold and wait, no preemption, and circular wait
Deadlocks can always be prevented using scheduling algorithms
Which of the following memory allocation techniques may suffer from external fragmentation?
Paging
Segmentation
Virtual Memory
Stack Allocation
Which cache level is directly connected to the CPU cores?
L1 Cache
L2 Cache
L3 Cache
Virtual Cache
SQL-> ______
Standard Query Language
Sequential Query Logic
Structured Query Language
Systematic Query Link
A switch operates at the Data Link Layer of the OSI model.
True
False
Which one is NOT a linear data structure?
Stack
Queue
Linked List
Graph
Guess the output?
#include <stdio.h>
int main() {
int i = 3;
while (i-- > 0)
printf("%d ", i);
return 0;
}
3 2 1
3 2 1 0
2 1 0
Infinite Loop
Which of the following lines contains a syntax error?
int a = 5;
float b = 3.14;
char ch = "A";
double d = 9.99;
Claude
Dall-E
Gemini
Deepseek
Which graph algorithm is primarily used by Google Maps for finding the shortest route between two locations?
Prim's Algorithm
Kruskal's Algorithm
Dijkstra's Algorithm
Floyd-Warshall Algorithm
What type of connector is shown in the image?
VGA
VGI
DVI
None of the above
What is a firewall used for?
To increase internet speed
To protect a network from unauthorized access
To print documents
All of the above
Which of the following is a NoSQL database?
MySQL
PostgreSQL
MongoDB
Oracle
