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 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 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.

Multiple choice technology operating systems
  1. A text editor

  2. The UNIX telnet service

  3. An E-mail client

  4. An FTP client

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

VI (and its improved version Vim) is a text editor for Unix/Linux systems. It's a modal editor with different modes for inserting text and issuing commands. It is not related to telnet, email, or FTP - those are separate network services and clients.

Multiple choice technology operating systems
  1. Shutdown

  2. stop

  3. kill

  4. delete

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

The kill command sends signals to processes, typically SIGTERM (15) or SIGKILL (9) to stop them. Shutdown is for system-wide power off, stop is not a standard Unix process command, and delete is for removing files not processes.

Multiple choice technology security
  1. change priority in processors

  2. add process id to services process id

  3. change the running files with this virus files

  4. entering into system files

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

Rootkits typically hide processes by modifying system structures, such as altering the active process list, replacing system files, or hooking APIs to filter out specific process IDs from being displayed in system tools.

Multiple choice technology security
  1. Process explorer

  2. autoruns

  3. rootkit retriveler

  4. ms office

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

Process Explorer, Autoruns, and Rootkit Revealer are specialized system utility tools from Sysinternals/Microsoft used to detect, analyze, and help remove malware and rootkits. MS Office is an office productivity suite, not a security tool.