College Exam Practice: CS & Algorithms
College Exam Practice: CS & Algorithms
Questions
Computer Science & Computer Hardware (334 Questions)
Programming Fundamentals (50 Questions)
2. Q: Which data structure uses LIFO (Last In First Out) principle? A: Stack
3. Q: What is the difference between compiler and interpreter? A: A compiler translates
entire program at once before execution, while an interpreter translates and executes
line by line.
4. Q: What is a pointer in programming? A: A variable that stores the memory address of
another variable.
6. Q: Name the four pillars of OOP. A: Encapsulation, Inheritance, Polymorphism, and
Abstraction
7. Q: What is recursion? A: A function that calls itself to solve a problem by breaking it into
smaller instances.
8. Q: What is the purpose of a constructor? A: To initialize objects when they are created.
9. Q: What is the difference between array and linked list? A: Arrays have fixed size with
contiguous memory; linked lists are dynamic with non-contiguous memory connected by
pointers.
10.Q: What is a hash table? A: A data structure that maps keys to values using a hash
function for fast lookup.
11.Q: What is the time complexity of accessing an array element by index? A: O(1)
12.Q: What is a queue data structure? A: A linear data structure following FIFO (First In
First Out) principle.
13.Q: What is inheritance in OOP? A: A mechanism where a new class derives properties
and methods from an existing class.
14.Q: What is polymorphism? A: The ability of objects to take multiple forms, allowing
methods to behave differently based on the object.
15.Q: What is encapsulation? A: Bundling data and methods that operate on that data
within a single unit and restricting access to some components.
16.Q: What is a destructor? A: A special method called when an object is destroyed to free
resources.
17.Q: What is the difference between public and private access modifiers? A: Public
members are accessible from anywhere; private members are only accessible within the
class.
18.Q: What is a binary tree? A: A tree data structure where each node has at most two
children.
19.Q: What is a variable? A: A named storage location that holds a value which can change
during program execution.
20.Q: What is type casting? A: Converting a variable from one data type to another.
22.Q: What is Big O notation used for? A: To describe the time or space complexity of an
algorithm.
23.Q: What is a loop? A: A control structure that repeats a block of code multiple times.
24.Q: What is the difference between while and do-while loop? A: While loop checks
condition first; do-while executes at least once before checking condition.
25.Q: What is a function? A: A reusable block of code that performs a specific task.
26.Q: What is pass by value? A: Passing a copy of the variable's value to a function.
27.Q: What is pass by reference? A: Passing the memory address of the variable to a
function.
30.Q: What is an exception? A: An error or unexpected event that occurs during program
execution.
31.Q: What is exception handling? A: Managing errors using try-catch blocks to prevent
program crashes.
34.Q: What is method overloading? A: Having multiple methods with the same name but
different parameters.
35.Q: What is method overriding? A: Redefining a parent class method in a child class.
36.Q: What is abstraction? A: Hiding complex implementation details and showing only
essential features.
37.Q: What is an interface? A: A contract that specifies methods a class must implement,
containing only method signatures.
38.Q: What is a constant? A: A variable whose value cannot be changed after initialization.
39.Q: What is scope of a variable? A: The region of code where a variable is accessible.
40.Q: What is a static variable? A: A variable that belongs to the class rather than
instances, shared among all objects.
41.Q: What is dynamic memory allocation? A: Allocating memory during runtime using
functions like malloc() or new.
42.Q: What is a memory leak? A: Memory that is allocated but not freed, causing wasted
memory resources.
43.Q: What is the difference between stack and heap memory? A: Stack is automatic,
faster, limited; heap is manual, slower, larger for dynamic allocation.
44.Q: What is a null pointer? A: A pointer that doesn't point to any valid memory location.
45.Q: What is a dangling pointer? A: A pointer that points to memory that has been freed or
deleted.
46.Q: What is an array index? A: The position of an element in an array, typically starting
from 0.
47.Q: What is a 2D array? A: An array of arrays, representing data in rows and columns.
49.Q: What is searching? A: Finding the location of a specific element in a data structure.
50.Q: What is debugging? A: The process of identifying and fixing errors in code.
52.Q: What is the best case time complexity of quick sort? A: O(n log n)
54.Q: What is DFS (Depth First Search)? A: A graph traversal algorithm that explores as far
as possible along each branch before backtracking.
55.Q: What is BFS (Breadth First Search)? A: A graph traversal algorithm that explores all
neighbors at the present depth before moving to nodes at the next depth.
56.Q: What is a priority queue? A: A queue where elements are served based on priority
rather than order of arrival.
57.Q: What is a heap? A: A complete binary tree where parent nodes have specific
ordering with respect to children (min-heap or max-heap).
58.Q: What is a BST (Binary Search Tree)? A: A binary tree where left child is smaller and
right child is larger than parent node.
59.Q: What is tree traversal? A: Visiting all nodes in a tree in a specific order.
60.Q: Name three types of tree traversal. A: Inorder, Preorder, and Postorder.
61.Q: What is inorder traversal sequence? A: Left subtree, Root, Right subtree.
62.Q: What is preorder traversal sequence? A: Root, Left subtree, Right subtree.
63.Q: What is postorder traversal sequence? A: Left subtree, Right subtree, Root.
64.Q: What is a balanced tree? A: A tree where the height difference between left and right
subtrees is at most 1 for all nodes.
65.Q: What is an AVL tree? A: A self-balancing binary search tree where heights of
subtrees differ by at most 1.
66.Q: What is a collision in hashing? A: When two different keys produce the same hash
value.
67.Q: What is chaining in hash tables? A: Resolving collisions by storing multiple values at
the same index using a linked list.
68.Q: What is linear probing? A: A collision resolution technique that searches for the next
available slot sequentially.
69.Q: What is merge sort? A: A divide-and-conquer sorting algorithm that splits array into
halves, sorts them, and merges.
70.Q: What is the time complexity of merge sort? A: O(n log n)
71.Q: What is insertion sort? A: A sorting algorithm that builds final sorted array one
element at a time by inserting elements in proper position.
72.Q: What is selection sort? A: A sorting algorithm that repeatedly selects the minimum
element and places it at the beginning.
73.Q: What is a circular linked list? A: A linked list where the last node points back to the
first node.
74.Q: What is a doubly linked list? A: A linked list where each node has pointers to both
next and previous nodes.
75.Q: What is a deque? A: A double-ended queue allowing insertion and deletion at both
ends.
78.Q: What is a greedy algorithm? A: An algorithm that makes locally optimal choices at
each step hoping to find a global optimum.
79.Q: What is backtracking? A: A technique that tries different solutions and abandons
those that fail to satisfy constraints.
80.Q: What is the traveling salesman problem? A: Finding the shortest possible route that
visits each city exactly once and returns to origin.
81.Q: What is Dijkstra's algorithm? A: An algorithm to find shortest path from source to all
vertices in weighted graph.
82.Q: What is a spanning tree? A: A subset of graph edges that connects all vertices
without forming cycles.
83.Q: What is a minimum spanning tree? A: A spanning tree with minimum total edge
weight.
85.Q: What is Prim's algorithm? A: An algorithm to find minimum spanning tree by growing
the tree from a starting vertex.
86.Q: What is a directed graph? A: A graph where edges have direction from one vertex to
another.
87.Q: What is an undirected graph? A: A graph where edges have no direction and connect
vertices bidirectionally.
88.Q: What is a weighted graph? A: A graph where edges have associated numerical
values (weights).
89.Q: What is a cycle in a graph? A: A path that starts and ends at the same vertex.
90.Q: What is topological sorting? A: Linear ordering of vertices in a directed acyclic graph
such that for every edge u→v, u comes before v.
91.Q: What is space complexity? A: The amount of memory an algorithm uses relative to
input size.
92.Q: What is the best sorting algorithm for large datasets? A: Merge sort or heap sort for
guaranteed O(n log n) performance.
93.Q: What is radix sort? A: A non-comparative sorting algorithm that sorts by processing
digits.
94.Q: What is counting sort? A: A sorting algorithm that counts occurrences of each value.
95.Q: What is bucket sort? A: A sorting algorithm that distributes elements into buckets and
sorts each bucket.
98.Q: What is the difference between linear and binary search? A: Linear search checks
each element sequentially O(n); binary search divides sorted array O(log n).
99.Q: What is in-place sorting? A: Sorting that requires only constant O(1) extra space.
100. Q: What is stable sorting? A: Sorting that maintains relative order of equal elements.
101. Q: What is a CPU? A: Central Processing Unit, the brain of the computer that
executes instructions.
102. Q: What is RAM? A: Random Access Memory, volatile memory used for temporary
data storage during operation.
104. Q: What is the difference between RAM and ROM? A: RAM is volatile, writable, fast;
ROM is non-volatile, read-only, contains firmware.
105. Q: What is a motherboard? A: The main circuit board connecting all computer
components.
106. Q: What is a hard disk drive (HDD)? A: A magnetic storage device with rotating
platters for permanent data storage.
107. Q: What is an SSD? A: Solid State Drive, a storage device using flash memory with
no moving parts.
108. Q: What is the difference between HDD and SSD? A: HDDs use magnetic platters
(slower, cheaper); SSDs use flash memory (faster, more expensive).
109. Q: What is a GPU? A: Graphics Processing Unit, specialized processor for rendering
graphics and parallel computations.
110. Q: What is cache memory? A: Small, fast memory located close to CPU storing
frequently accessed data.
111. Q: What are the levels of cache memory? A: L1 (fastest, smallest), L2 (medium), L3
(slowest, largest).
113. Q: What is clock speed? A: The number of cycles a CPU executes per second,
measured in GHz.
115. Q: What is the system bus? A: The main pathway connecting CPU, memory, and I/O
devices.
116. Q: What is the address bus? A: A bus that carries memory addresses from CPU to
other components.
117. Q: What is the data bus? A: A bus that carries actual data between components.
118. Q: What is the control bus? A: A bus that carries control signals for coordinating
operations.
119. Q: What is bus width? A: The number of bits that can be transmitted simultaneously.
120. Q: What is a register? A: Small, fast storage location within the CPU for immediate
data access.
121. Q: What is the ALU? A: Arithmetic Logic Unit, the part of CPU that performs
arithmetic and logical operations.
122. Q: What is the Control Unit? A: The part of CPU that directs operations by
interpreting instructions.
124. Q: What is a heat sink? A: A device that dissipates heat from components like CPU
or GPU.
125. Q: What is thermal paste? A: A compound applied between CPU and heat sink to
improve heat transfer.
127. Q: What is BIOS? A: Basic Input/Output System, firmware that initializes hardware
during boot.
128. Q: What is UEFI? A: Unified Extensible Firmware Interface, modern replacement for
BIOS with more features.
129. Q: What is a power supply unit (PSU)? A: A device that converts AC power to DC
power for computer components.
130. Q: What is wattage in PSU? A: The maximum power output the PSU can deliver,
measured in watts.
131. Q: What is a USB port? A: Universal Serial Bus port for connecting peripheral
devices.
132. Q: What is HDMI? A: High-Definition Multimedia Interface for transmitting video and
audio.
133. Q: What is DisplayPort? A: A digital display interface for connecting monitors with
high bandwidth.
136. Q: What is M.2? A: A form factor for SSDs connecting directly to motherboard with
high speeds.
137. Q: What is NVMe? A: Non-Volatile Memory Express, protocol for accessing SSDs
through PCIe for maximum speed.
138. Q: What is dual-channel memory? A: Using two RAM sticks in parallel to double
memory bandwidth.
139. Q: What is ECC memory? A: Error-Correcting Code memory that detects and
corrects data corruption.
140. Q: What is memory latency? A: The time delay between requesting data from
memory and receiving it.
141. Q: What is CAS latency? A: Column Address Strobe latency, the delay in clock
cycles before memory responds.
142. Q: What is VRAM? A: Video RAM, dedicated memory on graphics cards for storing
image data.
143. Q: What is integrated graphics? A: Graphics processing built into the CPU, sharing
system memory.
144. Q: What is dedicated graphics? A: Separate graphics card with its own GPU and
VRAM.
145. Q: What is a chipset? A: A set of chips on motherboard managing data flow between
CPU, memory, and peripherals.
146. Q: What is the Northbridge? A: Chip managing high-speed components like CPU,
RAM, and GPU (often integrated into CPU now).
147. Q: What is the Southbridge? A: Chip managing lower-speed peripherals like USB,
SATA, and audio.
150. Q: What is POST? A: Power-On Self-Test, diagnostic testing sequence run during
boot.
156. Q: What is the difference between process and thread? A: Processes have separate
memory spaces; threads share memory within a process.
159. Q: What is context switching? A: Saving and restoring process state when switching
between processes.
161. Q: What are the four conditions for deadlock? A: Mutual exclusion, hold and wait, no
preemption, circular wait.
162. Q: What is virtual memory? A: Memory management technique using disk space as
extension of RAM.
163. Q: What is paging? A: Dividing memory into fixed-size blocks (pages) for efficient
management.
164. Q: What is a page fault? A: An interrupt occurring when a program accesses a page
not in physical memory.
165. Q: What is segmentation? A: Dividing memory into variable-sized logical units based
on program structure.
167. Q: What is a file system? A: The method OS uses to organize and store files on
storage devices.
168. Q: What is FAT32? A: File Allocation Table 32-bit, an older file system with 4GB file
size limit.
169. Q: What is NTFS? A: New Technology File System, Windows file system with
security features and large file support.
170. Q: What is ext4? A: Fourth extended file system, commonly used in Linux.
171. Q: What is a directory? A: A file system structure containing files and other
directories.
172. Q: What is a path? A: The location of a file or directory in the file system hierarchy.
173. Q: What is absolute path? A: Complete path from root directory to the file.
174. Q: What is relative path? A: Path from current directory to the file.
176. Q: What is scheduling? A: Determining which process gets CPU time and for how
long.
178. Q: What is SJF scheduling? A: Shortest Job First, executes process with shortest
execution time first.
179. Q: What is Round Robin scheduling? A: Each process gets a fixed time slice in
circular order.
180. Q: What is priority scheduling? A: Processes are executed based on assigned
priorities.
182. Q: What is a mutex? A: Mutual exclusion lock allowing only one thread to access a
resource.
183. Q: What is a critical section? A: Code segment where shared resources are
accessed, requiring mutual exclusion.
184. Q: What is race condition? A: When multiple processes access shared data
concurrently causing unpredictable results.
188. Q: What is caching? A: Storing frequently accessed data in faster memory for quick
retrieval.
190. Q: What is a shell? A: Command-line interface for interacting with the operating
system.
191. Q: What is a GUI? A: Graphical User Interface, visual way to interact with OS using
windows and icons.
192. Q: What is booting? A: The process of starting up a computer and loading the
operating system.
193. Q: What is cold boot? A: Starting computer from completely powered-off state.
194. Q: What is warm boot? A: Restarting computer without turning off power.
195. Q: What is interrupt? A: A signal to CPU indicating an event requiring immediate
attention.
197. Q: What is DMA? A: Direct Memory Access, allowing devices to access memory
without CPU intervention.
202. Q: What is the Internet? A: Global network of networks using TCP/IP protocols.
205. Q: What is UDP? A: User Datagram Protocol, connectionless protocol for fast,
unreliable transmission.
207. Q: What is IPv4? A: Internet Protocol version 4, using 32-bit addresses (e.g.,
[Link]).
208. Q: What is IPv6? A: Internet Protocol version 6, using 128-bit addresses for
expanded address space.
209. Q: What is a MAC address? A: Media Access Control address, unique hardware
identifier for network interfaces.
210. Q: What is a router? A: Device that forwards data packets between networks.
211. Q: What is a switch? A: Device connecting devices within a network and directing
data to specific destinations.
212. Q: What is a hub? A: Basic device broadcasting data to all connected devices.
213. Q: What is a modem? A: Device converting digital signals to analog and vice versa
for internet connectivity.
215. Q: What is latency? A: Time delay in data transmission from source to destination.
217. Q: What is HTTP? A: HyperText Transfer Protocol, protocol for transferring web
pages.
219. Q: What is FTP? A: File Transfer Protocol, for transferring files between computers.
220. Q: What is SSH? A: Secure Shell, encrypted protocol for remote login and command
execution.
221. Q: What is a firewall? A: Security system monitoring and controlling network traffic
based on rules.
222. Q: What is a VPN? A: Virtual Private Network, creating encrypted connection over
public network.
224. Q: What is subnet mask? A: Number defining which part of IP address is network
and which is host.
225. Q: What is NAT? A: Network Address Translation, mapping private IPs to public IPs.
227. Q: What is a port number? A: Identifier for specific processes or services on a device
(0-65535).
228. Q: What is port 80 used for? A: HTTP web traffic.
229. Q: What is port 443 used for? A: HTTPS secure web traffic.
230. Q: What is the OSI model? A: Open Systems Interconnection, 7-layer model for
network communication.
231. Q: Name the 7 layers of OSI model. A: Physical, Data Link, Network, Transport,
Session, Presentation, Application.
232. Q: What is the TCP/IP model? A: 4-layer networking model: Network Access,
Internet, Transport, Application.
234. Q: What is packet switching? A: Breaking data into packets and sending them
independently through network.
235. Q: What is circuit switching? A: Establishing dedicated communication path for entire
transmission duration.
236. Q: What is LAN? A: Local Area Network, network covering small geographical area.
237. Q: What is WAN? A: Wide Area Network, network covering large geographical area.
238. Q: What is MAN? A: Metropolitan Area Network, network covering a city or large
campus.
243. Q: What is mesh topology? A: Every device connected to every other device.
249. Q: What is URL? A: Uniform Resource Locator, web address specifying resource
location.
250. Q: What is a proxy server? A: Intermediary server between client and destination
server.
252. Q: What is SQL? A: Structured Query Language, standard language for managing
relational databases.
253. Q: What is a table? A: Collection of related data organized in rows and columns.
256. Q: What is a primary key? A: Unique identifier for each record in a table.
257. Q: What is a foreign key? A: Field referencing primary key in another table,
establishing relationships.
259. Q: What is First Normal Form (1NF)? A: Each cell contains atomic values, no
repeating groups.
261. Q: What does SELECT statement do? A: Retrieves data from database tables.
262. Q: What does INSERT statement do? A: Adds new records to a table.
263. Q: What does UPDATE statement do? A: Modifies existing records in a table.
264. Q: What does DELETE statement do? A: Removes records from a table.
266. Q: What is JOIN? A: Combines rows from two or more tables based on related
columns.
267. Q: What is INNER JOIN? A: Returns records with matching values in both tables.
268. Q: What is LEFT JOIN? A: Returns all records from left table and matched records
from right table.
269. Q: What is RIGHT JOIN? A: Returns all records from right table and matched
records from left table.
274. Q: What is a stored procedure? A: Precompiled SQL code stored in database for
reuse.
275. Q: What is a trigger? A: Automatic action executed when specific database event
occurs.
277. Q: What is the difference between DELETE and TRUNCATE? A: DELETE removes
rows one by one and can be rolled back; TRUNCATE removes all rows quickly and
cannot be rolled back.
278. Q: What is GROUP BY? A: Groups rows with same values in specified columns.
280. Q: What is ORDER BY? A: Sorts query results in ascending or descending order.
281. Q: What is COUNT()? A: Returns number of rows matching criteria.
288. Q: What is referential integrity? A: Ensuring foreign key values match primary key
values in referenced table.
294. Q: What is data integrity? A: Accuracy and consistency of data throughout its
lifecycle.
296. Q: What is UNIQUE constraint? A: Ensures all values in column are different.
297. Q: What is NOT NULL constraint? A: Ensures column cannot have NULL values.
301. Q: What is HTML? A: HyperText Markup Language, standard for creating web
pages.
302. Q: What is CSS? A: Cascading Style Sheets, language for styling web pages.
304. Q: What is the DOM? A: Document Object Model, programming interface for HTML
documents.
305. Q: What is a cookie? A: Small text file stored on user's computer by websites.
306. Q: What is session? A: Temporary storage of user data during website visit.
307. Q: What is AJAX? A: Asynchronous JavaScript and XML, technique for updating
web pages without reloading.
309. Q: What is XML? A: eXtensible Markup Language, for storing and transporting data.
311. Q: What is REST API? A: Representational State Transfer, architectural style for
web services.
312. Q: What is encryption? A: Converting data into coded form to prevent unauthorized
access.
314. Q: What is symmetric encryption? A: Using same key for encryption and decryption.
315. Q: What is asymmetric encryption? A: Using public key for encryption and private
key for decryption.
316. Q: What is a hash function? A: Algorithm converting data into fixed-size string of
characters.
318. Q: What is a virus? A: Malicious code that replicates by attaching to other programs.
320. Q: What is ransomware? A: Malware that encrypts data and demands payment for
decryption.
322. Q: What is SQL injection? A: Attack inserting malicious SQL code to manipulate
database.
323. Q: What is cross-site scripting (XSS)? A: Injection attack inserting malicious scripts
into web pages.
324. Q: What is DDoS attack? A: Distributed Denial of Service, overwhelming system with
traffic to make it unavailable.
326. Q: What is a brute force attack? A: Trying all possible combinations to crack
password or key.
328. Q: What is white hat hacking? A: Ethical hacking to identify security weaknesses.
329. Q: What is black hat hacking? A: Malicious hacking for illegal purposes.
331. Q: What is a certificate authority? A: Entity issuing digital certificates for secure
communications.
332. Q: What is a digital signature? A: Cryptographic technique verifying authenticity of
digital message.
334. Q: What is zero-day vulnerability? A: Security flaw unknown to software vendor and
unpatched.
335. Q: What is Newton's First Law of Motion? A: An object remains at rest or in uniform
motion unless acted upon by external force.
336. Q: What is Newton's Second Law of Motion? A: Force equals mass times
acceleration (F = ma).
337. Q: What is Newton's Third Law of Motion? A: For every action, there is an equal and
opposite reaction.
338. Q: What is velocity? A: Rate of change of displacement with respect to time (vector
quantity).
339. Q: What is speed? A: Rate of change of distance with respect to time (scalar
quantity).
341. Q: What is uniform motion? A: Motion with constant velocity (zero acceleration).
345. Q: What is impulse? A: Change in momentum or product of force and time (J = FΔt).
346. Q: What is the law of conservation of momentum? A: Total momentum of isolated
system remains constant.
347. Q: What is friction? A: Force opposing relative motion between surfaces in contact.
348. Q: What is static friction? A: Friction preventing motion between stationary surfaces.
350. Q: What is coefficient of friction? A: Ratio of frictional force to normal force (μ = F/N).
354. Q: What is kinetic energy? A: Energy possessed by virtue of motion (KE = ½mv²).
360. Q: What is projectile motion? A: Motion of object thrown into air under gravity's
influence.
362. Q: What is the time of flight formula for projectile? A: T = (2u sin θ)/g
363. Q: What is the maximum height formula for projectile? A: H = (u² sin² θ)/(2g)
364. Q: What is the range formula for projectile? A: R = (u² sin 2θ)/g
365. Q: At what angle is projectile range maximum? A: 45 degrees
367. Q: What is centripetal force? A: Force directed toward center keeping object in
circular motion (F = mv²/r).
368. Q: What is centrifugal force? A: Apparent outward force in rotating reference frame
(pseudo force).
370. Q: What is the relation between linear and angular velocity? A: v = rω
373. Q: What is angular momentum? A: Product of moment of inertia and angular velocity
(L = Iω).
375. Q: What is rotational kinetic energy? A: Energy due to rotation (KE = ½Iω²).
376. Q: What is equilibrium? A: State where net force and net torque are zero.
377. Q: What is stable equilibrium? A: System returns to original position after small
displacement.
378. Q: What is unstable equilibrium? A: System moves away from original position after
small displacement.
380. Q: What is center of mass? A: Point where entire mass of system can be considered
concentrated.
381. Q: What is center of gravity? A: Point where entire weight of body acts.
382. Q: What is simple harmonic motion (SHM)? A: Periodic motion where restoring force
is proportional to displacement.
383. Q: What is the formula for time period of simple pendulum? A: T = 2π√(L/g)
387. Q: What is the relation between frequency and time period? A: f = 1/T
389. Q: What is inelastic collision? A: Collision where kinetic energy is not conserved.
392. Q: What is orbital velocity? A: Velocity required to orbit around a body (v = √(GM/r)).
393. Q: What is gravitational field strength? A: Force per unit mass in gravitational field (g
= GM/r²).
398. Q: What is free fall? A: Motion under gravity alone with no other forces.
399. Q: What is terminal velocity? A: Maximum constant velocity reached by falling object
when drag equals weight.
404. Q: What is elastic limit? A: Maximum stress material can withstand while remaining
elastic.
410. Q: What is coefficient of linear expansion? A: Fractional change in length per degree
temperature change.
412. Q: What is latent heat? A: Heat required to change state without temperature
change.
413. Q: What is latent heat of fusion? A: Heat required to convert solid to liquid at melting
point.
414. Q: What is latent heat of vaporization? A: Heat required to convert liquid to gas at
boiling point.
415. Q: What is conduction? A: Heat transfer through direct contact without material
movement.
422. Q: What is internal energy? A: Total energy contained in system due to molecular
motion and interactions.
431. Q: What is Avogadro's Law? A: Equal volumes of gases at same temperature and
pressure contain equal number of molecules.
432. Q: What is one mole? A: Amount of substance containing Avogadro's number (6.022
× 10²³) of particles.
433. Q: What is Carnot engine? A: Theoretical heat engine with maximum possible
efficiency.
434. Q: What is efficiency of heat engine? A: Ratio of work output to heat input (η = W/Q₁
= 1 - Q₂/Q₁).
436. Q: What is a refrigerator? A: Device that transfers heat from cold to hot reservoir
using work.
439. Q: What is thermal equilibrium? A: State where no net heat flows between objects at
same temperature.
445. Q: What is heat capacity? A: Heat required to raise temperature of entire object by
1°C.
447. Q: What is triple point? A: Unique temperature and pressure where all three phases
coexist.
452. Q: What is boiling? A: Bulk phenomenon where liquid converts to vapor at boiling
point.
454. Q: What is dew point? A: Temperature at which air becomes saturated and dew
forms.
455. Q: What is a wave? A: Disturbance that transfers energy through space or medium.
457. Q: What is an electromagnetic wave? A: Wave that can propagate through vacuum
(doesn't need medium).
459. Q: What is a longitudinal wave? A: Wave where particle motion is parallel to wave
direction.
460. Q: What is wavelength? A: Distance between two consecutive crests or troughs (λ).
463. Q: What is refraction? A: Bending of wave when it passes from one medium to
another.
467. Q: What is the law of reflection? A: Angle of incidence equals angle of reflection.
472. Q: What is the principle of superposition? A: When two waves overlap, resultant
displacement is sum of individual displacements.
474. Q: What is the Doppler effect? A: Change in frequency due to relative motion
between source and observer.
476. Q: What is the speed of sound in air? A: Approximately 343 m/s at 20°C.
480. Q: What is the decibel scale? A: Logarithmic scale for measuring sound intensity
level.
481. Q: What is ultrasound? A: Sound waves with frequency above 20,000 Hz.
487. Q: What is a standing wave? A: Wave pattern formed by interference of two waves
traveling in opposite directions.
492. Q: What is beats? A: Periodic variation in loudness when two close frequencies
interfere.
493. Q: What is beat frequency? A: Difference between two interfering frequencies (fb =
|f₁ - f₂|).
497. Q: What is a ray of light? A: Path along which light energy travels.
500. Q: What are characteristics of image in plane mirror? A: Virtual, erect, same size,
laterally inverted, at same distance behind mirror.
501. Q: What is a concave mirror? A: Mirror curved inward (converging mirror).
505. Q: What is magnification? A: Ratio of image size to object size (m = -v/u = h'/h).
506. Q: What is a real image? A: Image formed by actual convergence of light rays, can
be projected.
507. Q: What is a virtual image? A: Image formed by apparent divergence of rays, cannot
be projected.
508. Q: What is a lens? A: Transparent curved optical device that refracts light.
509. Q: What is a convex lens? A: Lens thicker at center, converges light rays.
510. Q: What is a concave lens? A: Lens thinner at center, diverges light rays.
517. Q: What are the colors in visible spectrum? A: Violet, Indigo, Blue, Green, Yellow,
Orange, Red (VIBGYOR).
518. Q: What is a prism? A: Transparent optical element with flat polished surfaces that
refract light.
519. Q: What is total internal reflection? A: Complete reflection of light at boundary when
angle exceeds critical angle.
520. Q: What is critical angle? A: Angle of incidence for which angle of refraction is 90°.
521. Q: What is optical fiber? A: Thin flexible fiber using total internal reflection to transmit
light.
524. Q: Why is sky blue? A: Rayleigh scattering of sunlight by atmosphere scatters blue
light more.
525. Q: Why is sunset red? A: Blue light scattered away, red light (least scattered)
reaches observer.
526. Q: What is the human eye? A: Natural optical instrument with adjustable lens
system.
527. Q: What is the function of cornea? A: Transparent front part that refracts light
entering eye.
528. Q: What is the function of iris? A: Controls amount of light entering eye by adjusting
pupil size.
529. Q: What is the function of lens in eye? A: Fine-tunes focus by changing curvature
(accommodation).
530. Q: What is the function of retina? A: Contains photoreceptors that convert light into
electrical signals.
531. Q: What is accommodation? A: Eye's ability to adjust focal length to focus on objects
at varying distances.
532. Q: What is near point? A: Closest distance for clear vision (25 cm for normal eye).
533. Q: What is far point? A: Farthest distance for clear vision (infinity for normal eye).
541. Q: What is a microscope? A: Optical instrument for viewing very small objects.
542. Q: What is a simple microscope? A: Single convex lens used as magnifying glass.
543. Q: What is a compound microscope? A: Two lens system (objective + eyepiece) for
higher magnification.
546. Q: What are the two types of charges? A: Positive and negative.
550. Q: What is an electric field? A: Region around charge where force is exerted on
other charges.
551. Q: What is electric field intensity? A: Force per unit charge (E = F/q).
552. Q: What is electric potential? A: Work done per unit charge to bring charge from
infinity (V = W/q).
554. Q: What is potential difference? A: Work done to move unit charge between two
points.
555. Q: What is electric current? A: Rate of flow of electric charge (I = Q/t).
563. Q: What is a conductor? A: Material allowing easy flow of current (low resistance).
566. Q: What is a series circuit? A: Components connected end-to-end with single path
for current.
568. Q: What is a parallel circuit? A: Components connected across same two points with
multiple current paths.
569. Q: What is total resistance in parallel? A: 1/Rp = 1/R₁ + 1/R₂ + 1/R₃ + ...
573. Q: What is a kilowatt-hour? A: Unit of electrical energy equal to 3.6 × 10⁶ joules.
574. Q: What is Kirchhoff's Current Law (KCL)? A: Sum of currents entering a junction
equals sum leaving.
575. Q: What is Kirchhoff's Voltage Law (KVL)? A: Sum of voltage drops in closed loop
equals sum of voltage sources.
581. Q: What is terminal voltage? A: Potential difference across battery terminals when
current flows.
589. Q: What is a magnetic field? A: Region around magnet where magnetic force is
exerted.
590. Q: What is a magnetic field line? A: Path along which north pole would move in
magnetic field.
591. Q: What is magnetic flux? A: Product of magnetic field and area (Φ = BA cos θ).
592. Q: What is the SI unit of magnetic flux? A: Weber (Wb)
593. Q: What is magnetic field strength? A: Measure of magnetic field intensity (B), unit is
Tesla (T).
595. Q: What is the right-hand thumb rule? A: Thumb shows current direction, fingers curl
in magnetic field direction.
597. Q: What is Fleming's Left-Hand Rule? A: First finger: field, second: current, thumb:
force (for motor).
600. Q: What is Lenz's Law? A: Induced current opposes the change causing it.
601. Q: What is Fleming's Right-Hand Rule? A: First finger: field, thumb: motion, second:
induced current (for generator).
602. Q: What is self-induction? A: EMF induced in coil due to change in its own current.
605. Q: What is mutual induction? A: EMF induced in one coil due to current change in
nearby coil.
612. Q: What is alternating current (AC)? A: Current that periodically reverses direction.
613. Q: What is direct current (DC)? A: Current flowing in one direction only.
615. Q: What is the photoelectric effect? A: Emission of electrons from metal surface
when light strikes it.
618. Q: What is work function? A: Minimum energy required to remove electron from
metal surface.
623. Q: What is wave-particle duality? A: Matter exhibits both wave and particle
properties.
628. Q: What is an energy level? A: Allowed energy state for electron in atom.
630. Q: What is excited state? A: Higher energy state when electron absorbs energy.
638. Q: What are the three types of radioactive emissions? A: Alpha (α), Beta (β), and
Gamma (γ) radiation.
646. Q: What is nuclear fission? A: Splitting heavy nucleus into lighter nuclei releasing
energy.
647. Q: What is nuclear fusion? A: Combining light nuclei into heavier nucleus releasing
energy.
648. Q: Which process powers the Sun? A: Nuclear fusion (hydrogen to helium).
649. Q: What is a chain reaction? A: Self-sustaining fission where neutrons from one
fission cause more fissions.
650. Q: What is critical mass? A: Minimum mass of fissile material for sustained chain
reaction.
651. Q: What is binding energy? A: Energy required to separate nucleus into constituent
nucleons.
652. Q: What is mass defect? A: Difference between mass of separated nucleons and
nucleus.
655. Q: What are the two types of semiconductors? A: Intrinsic and extrinsic.
659. Q: What is an n-type semiconductor? A: Doped with donor impurities providing extra
electrons (negative carriers).
660. Q: What is a p-n junction? A: Boundary between p-type and n-type semiconductors.
661. Q: What is a diode? A: Semiconductor device allowing current in one direction only.
662. Q: What is forward bias? A: Applying positive voltage to p-side, allowing current flow.
663. Q: What is reverse bias? A: Applying positive voltage to n-side, blocking current flow.
665. Q: What are the three regions of transistor? A: Emitter, base, and collector.
666. Q: What is a LED? A: Light Emitting Diode, emits light when forward biased.
667. Q: What is a solar cell? A: Converts light energy directly to electrical energy.
670. Q: What is the Compton effect? A: Increase in wavelength when photon scatters off
electron.
671. Q: What is electron volt (eV)? A: Energy gained by electron through 1 volt potential
difference (1.6 × 10⁻¹⁹ J).
672. Q: What is the Rydberg constant? A: Constant in formula for hydrogen spectrum
wavelengths (1.097 × 10⁷ m⁻¹).
676. Q: What is special relativity? A: Einstein's theory about space and time at high
velocities.
677. Q: What is time dilation? A: Time passes slower for moving objects relative to
stationary observer.
Mathematics (333 Questions)
Algebra (80 Questions)
681. Q: What is an equation? A: Mathematical statement with equal sign showing two
expressions are equal.
689. Q: What are parallel lines? A: Lines with equal slopes that never intersect.
690. Q: What are perpendicular lines? A: Lines whose slopes multiply to -1 (m₁ × m₂ = -1).
694. Q: If discriminant > 0, what are the roots? A: Two distinct real roots.
695. Q: If discriminant = 0, what are the roots? A: Two equal real roots.
696. Q: If discriminant < 0, what are the roots? A: No real roots (complex roots).
708. Q: What is the sum of n terms in AP? A: S = n/2[2a + (n-1)d] or S = n/2(a + l)
713. Q: What is the sum of infinite GP when |r| < 1? A: S∞ = a/(1 - r)
714. Q: What is an exponent? A: Number indicating how many times base is multiplied by
itself.
728. Q: What is a polynomial? A: Expression with variables and coefficients using only
addition, subtraction, multiplication, and non-negative integer exponents.
732. Q: What is the remainder theorem? A: When p(x) is divided by (x-a), remainder is
p(a).
733. Q: What is the factor theorem? A: (x-a) is factor of p(x) if p(a) = 0.
738. Q: What is the modulus of complex number? A: |z| = √(a² + b²) for z = a + bi
740. Q: What is a function? A: Relation where each input has exactly one output.
744. Q: What is an inverse function? A: Function that reverses another function (f⁻¹(f(x)) =
x).
748. Q: What is absolute value? A: Distance from zero (|x| = x if x ≥ 0, |x| = -x if x < 0)
749. Q: What is an inequality? A: Statement comparing expressions using <, >, ≤, or ≥.
750. Q: What happens when multiplying inequality by negative number? A: Inequality sign
reverses.
754. Q: What is a square matrix? A: Matrix with equal rows and columns.
755. Q: What is identity matrix? A: Square matrix with 1s on diagonal and 0s elsewhere.
756. Q: What is transpose of matrix? A: Matrix obtained by interchanging rows and
columns.
761. Q: What is a ray? A: Part of line starting at one point and extending infinitely in one
direction.
762. Q: What is an angle? A: Figure formed by two rays sharing common endpoint.
765. Q: What is an obtuse angle? A: Angle greater than 90° but less than 180°.
767. Q: What is a reflex angle? A: Angle greater than 180° but less than 360°.
768. Q: What are complementary angles? A: Two angles whose sum is 90°.
769. Q: What are supplementary angles? A: Two angles whose sum is 180°.
770. Q: What are vertically opposite angles? A: Equal angles formed when two lines
intersect.
771. Q: What is a triangle? A: Polygon with three sides and three angles.
773. Q: What is an equilateral triangle? A: Triangle with all sides equal (all angles 60°).
774. Q: What is an isosceles triangle? A: Triangle with two equal sides.
775. Q: What is a scalene triangle? A: Triangle with all sides of different lengths.
782. Q: What is a rectangle? A: Quadrilateral with all angles 90° and opposite sides
equal.
787. Q: What is a parallelogram? A: Quadrilateral with opposite sides parallel and equal.
802. Q: What is a tangent to circle? A: Line touching circle at exactly one point.
803. Q: What is the angle between tangent and radius at point of contact? A: 90°
805. Q: What is a regular polygon? A: Polygon with all sides and angles equal.
810. Q: What is similarity? A: Figures with same shape but different sizes.
811. Q: What is the basic proportionality theorem (Thales' theorem)? A: Line parallel to
one side of triangle divides other sides proportionally.
838. Q: What is tan θ in terms of sin and cos? A: tan θ = sin θ / cos θ
867. Q: What is the domain of tan x? A: All real numbers except π/2 + nπ
868. Q: What is a limit? A: Value that function approaches as input approaches some
value.
883. Q: What is the power rule for functions? A: d/dx[f(x)]ⁿ = n[f(x)]ⁿ⁻¹ × f'(x)
888. Q: What is the second derivative? A: Derivative of the derivative (f''(x) or d²y/dx²).
890. Q: What does f''(x) < 0 indicate? A: Function is concave down (maximum).
891. Q: What is a point of inflection? A: Point where concavity changes (f''(x) = 0).
894. Q: What is a definite integral? A: Integral with limits giving specific numerical value.
901. Q: What is the fundamental theorem of calculus? A: ∫[a to b] f(x)dx = F(b) - F(a)
where F'(x) = f(x)
905. Q: What is the area under curve y = f(x) from a to b? A: ∫[a to b] f(x)dx
906. Q: What is the mean value theorem? A: If f is continuous on [a,b], there exists c
where f'(c) = [f(b)-f(a)]/(b-a)
907. Q: What is Rolle's theorem? A: If f(a) = f(b) and f is differentiable, there exists c
where f'(c) = 0
908. Q: What is L'Hôpital's rule? A: For indeterminate forms, lim f(x)/g(x) = lim f'(x)/g'(x)
910. Q: What is the sum rule for derivatives? A: (f + g)' = f' + g'
911. Q: What is implicit differentiation? A: Differentiating both sides with respect to x when
y is implicit.
916. Q: What is the slope of tangent line at point? A: Value of derivative at that point.
917. Q: What is the equation of tangent line? A: y - y₁ = f'(x₁)(x - x₁)
918. Q: What is the normal line? A: Line perpendicular to tangent at point of contact.
919. Q: What is velocity in calculus? A: First derivative of position with respect to time (v =
dx/dt)
921. Q: What is the area between two curves? A: ∫[a to b] |f(x) - g(x)|dx
927. Q: What is convergence of series? A: When partial sums approach finite limit.
932. Q: What is mean (average)? A: Sum of values divided by number of values (x̄ =
Σx/n).
936. Q: What is variance? A: Average of squared deviations from mean (σ² = Σ(x-μ)²/n).
938. Q: What is a frequency distribution? A: Table showing how often each value occurs.
942. Q: What is a quartile? A: Values dividing data into four equal parts.
948. Q: What is the correlation coefficient (r)? A: Numerical measure of linear relationship
(-1 ≤ r ≤ 1).
953. Q: What is the probability formula? A: P(E) = Number of favorable outcomes / Total
number of outcomes
956. Q: What is the general addition rule? A: P(A or B) = P(A) + P(B) - P(A and B)
957. Q: What is the multiplication rule for independent events? A: P(A and B) = P(A) ×
P(B)
958. Q: What are independent events? A: Events where occurrence of one doesn't affect
the other.
959. Q: What are dependent events? A: Events where occurrence of one affects
probability of the other.
963. Q: What is expected value? A: Average value expected over many trials (E(X) = Σx
P(x)).
971. Q: What is the standard normal distribution? A: Normal distribution with mean 0 and
standard deviation 1.
972. Q: What is a z-score? A: Number of standard deviations from mean (z = (x-μ)/σ).
973. Q: What is the empirical rule (68-95-99.7)? A: In normal distribution, 68% within 1σ,
95% within 2σ, 99.7% within 3σ.
974. Q: What is sampling distribution? A: Distribution of sample statistics from all possible
samples.
975. Q: What is the central limit theorem? A: Distribution of sample means approaches
normal distribution as sample size increases.
976. Q: What is a prime number? A: Natural number greater than 1 with only 1 and itself
as divisors.
977. Q: What is a composite number? A: Natural number greater than 1 that is not prime.
981. Q: What is HCF (GCD)? A: Highest Common Factor, largest number dividing two or
more numbers.
982. Q: What is LCM? A: Least Common Multiple, smallest number divisible by two or
more numbers.
983. Q: What is the relationship between HCF and LCM? A: For two numbers: HCF ×
LCM = Product of numbers
984. Q: What is a rational number? A: Number expressible as p/q where p, q are integers
and q ≠ 0.
989. Q: What is a whole number? A: Natural numbers plus zero (0, 1, 2, 3, ...).
993. Q: What is the golden ratio? A: φ ≈ 1.618 (appears in nature and art).
996. Q: What is modular arithmetic? A: Arithmetic system for integers where numbers
wrap around after reaching modulus.
997. Q: What is the Fibonacci sequence? A: Sequence where each term is sum of two
preceding terms (0, 1, 1, 2, 3, 5, 8, ...).