wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

CyberHunt IT Quiz

Total questions: 50

Worksheet time: 18mins

Name
Class
Date
1.

What programming language was primarily used in the movie The Social Network to develop Facebook?

a)

Python

b)

PHP

c)

Java

d)

C++

2.

What is the full form of IP in networking?

a)

Internet Protocol

b)

Input Process

c)

Information Protocol

d)

Internal Processing

3.

What does the "X" in XHTML stand for?

a)

Extra

b)

Extensible

c)


Extreme

d)


Executable

4.

What was the name of the first Apple silicon processor?

a)


A1

b)


C1

c)

M1

d)


X1

5.

Which layer of the OSI model is responsible for routing data packets?

a)

Transport Layer

b)

Network Layer

c)

Session Layer

d)

Application Layer

6.

Who developed Yahoo?

a)

Dennis Ritchie & Ken Thompson

b)

David Filo & Jerry Yang

c)

Vint Cerf & Robert Kahn

d)

Steve Case & Jeff Bezos

7.

What is the binary representation of the decimal number 13?

(a)  

8.

What does GPT stand for in AI models?

a)

Generative Processing Technology

b)

Generative Pre-trained Transformer

c)

Generative Processing Transformer

d)

Google Pre-trained Transformer

9.

What is the primary function of a Transformer model in AI?

a)

Image recognition

b)

Natural language processing

c)

Hardware acceleration

d)

Database management

10.

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)

A

b)

B

c)

No output

d)

Error

11.

What type of learning is primarily used to train GPT models?

a)

Supervised Learning

b)

Unsupervised Learning & Reinforcement Learning

c)

Federated Learning

d)

Reinforcement Learning & Supervised Learning

12.

Which algorithm is commonly used in deep learning models?

a)

K-Means Clustering

b)

Backpropagation

c)

Dijkstra’s Algorithm

d)

Naïve Bayes

13.

Which AI framework is developed by Google and widely used for deep learning?

a)

PyTorch

b)

Keras

c)

OpenCV

d)

TensorFlow

14.

Which type of malware encrypts a user’s files and demands payment to restore access?

a)

Virus

b)

Malware

c)

Ransomware

d)

Spyware

15.


Which is a type of Electrically-Erasable Programmable Read-Only Memory?

a)

Flash

b)

Flange

c)

Fury

d)

FRAM

16.

Which software development methodology follows an iterative and incremental approach?

a)

Waterfall

b)

V-Model

c)

Agile

d)

RAD

17.

What is the output of the following Python code?

print(3 * "Hello")

a)

HelloHelloHello

b)

3Hello

c)

Error

d)

syntax error

18.

Which of the following is an example of a cloud computing service provider?

a)

Windows

b)

Azure

c)

MySQL

d)

AWS (Amazon Web Services)

19.

Which network topology uses a central hub to connect all devices?

a)

Ring

b)

Star

c)

Mesh

d)

Bus

20.

Which company developed the first commercial AI chatbot in the 1960s?

a)

Google

b)

IBM

c)

MIT ELIZA chatbot

d)

Microsoft

21.

Which technique does GPT use to generate human-like text?

a)

Decision Trees

b)

Attention Mechanism (Self-Attention)

c)

Support Vector Machines (SVM)

d)

Clustering

22.

What is the time complexity of searching for an element in a balanced binary search tree (BST)?

a)

O(n)

b)

O(log n)

c)

O(1)

d)

O(n²)

23.

Which was the first computer virus ever created?

a)

Brain

b)

Melissa

c)

ILOVEYOU

d)

Creeper

24.

Guess the answer

#include <stdio.h>

int main() {

int a = printf("Hello");

printf("%d", a);

    return 0;

}

a)

5

b)

6

c)

0

d)

1

25.

What is the key feature of the Google Pixel Watch 3?

a)

Satellite calling

b)

Augmented reality support

c)

Advanced health tracking

d)

Oxygen level

26.

