JAMB Past Questions

JAMB Computer Studies 2022
Questions & Answers

40 questions · Correct answers highlighted · 40 with explanations

40 Total Questions
2022 Exam Year
40 With Explanations
Ready to test yourself? Take the full JAMB Computer Studies 2022 CBT quiz — timed, just like the real exam.
Start Quiz
1
Question 1 of 40
JAMB · Computer Studies · 2022

Which of the following is a characteristic of cloud computing?

A. Local data storage
B. Scalable resources
C. Manual hardware upgrades
D. Fixed processing power
Explanation

Cloud computing offers scalable resources, allowing on-demand access to computing power and storage over the internet, unlike local storage or fixed systems.

2
Question 2 of 40
JAMB · Computer Studies · 2022

What is the binary equivalent of the octal number 7?

A. 110
B. 111
C. 101
D. 100
Explanation

Octal 7 equals decimal 7. Binary for 7: 7 ÷ 2 = 3 remainder 1, 3 ÷ 2 = 1 remainder 1, 1 ÷ 2 = 0 remainder 1, so 111.

3
Question 3 of 40
JAMB · Computer Studies · 2022

What is a primary function of a database management system?

A. Code compilation
B. Data manipulation
C. Network routing
D. Image editing
Explanation

A DBMS enables data manipulation, including storage, retrieval, and updates, using tools like SQL, unlike the other options.

4
Question 4 of 40
JAMB · Computer Studies · 2022

What is the purpose of a conditional statement in programming?

A. To repeat code
B. To make decisions
C. To store data
D. To call functions
Explanation

Conditional statements (e.g., if-else) allow programs to execute code based on whether conditions are true, enabling decision-making.

5
Question 5 of 40
JAMB · Computer Studies · 2022

Which of the following is a peripheral device?

A. CPU
B. RAM
C. Printer
D. Motherboard
Explanation

A printer is a peripheral device for input or output, unlike core components like CPU, RAM, or motherboard.

6
Question 6 of 40
JAMB · Computer Studies · 2022

What does URL stand for in web browsing?

A. Uniform Resource Locator
B. Universal Resource Link
C. Uniform Retrieval Link
D. Universal Retrieval Locator
Explanation

