wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

Quiztronic

Total questions: 40

Worksheet time: 20mins

Name
Class
Date
1.
  1. What year was the Computer Society of India (CSI) founded?

a)

a) 1965

b)

b) 1970

c)

c) 1985

d)

d) 1990

2.

2. Which of the following is not a programming language?

a)

a) Python

b)

b) C++

c)

c) HTML

d)

d) Java

3.

3.What does "HTTP" stand for?

a)

a) HyperText Transfer Protocol

b)

b) High Tech Protocol

c)

c) Hyper Transfer Path

d)

d) Hyperlink Transport Process

4.

4.Who is known as the father of Artificial Intelligence?

a)

a) Alan Turing

b)

b) John McCarthy

c)

c) Elon Musk

d)

d) Charles Babbage

5.

5.What does RAM stand for?

a)

a) Read Access Memory

b)

b) Random Access Memory

c)

c) Run-time Active Memory

d)

d) Remote Access Module

6.

6.Which company developed the first microprocessor?

a)

a) Intel

b)

b)AMD

c)

c)Apple

d)

d)IBM

7.

7. What is the time complexity of the Bellman-Ford algorithm?

a)

a) O(V²)

b)

b) O(V log V)

c)

c) O(VE)

d)

d) O(E log V)

8.
  1. Which data structure is used for fast prefix searches?

a)

a) Hash Table

b)

b) BST

c)

c) Trie

d)

d) Stack

9.
  1. Why is Kruskal’s algorithm better for a sparse graph than Prim’s?

a)

a) Uses a min-heap

b)

b) Works in O(E log E)

c)

c) Uses DFS

d)

d) None of the above

10.
  1. What is the full form of IoT?

a)

a) Internet of Technology

b)

b) Internet of Things

c)

c) Internal Object Tracking

d)

d) Internet of Telecommunication

11.
  1. What is the output of print(2 ** 3) in Python?

a)

a) 6

b)

b) 8

c)

c) 9

d)

d) 5

12.
  1. Which of these is NOT a scheduling algorithm?

a)

a) FIFO

b)

b) Round Robin

c)

c) Shortest Job First

d)

d) Huffman Coding

13.
  1. Which layer in the OSI model is responsible for routing?

a)

a) Data Link Layer

b)

b) Transport Layer

c)

c) Network Layer

d)

d) Application Layer

14.
  1. If a binary tree has N nodes, what is the maximum height of the tree?

a)

a) log(N)

b)

b) N

c)

c) N-1

d)

d) 2^N

15.
  1. A CPU executes 1 billion instructions per second. How long does it take to execute 1 trillion instructions?

a)

a) 1 second

b)

b) 1000 seconds

c)

c) 10^6 seconds

d)

c) 10^6 seconds

16.
  1. What is the minimum number of bits needed to represent 256 different values?

a)

a) 8

b)

b) 16

c)

c) 32

d)

c) 64

17.
  1. If a program runs fine on a local machine but crashes when deployed to production, what could be the issue?

a)

a) Memory Leak

b)

b) Infinite Loop

c)

c) Dependency Issue

d)

d) All of the above

18.
  1. What type of attack is SQL Injection?

a)

a) DoS attack

b)

b) Privilege escalation

c)

c) Code injection

d)

d) Phishing

19.
  1. What type of attack is SQL Injection?

a)

a) DoS attack

b)

b) Privilege escalation

c)

c) Code injection

d)

d) Phishing

20.
  1. If a website’s CSS file is not loading, what is the first thing to check?

a)

a) Internet connection

b)

b) File path

c)

c) JavaScript errors

d)

d) Server temperature

21.
  1. What is the purpose of a firewall?

a)

a) Block viruses

b)

b) Control network traffic

c)

c) Increase internet speed

d)

d) Store data

22.
  1. What is the default port for HTTPS?

a)

a) 443

b)

b) 80

c)

c) 22

d)

d) 25

23.
  1. Which language is considered the "mother of all programming languages"?

a)

a) Python

b)

b) Assembly

c)

c) C

d)

d) FORTRAN

24.
  1. Which one of these is NOT an operating system?

a)

a) Windows

b)

b) Linux

c)

c) Python

d)

d) macOS

25.
  1. Which company developed the first graphical web browser?

a)

a) Microsoft

b)

b) Netscape

c)

c) CERN

d)

d) Mozilla

26.
  1. In machine learning, what is overfitting?

a)

a) Model is too simple

b)

b) Model learns noise instead of pattern

c)

c) Model runs too fast

d)

d) Model has too many inputs

27.
  1. Which data structure follows the LIFO principle?

a)

a) Queue

b)

b) Stack

c)

c) Array

d)

d) Linked List

28.
  1. What is the primary purpose of a compiler in programming?

a)

a) Convert high-level code into machine code

b)

b) Execute a program directly

c)

c) Debug a program

d)

d) Store data in a database

29.
  1. Which of the following is NOT a characteristic of a good algorithm?

a)

a) Finiteness

b)

b) Ambiguity

c)

c) Definiteness

d)

d) Effectiveness

30.
  1. What is the first step in problem-solving?

a)

a) Writing a program

b)

b) Analyzing the problem

c)

c) Testing the code

d)

d) Debugging

31.
  1. Which data type can store only True or False values?

a)

a) Integer

b)

b) Boolean

c)

c) Float

d)

d) Character

32.
  1. What will be the output of printf("%d", 5 + 'A'); in C?

a)

a) 5

b)

b) A5

c)

c) 70

d)

d) Error

33.
  1. What is recursion in programming?

a)

a) A function that calls another function

b)

b) A function that calls itself

c)

c) A loop inside a function

d)

d) A function that executes without stopping

34.
  1. Which of the following is NOT a feature of Object-Oriented Programming (OOP)?

a)

a) Encapsulation

b)

b) Inheritance

c)

c) Polymorphism

d)

d) Compilation

35.
  1. Which protocol is used for transferring web pages?

a)

a) FTP

b)

b) HTTP

c)

c) SMTP

d)

d) TCP

36.
  1. Virtual memory is implemented using:

a)

a) RAM

b)

b) Cache memory

c)

c) Hard disk

d)

d) Registers

37.
  1. Which data structure follows FIFO (First In, First Out)?

a)

a) Stack

b)

b) Queue

c)

c) Linked List

d)

d) Hash Table

38.
  1. Which protocol is used for secure communication over the internet?

a)

a) HTTP

b)

b) FTP

c)

c) SSH

d)

d) POP3

39.
  1. What is the purpose of the DMA (Direct Memory Access) controller?

a)

a) To allow CPU access to RAM directly

b)

b) To transfer data between memory and devices without CPU intervention

c)

c) To manage cache memory

d)

d) To control the ALU

40.
  1. In blockchain technology, what is the primary reason why a 51% attack is dangerous?

a)

A) It speeds up transaction verification

b)

B) It corrupts the entire blockchain

c)

C) It allows an attacker to steal private keys

d)

D) It allows attackers to double-spend coins