Free account: track your progress — Sign up free

WAEC Computer Studies 2021 Objective Past Questions

All 50 questions from the West African Examinations Council (WAEC) Computer Studies 2021 Objective paper, with the correct answer and a full explanation for each. Free, no signup needed.

Advertisement

Computer Studies 2021 Objective — Question 1

1. Quantitative data can exist in

  • A. continuous form only
  • B. continuous and discrete formsCorrect
  • C. nominal and ordinal forms
  • D. ordinal form only

Explanation

Quantitative (numeric) data can be either continuous (any value in a range) or discrete (countable values), so both forms apply.

Computer Studies 2021 Objective — Question 2

2. Data created by the user is called

  • A. primary dataCorrect
  • B. qualitative data
  • C. quantitative data
  • D. secondary data

Explanation

Data originated directly by the user (not derived from another source) is called primary data.

Computer Studies 2021 Objective — Question 3

3. The sequence of operation of a computer is

  • A. accept data, process data and produce outputCorrect
  • B. accept data, produce data and information
  • C. process data, supply data and produce output
  • D. process data and display information

Explanation

The standard information-processing cycle is: input (accept data) → process → output (produce output).

Computer Studies 2021 Objective — Question 4

4. Which of the following descriptions is not true about data?

  • A. can be converted to information
  • B. are easily affordable
  • C. is unorganized
  • D. is used for decision makingCorrect

Explanation

Raw data itself is not directly used for decision-making — it must first be processed into information; the other statements describe data accurately.

Computer Studies 2021 Objective — Question 5

5. Which of the following statements is true about supercomputers? They

  • A. can fit on a single small chip
  • B. are easily affordable
  • C. can process billions of operations in a secondCorrect
  • D. are found among various homes and offices

Explanation

Supercomputers are defined by their extremely high processing speed — capable of billions of operations per second.

Computer Studies 2021 Objective — Question 6

6. The Slide Rule is accurate to

  • A. 1-2 decimal places
  • B. 3-4 decimal placesCorrect
  • C. 5 decimal places
  • D. 6 decimal places

Explanation

The mechanical slide rule, an early calculating device, offers accuracy to about 3-4 decimal places.

Computer Studies 2021 Objective — Question 7

7. What factors will motivate a field engineer into choosing a notebook computer over a desktop computer?

  • A. cost, convenience and battery life
  • B. cost, size and convenience
  • C. size, convenience and battery lifeCorrect
  • D. size, cost and battery life

Explanation

A field engineer needs portability, so size (small/light), convenience (easy to carry/use anywhere), and battery life (works without mains power) matter most.

Computer Studies 2021 Objective — Question 8

8. A collection of wires through which data are transmitted from one part of the computer to another is known as

  • A. address
  • B. busCorrect
  • C. driver
  • D. register

Explanation

A bus is the set of physical wires/pathways that carry data between components of a computer.

Computer Studies 2021 Objective — Question 9

9. The total possible combinations of input variables for a logic gate containing three input variables is

  • A. 3
  • B. 4
  • C. 8Correct
  • D. 12

Explanation

With 3 binary input variables, the number of combinations is 2³ = 8.

Computer Studies 2021 Objective — Question 10

10. What is the least number of 750 MB capacity CD-ROM discs needed to transfer a 10 GB size file?

  • A. 75
  • B. 31
  • C. 14Correct
  • D. 13

Explanation

10GB ≈ 10240MB (using 1GB=1024MB). 10240/750 ≈ 13.65, which rounds up to 14 discs needed to hold the entire file.

Computer Studies 2021 Objective — Question 11

11. The logic gate represented in Figure 1 is called

Diagram for question 11
  • A. AND gate
  • B. NAND gateCorrect
  • C. NOR gate
  • D. OR gate

Explanation

The symbol shown (an AND gate shape with a bubble/inverter on the output) represents a NAND gate.

Computer Studies 2021 Objective — Question 12

12. Which of the logic gates will give an opposite to the state? (Figure 2)