A URL (Uniform Resource Locator) specifies the address of a web resource, including its protocol (e.g., http://).

7
Question 7 of 40
JAMB · Computer Studies · 2022

Which feature characterizes first-generation computers?

A. Microprocessors
B. Vacuum tubes
C. Integrated circuits
D. Transistors
Explanation

First-generation computers (1940–1956) used vacuum tubes for processing, which were bulky and unreliable.

8
Question 8 of 40
JAMB · Computer Studies · 2022

In programming, what is a variable?

A. A fixed value
B. A storage location for data
C. A loop structure
D. A conditional statement
Explanation

A variable is a named memory location that stores data, which can be modified during program execution.

9
Question 9 of 40
JAMB · Computer Studies · 2022

Which of the following is a network topology?

A. Star
B. Cloud
C. Server
D. Protocol
Explanation

Star topology connects all devices to a central hub, unlike cloud, server, or protocol, which are not topologies.

10
Question 10 of 40
JAMB · Computer Studies · 2022

What is the hexadecimal equivalent of the binary number 1010?

A. A
B. B
C. C
D. D
Explanation

Binary 1010 = decimal 10 (8 + 2). Hexadecimal for 10 is A.

11
Question 11 of 40
JAMB · Computer Studies · 2022

Which is an example of a mobile operating system?

A. Windows 10
B. Android
C. Microsoft Excel
D. Linux
Explanation

Android is a mobile operating system for smartphones, unlike Windows 10, Linux (desktop/server), or Excel (software).

12
Question 12 of 40
JAMB · Computer Studies · 2022

What is the purpose of a debugger in programming?

A. To compile code
B. To find and fix errors
C. To execute programs
D. To style webpages
Explanation

A debugger helps programmers identify and fix errors by stepping through code and inspecting variables.

13
Question 13 of 40
JAMB · Computer Studies · 2022

Which of the following is a computer port?

A. USB
B. RAM
C. CPU
D. BIOS
Explanation

USB is a port for connecting peripherals, unlike RAM, CPU, or BIOS, which are internal components.

14
Question 14 of 40
JAMB · Computer Studies · 2022

What is the function of a router in a network?

A. To connect devices within a LAN
B. To direct data between networks
C. To store data
D. To convert signals
Explanation

A router directs data packets between networks, like a local network and the internet, using IP addresses.

15
Question 15 of 40
JAMB · Computer Studies · 2022

Which characteristic defines ROM?

A. Volatile
B. Read-only
C. Temporary storage
D. High-speed access
Explanation

ROM (Read-Only Memory) is non-volatile and primarily read-only, storing permanent instructions, unlike volatile RAM.

16
Question 16 of 40
JAMB · Computer Studies · 2022

What does TCP stand for in networking?

A. Transmission Control Protocol
B. Transfer Control Protocol
C. Terminal Control Protocol
D. Transport Communication Protocol
Explanation

TCP ensures reliable data transmission by establishing connections and checking for errors.

17
Question 17 of 40
JAMB · Computer Studies · 2022

Which is a data processing method?

A. Batch processing
B. Network routing
C. Code debugging
D. Web styling
Explanation

Batch processing collects, processes, and outputs data in groups, unlike routing, debugging, or styling.

18
Question 18 of 40
JAMB · Computer Studies · 2022

What is the result of the binary addition 1011 + 10?

A. 1100
B. 1101
C. 1110
D. 1111
Explanation

1011 (11) + 10 (2) = 13. Binary for 13: 13 ÷ 2 = 6 remainder 1, 6 ÷ 2 = 3 remainder 0, 3 ÷ 2 = 1 remainder 1, 1 ÷ 2 = 0 remainder 1, so 1101.

19
Question 19 of 40
JAMB · Computer Studies · 2022

Which is a programming paradigm?

A. Object-oriented
B. HTML
C. SQL
D. CSS
Explanation

Object-oriented programming is a paradigm using objects and classes, unlike HTML, SQL, or CSS, which are languages for other purposes.

20
Question 20 of 40
JAMB · Computer Studies · 2022

What is the purpose of an antivirus program?

A. To increase internet speed
B. To protect against malware
C. To compile code
D. To design webpages
Explanation

An antivirus program detects and removes malware, protecting the system from threats like viruses.

21
Question 21 of 40
JAMB · Computer Studies · 2022

Which is a type of software license?

A. Open-source
B. Router
C. Firewall
D. Protocol
Explanation

Open-source licenses allow access, modification, and distribution of source code, unlike routers, firewalls, or protocols.

22
Question 22 of 40
JAMB · Computer Studies · 2022

What is the decimal equivalent of the hexadecimal number 1A?

A. 25
B. 26
C. 27
D. 28
Explanation

Hex 1A = (1×16¹) + (10×16⁰) = 16 + 10 = 26.

23
Question 23 of 40
JAMB · Computer Studies · 2022

What characterizes a mainframe computer?

A. Low processing power
B. High reliability
C. Single-user system
D. Portable design
Explanation

Mainframes are highly reliable, processing large data volumes for enterprises, unlike single-user or portable systems.

24
Question 24 of 40
JAMB · Computer Studies · 2022

What is the purpose of a function in programming?

A. To store data
B. To repeat code
C. To perform a specific task
D. To debug errors
Explanation

A function is a reusable code block for a specific task, enhancing modularity.

25
Question 25 of 40
JAMB · Computer Studies · 2022

Which is a wireless networking standard?

A. Ethernet
B. Wi-Fi
C. USB
D. HDMI
Explanation

Wi-Fi (IEEE 802.11) enables wireless device connections, unlike Ethernet (wired), USB, or HDMI.

26
Question 26 of 40
JAMB · Computer Studies · 2022

What is the role of a primary key in a database?

A. To sort records
B. To uniquely identify records
C. To encrypt data
D. To filter data
Explanation

A primary key uniquely identifies each record, ensuring no duplicates and aiding retrieval.

27
Question 27 of 40
JAMB · Computer Studies · 2022

Which is a type of computer crime?

A. Debugging
B. Hacking
C. Compiling
D. Networking
Explanation

Hacking involves unauthorized system access, often maliciously, unlike debugging, compiling, or networking.

28
Question 28 of 40
JAMB · Computer Studies · 2022

What is the octal equivalent of the binary number 1100?

A. 14
B. 13
C. 12
D. 15
Explanation

Binary 1100 = decimal 12 (8 + 4). Octal for 12: 12 ÷ 8 = 1 remainder 4, so 14. [Note: Original answer was incorrect; corrected to C.]

29
Question 29 of 40
JAMB · Computer Studies · 2022

Which is a relational database management system?

A. Oracle
B. Photoshop
C. Excel
D. Word
Explanation

Oracle is a relational DBMS for managing databases, unlike Photoshop, Excel, or Word.

30
Question 30 of 40
JAMB · Computer Studies · 2022

What is the purpose of a MAC address?

A. To identify a network device
B. To encrypt data
C. To store files
D. To route traffic
Explanation

A MAC address uniquely identifies a device’s hardware for network communication.

31
Question 31 of 40
JAMB · Computer Studies · 2022

What is a feature of a word processor?

A. Data calculation
B. Text formatting
C. Image editing
D. Code compilation
Explanation

Word processors enable text formatting, including fonts and styles, unlike calculation or image editing.

32
Question 32 of 40
JAMB · Computer Studies · 2022

What is the binary equivalent of the decimal number 9?

A. 1000
B. 1001
C. 1010
D. 1011
Explanation

Decimal 9 to binary: 9 ÷ 2 = 4 remainder 1, 4 ÷ 2 = 2 remainder 0, 2 ÷ 2 = 1 remainder 0, 1 ÷ 2 = 0 remainder 1, so 1001.

33
Question 33 of 40
JAMB · Computer Studies · 2022

Which is a type of backup?

A. Full backup
B. Network backup
C. Cloud routing
D. Data compilation
Explanation

A full backup copies all data, providing a complete restore point, unlike the other options.

34
Question 34 of 40
JAMB · Computer Studies · 2022

What is the purpose of a compiler?

A. To execute code line by line
B. To translate code to machine language
C. To debug errors
D. To design webpages
Explanation

A compiler translates high-level code into machine language for execution, unlike interpreters or debuggers.

35
Question 35 of 40
JAMB · Computer Studies · 2022

Which is a type of computer network?

A. PAN
B. SQL
C. HTML
D. CSS
Explanation

PAN (Personal Area Network) connects personal devices, like via Bluetooth, unlike SQL, HTML, or CSS.

36
Question 36 of 40
JAMB · Computer Studies · 2022

What is the hexadecimal equivalent of the decimal number 20?

A. 12
B. 14
C. 16
D. 18
Explanation

Decimal 20 to hex: 20 ÷ 16 = 1 remainder 4, so 14.

37
Question 37 of 40
JAMB · Computer Studies · 2022

What is a feature of a microcomputer?

A. High processing power
B. Single-user system
C. Large physical size
D. Low memory capacity
Explanation

Microcomputers, like PCs, are designed for single users, unlike mainframes or supercomputers.

38
Question 38 of 40
JAMB · Computer Studies · 2022

What is the purpose of a hyperlink on a webpage?

A. To style text
B. To link to other resources
C. To compile code
D. To store data
Explanation

Hyperlinks connect webpages to other resources, enabling navigation via clickable elements.

39
Question 39 of 40
JAMB · Computer Studies · 2022

Which is a type of memory?

A. Cache
B. Router
C. Firewall
D. Protocol
Explanation

Cache is high-speed memory for frequently accessed data, unlike routers, firewalls, or protocols.

40
Question 40 of 40
JAMB · Computer Studies · 2022

What is the purpose of a spreadsheet formula?

A. To format text
B. To perform calculations
C. To debug code
D. To connect networks
Explanation

Spreadsheet formulas, like =SUM(A1:A10), perform calculations, such as summing or averaging data.

Now practice in exam mode

You've studied the answers — now test yourself under real exam conditions with the timer running.

Start JAMB Computer Studies 2022 Quiz
Back to 2022 Start Page