Computer Knowledge

Computer Fundamentals and System Concepts

2,421 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 security
  1. Virut

  2. Morph

  3. 1260

  4. Timid Virus

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

The 1260 virus was the first to use a polymorphic engine, changing its code structure to avoid antivirus detection while maintaining the same malicious functionality. This innovation made it significantly harder to detect using traditional signature-based methods.

Multiple choice technology security
  1. Chimera

  2. Trojan

  3. Hercules

  4. Hydra

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

The Trojan horse malware is named after the Greek mythological Trojan Horse - malicious code hidden inside seemingly legitimate programs, just as Greek soldiers hid inside the wooden horse to infiltrate Troy. Chimera, Hercules, and Hydra are also mythological references but not the basis for the Trojan malware naming.

Multiple choice technology programming languages
  1. A application to create Unix boot immages

  2. Application to create text files

  3. Application to create animations

  4. Application to create text file as well as animations

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

vi (visual editor) is a standard Unix text editor for creating and modifying text files. It is not for creating boot images, animations, or multimedia content - it's purely a text manipulation tool.

Multiple choice technology programming languages
  1. A request by the users to access kernel functions

  2. A request by kernel to the device

  3. A request by the device to kernel

  4. None

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

A system call is a mechanism for programs to request services from the kernel. It's the interface between user space and kernel space - userspace programs invoke system calls to access protected kernel functions like file I/O, process management, etc.

Multiple choice technology programming languages
  1. A mechanism to connect to printer, keyboard and monitor in Unix

  2. A mechanism to share printer across users

  3. A request made by the device to unix kernel

  4. None

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

SPOOL (Simultaneous Peripheral Operations On Line) is a queuing mechanism that allows multiple users to share printer resources by spooling print jobs to disk. This prevents conflicts when several users print simultaneously, as jobs are processed sequentially from the queue.

Multiple choice technology programming languages
  1. A Pipe used by kernel to access device

  2. A pipe to be used by the user to access device

  3. An abstraction to provide support for inter process communication

  4. A device

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

A named pipe (FIFO) is a special file type that provides inter-process communication (IPC) by allowing unrelated processes to exchange data through the filesystem as if it were a pipe.

Multiple choice technology programming languages
  1. A request by the users to access kernel functions

  2. A request by kernel to the device

  3. A request by the device to kernel

  4. None

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

A system call is a mechanism for user programs to request services from the operating system kernel. It acts as an interface between user space and kernel space, allowing applications to access protected resources and operations like file I/O, process creation, and hardware interaction.

Multiple choice technology operating systems
  1. Basic Input/Output System

  2. Bios Input/Output System

  3. Basics Input/Output System

  4. Basic Input/Operating System

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

BIOS stands for Basic Input/Output System. It's firmware that initializes hardware during the boot process and provides runtime services for operating systems and programs. The other options misrepresent the acronym.

Multiple choice technology operating systems
  1. Parallel Control Interface

  2. Peripheral Communicaton Interface

  3. Peripheral Component Interconnect

  4. Parallel Component Interconnect

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

PCI stands for Peripheral Component Interconnect. It is a standard computer bus for attaching hardware devices in a computer. PCI replaced older standards like ISA and VESA Local Bus, providing faster data transfer between the CPU and peripherals like graphics cards, network cards, and sound cards.

Multiple choice technology operating systems
  1. Small Computer System Interface

  2. Serial Computer System Interface

  3. Synchronous System Interface

  4. Small Computer System Interconnect

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

SCSI stands for Small Computer System Interface. It is a set of standards for physically connecting and transferring data between computers and peripheral devices. SCSI is commonly used for hard drives, tape drives, scanners, and CD-ROM drives, offering advantages like support for multiple devices on a single controller and better performance in server environments.

Multiple choice technology operating systems
  1. Per System / 2

  2. Personal Series / 2

  3. Personal Synchronization / 2

  4. Personal System / 2

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

PS/2 refers to Personal System/2, which was IBM's second generation of personal computers introduced in 1987. The PS/2 port for keyboards and mice was named after this computer line, not 'Per System', 'Personal Series', or 'Personal Synchronization'.

Multiple choice technology operating systems
  1. Piece of software that handles all the communictions

  2. Command interpreter

  3. Considered the primary interaction with the user

  4. Interface between os nand user

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

A shell is primarily a command interpreter that executes user commands. While it does handle communication and acts as an interface, those are consequences of its core function - interpreting and executing commands. Option B is the most precise definition. Option D has a typo ('nand').

Multiple choice technology databases
  1. *

  2. /

  3. -

  4. @

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

In SQL*Plus, the hyphen (-) is used as a continuation character to break long SQL statements across multiple lines. When placed at the end of a line, it indicates the statement continues on the next line. The other symbols have different purposes: * for wildcards, / for executing previous commands, @ for running scripts.

Multiple choice technology operating systems
  1. rundll32.exe user32.dll,LockWorkStation

  2. syslock.com

  3. interlck

  4. window key + L

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

The rundll32.exe command calls the LockWorkStation function from user32.dll to programmatically lock Windows. The Windows key + L keyboard shortcut is the standard manual method. Both are valid ways to lock a Windows workstation.