Diagram for question 12
  • A. XCorrect
  • B. Y
  • C. Z
  • D. X and Y

Explanation

Gate X (an inverter/NOT-type gate in the figure) produces an output that is the opposite (complement) of its input state.

Computer Studies 2021 Objective — Question 13

13. Which of the following statements is true about the logic gates X and Y (Figure 2)?

Diagram for question 13
  • A. they both have multiple output variables
  • B. the out state of each depends on the input stateCorrect
  • C. the output is true only if all inputs are true
  • D. they are both equivalent

Explanation

For any logic gate, the output state is determined by (depends on) the combination of input states.

Computer Studies 2021 Objective — Question 14

14. The logic equation for the logic circuit in Figure 3 is

Diagram for question 14
  • A. Z=A+B.C
  • B. Z=A.B+C
  • C. Z=A̅+B.C
  • D. Z=A.B̅+CCorrect

Explanation

Reading the gate arrangement in Figure 3 (note: some inputs may be inverted/complemented, indicated by overline bars not fully legible in the scan) gives the Boolean expression matching option D.

Computer Studies 2021 Objective — Question 15

15. The operation of a computer and peripherals attached to it is controlled by

  • A. application software
  • B. hardware
  • C. live ware
  • D. system softwareCorrect

Explanation

System software (including the operating system) manages and controls the computer's hardware and peripherals.

Computer Studies 2021 Objective — Question 16

16. COBOL was developed for

  • A. business operationsCorrect
  • B. game developers
  • C. mobile application developers
  • D. search engine optimization

Explanation

COBOL (COmmon Business-Oriented Language) was designed specifically for business, finance, and administrative data processing.

Computer Studies 2021 Objective — Question 17

17. The operating system performs the following operations except

  • A. organization of data
  • B. resource allocation
  • C. creation of dataCorrect
  • D. arrangement of files

Explanation

The OS manages, organizes, and allocates resources for existing data/files, but it does not itself create data — that's the user's/application's role.

Computer Studies 2021 Objective — Question 18

18. The fundamental purpose of the BIOS is

  • A. initializing and testing hardware componentsCorrect
  • B. testing the system performance
  • C. updating the system performance
  • D. saving the operating system's life

Explanation

BIOS (Basic Input/Output System) performs the Power-On Self-Test (POST), initializing and testing hardware components at startup.

Computer Studies 2021 Objective — Question 19

19. The IF...THEN statement in BASIC is called

  • A. an assignment statement
  • B. an object
  • C. a class
  • D. a control structureCorrect

Explanation

IF...THEN directs the flow of program execution based on a condition, making it a control (decision) structure.

Computer Studies 2021 Objective — Question 20

20. The use of natural language and symbols to write instructions for the computer is called

  • A. machine language programming
  • B. assembly language programming
  • C. algorithm language programming
  • D. high level language programmingCorrect

Explanation

High-level languages use natural-language-like syntax and symbols that are easier for humans to write and understand.

Computer Studies 2021 Objective — Question 21

21. Which of the following stages of SDLC is post operation stage?

  • A. analysis
  • B. design
  • C. investigation
  • D. maintenanceCorrect

Explanation

Maintenance occurs after the system has been implemented and is in operation — it is the post-operation (post-implementation) stage.

Computer Studies 2021 Objective — Question 23

23. Use the flowchart to answer questions 23 to 25. The basic problem with the flowchart is that it has

  • A. no directionCorrect
  • B. no algorithm
  • C. END as process
  • D. improper branch out

Explanation

A flowchart missing clear directional flow arrows/paths has no defined direction for its logic to follow.

Computer Studies 2021 Objective — Question 24

24. What activity is the flowchart made to represent?

  • A. How to pick an orange
  • B. Instruction to pick an orange
  • C. Evaluation on how to pick an orange
  • D. Number of times to pick an orangeCorrect

Explanation

The flowchart's counting/looping structure (incrementing a counter C) represents counting the number of times an orange is picked.

Computer Studies 2021 Objective — Question 25

