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 web technology
  1. Process.Start

  2. Application.Start

  3. Process.Run

  4. Application.Run

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

To start another program from .NET, you use the Process.Start method from the System.Diagnostics namespace. Process.Start is the correct way to launch external applications. Application.Start and Application.Run are used for Windows Forms application startup, not for launching external programs. Process.Run does not exist.

Multiple choice technology platforms and products
  1. onDestroy()

  2. onStop()

  3. onPause()

  4. Above a & c

  5. Above a & b

  6. Above a & b & c

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

Activities in three states are killable by the system: onDestroy() (being destroyed), onStop() (stopped), and onPause() (paused). The system may kill processes in these states to reclaim memory if resources are needed, with onPause() being the safest state (data is saved) but still technically killable in extreme memory pressure.

Multiple choice technology platforms and products
  1. 3

  2. 5

  3. 4

  4. 6

  5. None of above

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

Android applications are built using four main component types: Activities (UI screens), Services (background operations), Broadcast Receivers (respond to system-wide broadcasts), and Content Providers (data sharing between apps). These are the fundamental building blocks defined in the Android framework.

Multiple choice technology platforms and products
  1. State information

  2. Member information

  3. Attached to Window Manager

  4. Above a & c

  5. Above a, b & c

  6. None of above

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

An activity is completely alive when it has state information (saved instance state), maintains member information (variables and objects), and is attached to the Window Manager (can display UI). All three conditions must be met for the activity to be fully functional and interactive.

Multiple choice technology web technology
  1. data

  2. control

  3. programs

  4. services

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

To solve this question, the user needs to know what UDDI stands for and what its purpose is. UDDI stands for Universal Description, Discovery, and Integration, and it is a platform-independent, XML-based registry for businesses to list their web services.

The correct option is:

D. services: UDDI is used for listing what services are available. It allows businesses to publish their web services to a central directory where they can be easily found and accessed by other businesses and applications. By doing so, UDDI enables interoperability and integration between different systems and applications. Option D is the correct answer.

Option A is incorrect because UDDI is not used for listing data.

Option B is incorrect because UDDI is not used for listing control.

Option C is incorrect because UDDI is not used for listing programs.

Therefore, the answer is: D. services.

Multiple choice technology architecture
  1. ROM

  2. MONITOR

  3. RAM

  4. CPU

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

CPU (Central Processing Unit) is called the 'brain' of the computer because it processes all instructions and coordinates operations. ROM is permanent memory, RAM is temporary workspace, and Monitor is an output display. The CPU's role in executing programs, performing calculations, and managing data flow makes it the control center analogous to a brain.

Multiple choice technology
  1. True

  2. False

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

Open-source software is defined by its licensing model, which grants users the rights to view, modify, and distribute the source code. This distinguishes OSS from proprietary software, where source code is kept confidential and modification rights are restricted. The definition accurately captures the essence of OSS licensing.

Multiple choice technology
  1. Worms

  2. Spyware

  3. Adware

  4. Virus

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

Spyware is software that secretly monitors and collects information about a user's activities without their knowledge. Worms are self-replicating malware, Adware displays advertisements (with consent), and Viruses attach themselves to legitimate programs. The key characteristic of spyware is covert surveillance.

Multiple choice technology
  1. IBM Roadrunner

  2. Fujitsu Numerical Wind Tunnel

  3. Cray Jaguar

  4. Intel ASCI White

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

Cray Jaguar was the world's fastest supercomputer at the time of this question's writing. Located at Oak Ridge National Laboratory, it was a Cray XT5 system that achieved sustained performance of over 1 petaflop (1 quadrillion calculations per second), making it the first system to break the petaflop barrier.

Multiple choice technology operating systems
  1. Cell board failure

  2. Power supply

  3. System Back Plane

  4. GSP

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

HP SuperDome's system architecture uses a central backplane that interconnects all cell boards. If this backplane fails, the entire system loses connectivity between components, making it the single point of failure. Cell boards, power supplies, and GSP (Guardian Service Processor) are redundant or distributed.

Multiple choice technology packaged enterprise solutions
  1. SECTION

  2. MAIN

  3. STEP01

  4. ACTION

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

All Application Engine programs must contain at least one section named MAIN, which serves as the entry point for the program execution. SECTION is a general term, STEP01 is a naming convention but not required, and ACTION refers to operations within steps.

Multiple choice technology operating systems
  1. True

  2. False

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

Modern PCs with appropriate software can process both text and graphics. Graphics processing requires applications like image editors, CAD software, or even web browsers that render visual content. The computer's hardware (CPU, GPU, and display adapter) handles both data types when given proper software instructions. This capability has been standard since the early GUI era.

Multiple choice technology operating systems
  1. Mege hertz

  2. Hectares

  3. Revolutions per minute.

  4. Bits per second

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

CPU speed is measured in megahertz (MHz) or gigahertz (GHz), representing clock cycles per second. One MHz equals one million cycles per second. Hectares measure area, RPM measures rotational speed (used for disk drives), and bits per second measure data transfer rates (network bandwidth). The CPU's clock speed determines how many instructions it can process per second, making MHz the correct unit.

Multiple choice technology operating systems
  1. A mainframe computer enables users to share files, printers and other resources.

  2. Mainicomputer enables users to share files, printers and other resources.

  3. Network computer enables users to share files, printers and other resources.

  4. None

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

A network (not a mainframe) enables users to share files, printers, and other resources. Option A is wrong because mainframes are centralized computers, not networks. Option B contains a typo and is conceptually the same as A. Option C correctly identifies that networks enable resource sharing.