Computer Obj
01-10: DCCBBBBBCA
11-20: CAACDCCCAB
21-30: BCCAACCDAA
31-40: BADDAADDCD
41-50: ABDBBCADAB
1(a)
(i) X: Monitor
(ii) Y: CPU
(iii) Z: Printer
1(b)
(i) X: Displays output
(ii) Y: Processes data
(iii) Z: Prints documents
1(c)
(i) Motherboard
(ii) Processor
(iii) Power Supply
(iv) Hard Drive
(2a)
Word processing refers to the creation, editing, formatting, and printing of text-based documents using a computer or other device. It involves using software applications, such as Microsoft Word, to produce and manipulate documents.
(2bi)
A watermark is a faint image or text that appears in the background of a document. It can be used to indicate the document’s status, such as “Draft” or “Confidential,” or to add a logo or other graphic element.
(2bii)
The Thesaurus is a feature in MS Word that provides synonyms, antonyms, and related words for a selected word. It helps users to find alternative words and phrases to improve the clarity and precision of their writing.
(2biii)
A drop cap is a large capital letter that appears at the beginning of a paragraph or section. It’s often used to add visual interest and style to a document, particularly in publications such as magazines, books, and newsletters.
(2biv)
Find and Replace is a feature in MS Word that allows users to search for specific text or formatting within a document and replace it with new text or formatting. It’s a useful tool for editing and revising documents quickly and efficiently.
•=•=•=•=•=•=•=•=•=•=•=•=•=•=•=•=•=•=•=•=•=•=•=•=•=•=•=•
(3a)
A computer keyboard is an input device that allows users to type text, commands, and other input into a computer. It typically consists of a layout of keys, including alphabetic keys, numeric keys, function keys, and special keys, that are used to interact with software applications and operating systems.
(3b)
(i)Alphabetic keys
(ii)Numeric keys
(iii)Function keys
(iv)Special keys
(3ci)
Shift + Delete is a shortcut key combination that permanently deletes selected text or items without moving them to the Recycle Bin.
(3cii)
Alt + F4 is a shortcut key combination that closes the currently active window or application.
(3di)
Ctrl + A is the shortcut key combination for selecting all text in a document.
(3dii)
Ctrl + F2 or Ctrl + P (then click on “Preview” or use the preview pane) can be used to preview a document before printing, although the exact shortcut may vary depending on the application.
(5)
DIM studentName(10) AS STRING
DIM scores(10, 5) AS INTEGER
DIM totalScore(10) AS INTEGER
DIM averageScore(10) AS SINGLE
FOR i = 1 TO 10
PRINT “Enter student “; i; “‘s name: ”
INPUT studentName(i)
totalScore(i) = 0
FOR j = 1 TO 5
PRINT “Enter score for subject “; j; “: ”
INPUT scores(i, j)
totalScore(i) = totalScore(i) + scores(i, j)
NEXT j
averageScore(i) = totalScore(i) / 5
NEXT i
CLS
FOR i = 1 TO 10
PRINT “Student Name: “; studentName(i)
PRINT “Total Score: “; totalScore(i)
PRINT “Average Score: “; averageScore(i)
PRINT
NEXT i
keep refreshing for answers soon