Computer Knowledge

Computer Fundamentals and System Concepts

2,255 Questions

Computer fundamentals and system concepts questions cover core hardware components, operating systems, and historical computer milestones. Topics include the kernel, central processing unit, and basic computing terminology. These foundational questions are strictly essential for scoring well in computer knowledge sections.

Central processing unitComputer operating systemsSupercomputer milestonesSystem registry functionsKernel operationsAndroid applications

Computer Fundamentals and System Concepts Questions

Multiple choice technology
  1. Application Software

  2. Motherboard

  3. Operating System

  4. RAM

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

The Operating System (OS) is the core software that manages all computer resources and coordinates activities between hardware and software. It handles memory, CPU, processes, and peripheral devices. Applications run ON TOP of the OS, not as the manager.

Multiple choice technology
  1. Hard Drive

  2. I/O Controller

  3. Power Supply

  4. Memory

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

Parity errors are specifically related to memory (RAM) modules and indicate data corruption issues during storage or retrieval. The parity bit is used for error detection in memory systems. When a parity error occurs, it typically points to faulty RAM, not hard drives, controllers, or power supplies.

Multiple choice technology
  1. RAM

  2. System Board

  3. CPU

  4. Speaker

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

The beep sound during boot is produced by the system speaker (not to be confused with regular audio speakers). The beep code indicates POST (Power On Self Test) results. If the system boots but there's no beep, the most likely cause is a disconnected or faulty system speaker. The system can still boot successfully even without the speaker working. Options A, B, and C would typically prevent booting entirely or cause different symptoms.

Multiple choice technology
  1. Bad system board

  2. Bad Power Supply

  3. Faulty Adapter Card

  4. AC Power Faulty

  5. All of the above

Reveal answer Fill a bubble to check yourself
E Correct answer
Explanation

Continuous rebooting (also called a reboot loop) can be caused by multiple hardware failures. A bad system board can cause instability and reboots. A faulty power supply may deliver inconsistent voltage, triggering reboots. A defective adapter card can cause system crashes leading to restarts. Faulty AC power (unstable wall power) can also cause reboots. Since any of these could be the culprit, 'All of the above' is correct. Troubleshooting would require isolating which component is actually failing.

Multiple choice technology
  1. Motherboard manual

  2. BIOS setup screens

  3. System properties

  4. On the back of the computer

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

The BIOS version ID is displayed on the main screen of the BIOS setup utility, which can be accessed by pressing a specific key (like Del, F2, or F10) during boot. The motherboard manual may reference a version but doesn't show the currently installed version.

Multiple choice technology
  1. Basic Input Output System

  2. Byte Integration Operations System

  3. Basic Interconnect Operating System

  4. Big Interconnect Operating

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

BIOS stands for Basic Input Output System, the firmware that initializes hardware during the boot process and provides runtime services for hardware-software communication. The other options are fabricated expansions.

Multiple choice technology
  1. IBM

  2. AMD

  3. VIA

  4. Cyrix

  5. Intel

Reveal answer Fill a bubble to check yourself
E Correct answer
Explanation

Intel invented the x86 architecture with the release of the 8086 processor in 1978. AMD later became a major licensee and competitor, IBM adopted x86 for their PCs, while VIA and Cyrix were later clone manufacturers.

Multiple choice technology
  1. Times the FSB Speed

  2. Times the CPU Speed

  3. Times PCI Speed

  4. Times Graphics Speed

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

The 'x' in AGP 8x represents a multiplier relative to the original AGP 1x speed, which is based on PCI clock timing. AGP 8x operates at 8 times the base AGP speed, not CPU, FSB, or graphics speed.

Multiple choice technology
  1. CPU fried

  2. Hard Drive crashed

  3. CD-ROM fried

  4. Power Supply blown

  5. Motherboard fried

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

The power supply unit (PSU) converts AC wall power to DC power for all components. When it fails completely, no component receives power, making the system appear dead. This is far more common than sudden CPU, motherboard, or hard drive failure during normal operation.

Multiple choice technology
  1. CPU

  2. Memory

  3. FSB(Front Side Bus)

  4. Video Card

  5. Hard Drive

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

The Front Side Bus (FSB) was the primary data path between CPU and memory (Northbridge) in older PC architectures. Its speed dictated how fast data could move between critical components, making it a performance bottleneck. Modern systems use QPI, HyperTransport, and integrated memory controllers instead.

Multiple choice technology
  1. True

  2. False

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

CPU frequency is only one factor in performance. Modern CPUs achieve higher throughput through multiple cores, larger caches, better branch prediction, wider instruction pipelines, and architectural improvements. A 2 GHz CPU from today significantly outperforms a 3 GHz CPU from 15 years ago due to these efficiency gains.

Multiple choice technology databases
  1. System Variable

  2. System Function

  3. Both A & B

  4. None of the Above

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

SYSDATE in PL/SQL is a pseudo-column that returns the current date and time from the database server. It is implemented as a function call that gets evaluated each time it is referenced, not a stored variable value. This is why SYSDATE always returns the current time when called.