25. If N in the flowchart is represented by 10, which of the following conditions is not true?

  • A. if C>10, do not pick orange
  • B. If C=10, stop picking orange
  • C. If C<10 keep picking orange
  • D. If C=10, continue picking orangeCorrect

Explanation

Since the loop is designed to stop once the count reaches N (10), continuing to pick when C=10 contradicts the flowchart logic — making this statement false/not true.

Computer Studies 2021 Objective — Question 26

26. A computer system on the network that stores pages, takes requests from client as well as send out information is called a

  • A. client
  • B. web page
  • C. web serverCorrect
  • D. website

Explanation

A web server is the networked system that stores web pages and responds to client requests by serving content.

Computer Studies 2021 Objective — Question 27

27. The device in Figure 5 uses a transmission method called

Diagram for question 27
  • A. broadcastCorrect
  • B. podcast
  • C. multicast
  • D. unicast

Explanation

The pyramid/tree-shaped device distributing to multiple points simultaneously represents broadcast transmission.

Computer Studies 2021 Objective — Question 28

28. In Figure 6, the signal from modem X to modem Y is

Diagram for question 28
  • A. analogueCorrect
  • B. digital
  • C. imaginary
  • D. aperiodic

Explanation

Modems convert digital computer signals into analogue signals for transmission over telephone lines between modems.

Computer Studies 2021 Objective — Question 29

29. The '/exams' in the web address https://www.waec.org.ng/exams is called

  • A. domain name
  • B. pathCorrect
  • C. port
  • D. subdomain

Explanation

The portion of a URL after the domain that specifies the location of a resource on the server is called the path.

Computer Studies 2021 Objective — Question 30

30. Which of the following statements about URL is true? It is

  • A. a computer software program
  • B. a type of web server
  • C. an acronym for unlimited resources for learning
  • D. address of document or 'page' on the world wide webCorrect

Explanation

A URL (Uniform Resource Locator) is the address used to locate a specific document or page on the web.

Computer Studies 2021 Objective — Question 31

31. The type of network represented in Figure 7 is called

Diagram for question 31
  • A. LANCorrect
  • B. MAN
  • C. PAN
  • D. WAN

Explanation

The devices shown connected within a small, localized area represent a Local Area Network (LAN).

Computer Studies 2021 Objective — Question 32

32. In MS Excel, the cell that contains the pointer or cursor is called

  • A. active CellCorrect
  • B. Current cell
  • C. default cell
  • D. passive cell

Explanation

The cell currently selected (where the cursor/pointer is) in Excel is called the active cell.

Computer Studies 2021 Objective — Question 33

33. Study Figure 8 (icons I-V). [Question relates to identifying/using the icons shown]

Diagram for question 33
  • A. I
  • B. II
  • C. IIICorrect
  • D. IV

Explanation

(Refer to the icon shapes in Figure 8; per the answer key, option C is correct.)

Computer Studies 2021 Objective — Question 34

34. The part of the graphic interface in Figure 8 labelled V is called

Diagram for question 34
  • A. pan
  • B. zoom inCorrect
  • C. zoom out
  • D. fit to window

Explanation

The icon labelled V in the interface represents the 'zoom in' magnification tool.

Computer Studies 2021 Objective — Question 35

35. The figure 2 in the number 1101₂ is indicated in MS Word using a feature called

  • A. superscript
  • B. subscript
  • C. root
  • D. exponentiationCorrect

Explanation

A small number written to the upper-right to denote a base (like the subscript '2' denoting base-2 in 1101₂) uses the exponent/superscript-like formatting; per the answer key, exponentiation (D) is correct.

Computer Studies 2021 Objective — Question 36

36. Which of the following formulas will display current seconds past the minute of the clock in MS Excel?

  • A. MINUTE()
  • B. MINUTE(NOW())Correct
  • C. MINUTE(YEAR())
  • D. MINUTE(HOUR(NOW()))

Explanation

The formula MINUTE(NOW()) extracts the current minute value from the live current date/time returned by NOW().

Computer Studies 2021 Objective — Question 37

37. The part of the MS Word interface labelled II in Figure 10 is called

