1.
A CRT monitor stands for "Cathode Ray Tube."
Correct Answer
A. True
Explanation
CRT stands for Cathode Ray Tube. It’s a technology used in traditional computer monitors and televisions. The image on a CRT display is created by firing electrons from the back of the tube to the front where they strike a phosphorescent surface. This technology has been largely replaced by LCD and LED technologies, which are more energy-efficient and offer sharper images.
2.
A CRT monitor is sharper than a LCD monitor.
Correct Answer
B. False
Explanation
While CRT monitors can have excellent color and contrast, LCD monitors have a sharper image due to their higher pixel density. Pixel density is the number of pixels per inch (PPI) on the screen. A higher pixel density allows for more detail to be shown on the screen, resulting in a sharper image.
3.
Which of these monitors emit the most heat?
Correct Answer
C. CRT
Explanation
CRT monitors generate more heat than LCD and LED monitors because they use more power. This is due to the way CRT technology works, which involves firing electrons at a phosphorescent screen. This process generates a lot of heat. On the other hand, LCD and LED monitors use less power and thus generate less heat.
4.
Which of these devices would not be standard on a new build desktop PC?
Correct Answer(s)
C. Printers
F. Optical Mark Reader
Explanation
These are peripherals that aren’t typically included with a new desktop PC. Printers are often purchased separately based on the specific needs of the user. An Optical Mark Reader (OMR) is a specialized piece of equipment used to read marked data on a document, like a multiple-choice test. This is not a standard device for a typical PC user.
5.
Which of these devices could be used by someone who is mobility impaired from the neck down?
Correct Answer
D. Both A and B
Explanation
Foot Mouse and Eye Typer. These devices are designed to be used by people with limited mobility. A foot mouse is a type of mouse that can be operated with the feet, and an eye typer is a device that allows a person to type using eye movements. These devices can be very helpful for people who have mobility impairments.
6.
How much can a CD storage device typically hold?
Correct Answer
B. 650mb
Explanation
A standard CD-ROM can hold 650MB of data. This is less than a DVD, which can hold up to 4.7GB of data, and much less than a Blu-ray disc, which can hold up to 25GB of data on a single-layer disc and 50GB on a dual-layer disc.
7.
Which of these devices are portable storage devices?
Correct Answer(s)
A. USB Flash drive
B. CD
D. DVD
Explanation
USB Flash drive and CD and DVD. These are all types of portable storage. An Internal Hard Disk Drive is not typically portable because it is designed to be installed inside a computer. However, external hard drives are portable and can hold much more data than CDs, DVDs, or USB flash drives.
8.
Large organizations use "Magnetic Tapes" to store data.
Correct Answer
A. True
Explanation
True. Many large organizations use magnetic tapes to store data because they are cost-effective for large amounts of data. Magnetic tape storage is also very durable and can last for many years if stored properly.
9.
What is the Binary representation of the decimal number "77"?
Correct Answer
B. 01001101
Explanation
01001101 is the binary representation of the decimal number 77. In binary, the rightmost digit represents 2^0 (or 1), the next digit to the left represents 2^1 (or 2), the next represents 2^2 (or 4), and so on. So, to convert 01001101 to decimal, you would calculate 0*2^7 + 1*2^6 + 0*2^5 + 0*2^4 + 1*2^3 + 1*2^2 + 0*2^1 + 1*2^0 = 77.
10.
What decimal number does the "01010011" byte give?
Correct Answer
C. 83
Explanation
83. The binary number 01010011 represents the decimal number 83. Using the same method as above, you would calculate 0*2^7 + 1*2^6 + 0*2^5 + 1*2^4 + 0*2^3 + 0*2^2 + 1*2^1 + 1*2^0 = 83.
11.
Half a Byte is called ________
Correct Answer
nibble
Explanation
Half a Byte is called a nibble and it contains 4 bits. A bit is the most basic unit of information in computing and digital communications. The name is a portmanteau of binary digit. The bit represents a logical state with one of two possible values. These values are most commonly represented as either “1” or “0”.
12.
What base numbering system do computers use?
Correct Answer
B. Base 2
Explanation
Computers use a base 2, or binary, numbering system. This is because at the most fundamental level, computers use transistors, which have two states: on and off. These two states are represented by the numbers 1 (on) and 0 (off).
13.
A typical size of a CPU on a desktop computer would be:
Correct Answer
C. 3Ghz
Explanation
A typical CPU speed for a modern desktop computer would be around 3Ghz. The speed of a CPU, or clock speed, refers to the number of cycles the CPU can perform per second. A higher clock speed means the CPU can perform more cycles per second, which means it can process data more quickly.
14.
During the "Fetch Stage" the CPU gets information from:
Correct Answer
A. Main Memory
Explanation
Main Memory. During the fetch stage, the CPU gets information from the main memory. This is part of the fetch-decode-execute cycle, which is the process that the CPU uses to execute instructions.
15.
A ________ contains 8 bits.
Correct Answer
byte
Explanation
A byte contains 8 bits. This is a standard unit of data in computer systems and is the amount of data that most computers process at a time.
16.
What is the name given to table which lists the results of a combination of inputs?
Correct Answer
B. Truth Table
Explanation
A truth table is a table that lists all possible combinations of inputs and their corresponding outputs in a logical system. It is used to determine the truth value of a compound statement based on the truth values of its individual components. In this case, the table is used to list the results of a combination of inputs, making "Truth Table" the correct answer.
17.
What hardware has been designed to carry out the logic operations within the computer?
Correct Answer
C. Logic Gate
Explanation
Logic gates are electronic devices that perform logic operations, such as AND, OR, and NOT, which are fundamental to the functioning of a computer. These gates are designed to process binary inputs and produce binary outputs based on the logical rules they follow. Therefore, logic gates are specifically designed hardware components that carry out the logic operations within a computer. Binary switches and gates are not specific to logic operations, and a logic switch is not a commonly used term in computer hardware.
18.
The OR logical operation would be written as OR = A + B.
Correct Answer
A. True
Explanation
The OR logical operation can be written as OR = A + B. This means that if either A or B is true (or both), then the result is true.
19.
The AND logical operation would be written as AND = A +B.
Correct Answer
B. False
Explanation
The given statement suggests that the AND logical operation is represented by the expression "AND = A + B". This is incorrect because the correct representation for the AND logical operation is "AND = A * B". In the AND operation, the output is true only when both inputs are true. Using the "+" symbol suggests that the operation is a logical OR instead. Therefore, the correct answer is False.
20.
Which of these are valid gates?
Correct Answer(s)
A. AND
B. NOR
C. EXOR
D. NAND
Explanation
AND, NOR, EXOR, and NAND are all valid gates in digital logic. These gates are used to perform logical operations on binary inputs. - AND gate outputs true only when both of its inputs are true. - NOR gate outputs true only when both of its inputs are false. - EXOR gate outputs true when the number of true inputs is odd. - NAND gate outputs false only when both of its inputs are true. These gates are fundamental building blocks in the design of digital circuits and are widely used in various electronic devices and systems.
21.
What does ROM stand for?
Correct Answer
B. Read Only Memory
Explanation
ROM stands for Read Only Memory. It is a type of computer memory that stores data permanently and cannot be modified or erased by normal computer operations. The data stored in ROM remains intact even when the computer is turned off. This type of memory is commonly used to store firmware, which is the software that is permanently programmed into a device. ROM is non-volatile and provides secure storage for important system instructions and data that should not be changed.
22.
The more ROM you have, the faster your applications would open?
Correct Answer
B. False
Explanation
Having more ROM (Read-Only Memory) does not affect the speed at which applications open. ROM is a type of memory that stores permanent data and instructions for the computer to boot up. It is not directly related to the speed of opening applications. The speed at which applications open is primarily determined by the processing power of the device and the efficiency of the software.
23.
What does RAM stand for?
Correct Answer
A. Random Access Memory
Explanation
RAM stands for Random Access Memory. It is a type of computer memory that allows data to be stored and retrieved by the computer's processor quickly and efficiently. Unlike other types of memory, such as hard disk drives or solid-state drives, RAM is volatile, meaning that its contents are lost when the computer is powered off or restarted. RAM is essential for the smooth operation of a computer as it provides temporary storage for data and instructions that are actively being processed by the CPU.
24.
If someones PC was crashing, what advice would you first give to help the user?
Correct Answer
D. Use less applications at one time
Explanation
If a PC is crashing, it might be due to overuse of resources. Using fewer applications at once can help. This is because each open application uses some of the computer’s resources (like RAM and CPU cycles). If too many applications are open at once, the computer may not have enough resources to keep everything running smoothly.
25.
Which of the following RAM configurations would be correct to fit on a motherboard?
Correct Answer
A. 2 x 2gb
Explanation
This would be a correct RAM configuration for a motherboard. Most motherboards have multiple slots for RAM, and it’s often best to fill all the slots with matching sticks of RAM to take advantage of dual-channel (or even triple-channel or quad-channel) memory performance.
26.
Which of these is not an input device?
Correct Answer
B. Printer
Explanation
A printer is not an input device because it is used to produce hard copies of documents or images, rather than to input data or commands into a computer system. Input devices are tools or peripherals that allow users to enter data or interact with a computer system, such as a mouse, keyboard, or touchpad.
27.
OMR stands for:
Correct Answer
A. Optical Mark Reader
Explanation
OMR stands for Optical Mark Reader, which is a technology used to detect and analyze marks made on a paper. It is commonly used in applications such as multiple-choice exams, surveys, and ballots. The OMR technology uses a scanner to capture images of the marked areas and then processes the data using optical character recognition algorithms to interpret the marks. Therefore, the correct answer is Optical Mark Reader.
28.
How many forms can an OCR Reader read per hour (typically)?
Correct Answer
C. 7000
Explanation
An OCR reader can typically read around 7000 forms per hour. OCR stands for Optical Character Recognition, and it is a technology that can convert different types of documents, such as scanned paper documents, PDF files or images captured by a digital camera, into editable and searchable data.
29.
Which of these printers would be suitable for an office environment?
Correct Answer
B. Office Laser Printer
Explanation
An office laser printer would be suitable for an office environment because it offers faster printing speeds, higher print quality, and more efficient performance compared to the other options. Laser printers use a laser beam to produce high-resolution prints, making them ideal for printing documents, reports, and other office materials. They are also capable of handling large volumes of printing tasks, making them a practical choice for an office setting where productivity and efficiency are important.
30.
What is the primary function of a computer’s GPU (Graphics Processing Unit)?
Correct Answer
A. Render images and videos
Explanation
The GPU is a specialized electronic circuit designed to rapidly manipulate and alter memory to accelerate the creation of images in a frame buffer intended for output to a display device. GPUs are used in embedded systems, mobile phones, personal computers, workstations, and game consoles. Modern GPUs are very efficient at manipulating computer graphics and image processing, and their highly parallel structure makes them more efficient than general-purpose CPUs for algorithms where the processing of large blocks of data is done in parallel. In a personal computer, a GPU can be present on a video card or embedded on the motherboard. In certain CPUs, they are embedded on the CPU die.