What does ACID stand for in the context of DBMS?

a)

Automated, Consistent, Integrated, Data

b)

Atomicity, Consistency, Isolation, Durability

c)

Access, Control, Integrity, Data

d)

Alter, Commit, Insert, Delete

27.

Guess the output?

#include <stdio.h>

int main()

{

int n = 4;

n = n >> 2;

printf(" %d ",n);

   return 0; 

}

a)

4

b)

0

c)

ERROR

d)

1

28.

What is the output of printf("%c", 65);?

a)

A

b)

65

c)

Compilation Error

d)

Undefined Behavior

29.

Which operator has the highest precedence in C?

a)

* (Multiplication)

b)

++ (Increment)

c)

&& (Logical AND)

d)

= (Assignment)

30.

What does arr represent if int arr[10]; is declared in C?

a)

A pointer to an integer.

b)

The address of the first element of the array.

c)

The total size of the array.

d)

The last element of the array.

31.

What is the base condition in a recursive function?

a)

The condition where the function calls itself indefinitely.

b)

The condition that stops further recursive calls.

c)

The condition that keeps the function running.

d)

A special loop inside the function.

32.

Who is this famous CEO?

a)

Tim Cook- Apple

c)

Michael Dell-Dell

d)

Jensen Huang-Nvidia

33.

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;

}

a)

Error

b)

inside if

c)

Segment Fault

d)

Inside else

34.

Python is a compiled language.

a)

True

b)

False

35.

#include <stdio.h>

int main() {

printf("Hello ");

main();

    return 0;

}

a)

Prints "Hello" once

b)

Infinite loop

c)

Segmentation fault

d)

Compilation Error

36.

A compiler converts assembly language to machine code.

a)

True

b)

False

37.

The OSI model has number of layers _

(a)  

38.

Which of the following is true about deadlocks in operating systems?

a)

Deadlocks occur only in single-threaded systems

b)

A system is in a deadlock state when one process is waiting for a resource indefinitely

c)

The four necessary conditions for a deadlock are mutual exclusion, hold and wait, no preemption, and circular wait

d)

Deadlocks can always be prevented using scheduling algorithms

39.

Which of the following memory allocation techniques may suffer from external fragmentation?

a)

Paging

b)

Segmentation

c)

Virtual Memory

d)

Stack Allocation

40.

Which cache level is directly connected to the CPU cores?

a)

L1 Cache

b)

L2 Cache

c)

L3 Cache

d)

Virtual Cache

41.

SQL-> ______

a)

Standard Query Language

b)

Sequential Query Logic

c)

Structured Query Language

d)

Systematic Query Link

42.

A switch operates at the Data Link Layer of the OSI model.

a)

True

b)

False

43.

Which one is NOT a linear data structure?

a)

Stack

b)

Queue

c)

Linked List

d)

Graph

44.

Guess the output?
#include <stdio.h>

int main() {

int i = 3;

while (i-- > 0)

printf("%d ", i);

    return 0;

}

a)

3 2 1

b)

3 2 1 0

c)

2 1 0

d)

Infinite Loop

45.

Which of the following lines contains a syntax error?

a)

int a = 5;

b)

float b = 3.14;

c)

char ch = "A";

d)

double d = 9.99;

46.

a)

Claude

b)

Dall-E

c)

Gemini

d)

Deepseek

47.

Which graph algorithm is primarily used by Google Maps for finding the shortest route between two locations?

a)

Prim's Algorithm

b)

Kruskal's Algorithm

c)

Dijkstra's Algorithm

d)

Floyd-Warshall Algorithm

48.

What type of connector is shown in the image?

a)

VGA

b)

VGI

c)

DVI

d)

None of the above

49.

What is a firewall used for?

a)

To increase internet speed

b)

To protect a network from unauthorized access

c)

To print documents

d)

All of the above

50.

Which of the following is a NoSQL database?

a)

MySQL

b)

PostgreSQL

c)

MongoDB

d)

Oracle