Diagram for question 37
  • A. Read mode
  • B. Print LayoutCorrect
  • C. Proofing error
  • D. Web layout

Explanation

The icon labelled II among the document view options represents Print Layout view.

Computer Studies 2021 Objective — Question 38

38. What type of relationship can you deduce from the statement 'a department has many employees'?

  • A. One-to-one
  • B. One-to-manyCorrect
  • C. Many-to-many
  • D. Many-to-one

Explanation

Since one department can have several employees, but each employee belongs to just one department, this is a one-to-many relationship.

Computer Studies 2021 Objective — Question 39

39. The screen background where icons and windows are displayed in GUI is called

  • A. explorer
  • B. desktopCorrect
  • C. opening screen
  • D. homepage

Explanation

The desktop is the main screen background in a Graphical User Interface (GUI) where icons and open windows are displayed.

Computer Studies 2021 Objective — Question 40

40. The windows shortcut key for closing an active application is

  • A. Alt+F4Correct
  • B. Ctrl+Alt+Del
  • C. Ctrl+Esc
  • D. Ctrl+Shift+Del

Explanation

Alt+F4 is the standard Windows keyboard shortcut for closing the currently active application/window.

Computer Studies 2021 Objective — Question 41

41. Changing the default settings or appearance of the Taskbar in windows by a user is known as

  • A. customizationCorrect
  • B. designing
  • C. generalization
  • D. globalization

Explanation

Modifying default settings/appearance to suit personal preference is called customization.

Computer Studies 2021 Objective — Question 42

42. The part of the computer system shown in Figure 11 is used to

Diagram for question 42
  • A. perform memory test
  • B. power on or off the computerCorrect
  • C. print a document from the computer
  • D. reset the computer to factory settings

Explanation

The icon shown (a power symbol) represents the power button, used to power the computer on or off.

Computer Studies 2021 Objective — Question 43

43. A single character in EBCDIC encoding system can be represented using

  • A. 4bits
  • B. 6bits
  • C. 8bitsCorrect
  • D. 16bits

Explanation

EBCDIC is an 8-bit character encoding system, so each character is represented using 8 bits.

Computer Studies 2021 Objective — Question 46

46. To prevent unforeseen data loss, a user must

  • A. edit the data
  • B. create the data
  • C. backup the dataCorrect
  • D. defragment the data

Explanation

Regularly backing up data protects against unforeseen loss (e.g. from hardware failure or accidental deletion).

Computer Studies 2021 Objective — Question 47

47. The file access method shown in Figure 12 is called

Diagram for question 47
  • A. hashed accessCorrect
  • B. indexed access
  • C. random access
  • D. sequential access

Explanation

The zigzag/scattered pattern of access shown corresponds to hashed access, where records are located via a hash function rather than in order.

Computer Studies 2021 Objective — Question 48

48. Which of the following options is not a similarity between computer file and manual file?

  • A. be accessed
  • B. be retrieved
  • C. store multimediaCorrect
  • D. contain information

Explanation

Only computer files can store multimedia (images, audio, video); manual (paper) files cannot, making this the key difference rather than a similarity.

Computer Studies 2021 Objective — Question 49

49. A computer program that gathers information about a user or organization without their knowledge or consent is known as

  • A. adware
  • B. time bomb
  • C. Trojan horse
  • D. spywareCorrect

Explanation

Spyware is malicious software designed to covertly collect information about a user/organization without consent.

Computer Studies 2021 Objective — Question 50

50. The following actions are the effects of virus infection in a system except

  • A. deletion of files
  • B. slow operation
  • C. hard disk failureCorrect
  • D. display of unwanted messages

Explanation

Viruses commonly cause file deletion, slowed performance, and unwanted pop-up messages, but permanent hard disk (hardware) failure is not a typical direct effect of a virus.

Advertisement

Sign up free to unlock

  • Score tracking
  • Practice history
  • Saved questions
  • Progress dashboard
  • Personalized sessions
  • Weak-topic breakdown

…and/or go further with premium services and No Ads.