Quick Revision

GK One-Line Question & Answer

15541+ short questions with short answers, covering every category and sub-category on the site — no long articles to scroll through. Good for a fast recap before an exam, or a few minutes of daily practice.

Computer Fundamentals → Introduction to Computer 39

Which of the following is NOT an OOP concept?
Normalization
click to copy
Encapsulation in OOP means?
Hiding implementation details inside objects
click to copy
Inheritance in OOP allows?
One class to derive properties from another
click to copy
Polymorphism means?
Many forms — same interface, different implementations
click to copy
Which is an object-oriented programming language?
Java
click to copy
A database index improves?
Data retrieval speed
click to copy
Primary key in a database must be?
Unique and not null
click to copy
Foreign key creates a relationship between?
Two different tables
click to copy
Normalization in databases aims to?
Reduce data redundancy and improve integrity
click to copy
Which SQL command retrieves data?
SELECT
click to copy
Which SQL command adds new records?
INSERT INTO
click to copy
Which SQL command modifies existing records?
UPDATE
click to copy
Which SQL command removes records?
All of these remove records
click to copy
What does JOIN do in SQL?
Combines rows from two or more tables
click to copy
An API stands for?
Application Programming Interface
click to copy
REST API uses which protocol?
HTTP/HTTPS
click to copy
JSON stands for?
JavaScript Object Notation
click to copy
XML stands for?
Extensible Markup Language
click to copy
Which of the following is NOT a programming paradigm?
Encryption
click to copy
The full form of CPU is?
Central Processing Unit
click to copy
Which key combination is used to select all in Windows?
Ctrl+A
click to copy
Which component converts DC power to AC for use in a computer?
UPS
click to copy
A modem's speed is measured in?
bps
click to copy
The resolution of a standard Full HD display is?
1920×1080
click to copy
4K resolution refers to approximately?
Both B and C
click to copy
Refresh rate of 60 Hz means?
Screen refreshes 60 times per second
click to copy
Which of the following stores the currently executing program?
RAM
click to copy
The extension of a Python source file is?
.py
click to copy
Which programming concept prevents code duplication?
Inheritance and functions
click to copy
A null pointer points to?
Address 0 or no valid address
click to copy
Which of these is a compiled language?
C/C++
click to copy
Which is an interpreted language?
Python
click to copy
The OSI model has how many layers?
7
click to copy
Which OSI layer handles routing?
Layer 3
click to copy
TCP/IP model has how many layers?
4
click to copy
Which device works at Data Link Layer (Layer 2)?
Switch
click to copy
MAC address has how many bytes?
6
click to copy
ARP stands for?
Address Resolution Protocol
click to copy
ICMP is used for?
Network diagnostics (ping)
click to copy

Computer Fundamentals → Memory Units 1

Which JOIN returns all records from both tables?
FULL OUTER JOIN
click to copy