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 mainframe
  1. A program can be created & generated, and then the copybooks can be created & generated

  2. A copybook has to be created before creating & generating the program

  3. A copybook has to be created & generated before creating & generating the program

  4. None of the above is true

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

Copybooks must be created and generated before programs that reference them, because programs need copybooks to be available during compilation. Copybooks contain data structures and shared code that programs depend on.

Multiple choice technology programming languages
  1. EXE is created for the called program and DLL is created for the calling program

  2. EXE is created for the calling program and DLL is created for the called program

  3. EXE is created for the both, called program and calling program

  4. DLL is created for the both, called program and calling program

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

In COBOL compilation on Windows, the calling (main) program is compiled into an EXE file, while the called (sub) program is compiled into a DLL for dynamic linking. This separates the executable logic from reusable subroutine modules.

Multiple choice technology mainframe
  1. GDS ALLOCATE

  2. GDS ASSIGN

  3. ACQUIRE

  4. GDS ACQUIRE

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

GDS ALLOCATE is the CICS command that acquires a session to a remote system in a CICS environment. GDS (Generalized Data Stream) commands are used for intersystem communication, and ALLOCATE specifically establishes a session/connection with a remote system.

Multiple choice technology programming languages
  1. A peripheral assembly designed to monitor permissions requests from an application.

  2. Any DLL file used by an EXE file.

  3. An assembly containing localized resources for another assembly.

  4. An assembly designed to alter the appearance of an application.

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

A satellite assembly in .NET is a compiled library containing culture-specific resources (such as translated strings or images) for a main assembly. These resources are separated into different satellite assemblies for each culture (e.g., fr-FR, de-DE) to support internationalization without requiring different builds of the main application.

Multiple choice technology operating systems
  1. Electrical

  2. Electro - Mechanical

  3. Electronic

  4. None of these

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

The Atanasoff-Berry Computer (ABC) was an electronic digital computer that used vacuum tubes for its computing mechanism. Unlike earlier electro-mechanical computers that used physical switches and relays, the ABC was fully electronic. It was not electrical (which would imply no electronic components), nor was it electro-mechanical like the Z3.

Multiple choice technology operating systems
  1. Simulation Program with Integrated Circuit Emphasis

  2. Space Integrated Control Experiment

  3. Sprint Intelligent Computing Environment

  4. Small Portable Initial Communications Equipment

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

SPICE stands for Simulation Program with Integrated Circuit Emphasis. It is a general-purpose open-source analog electronic circuit simulator. It was developed at the University of California, Berkeley, and is widely used in integrated circuit and board-level design to verify circuit designs and predict their behavior.

Multiple choice technology platforms and products
  1. DELL 4600

  2. DELL 6400

  3. DELL 740

  4. DELL 4300

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

The question asks which Dell model is NOT available in the catalogue, and option A (DELL 4600) is marked as the correct answer. This suggests that while DELL 6400, DELL 740, and DELL 4300 are available models, the DELL 4600 is not offered in the current catalogue. This is a factual knowledge question about specific product availability.

Multiple choice technology packaged enterprise solutions
  1. Every 15 minutes

  2. Every 10 keystrokes

  3. Every 15 keystrokes

  4. Every 10 minutes

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

The PeopleCode Editor in Application Designer features an automatic safety checkpoint that saves your active changes to a temporary file after every 10 keystrokes. This frequent micro-saving prevents significant data loss during unexpected crashes, making time-based options or alternative keystroke counts incorrect.

Multiple choice technology testing
  1. operating systems

  2. test documentation

  3. live data

  4. user requirement documents

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

Configuration Management (CM) controls versioned artifacts like source code, documentation, requirements, test cases, and operating systems - items that need to be tracked, controlled, and audited. Live production data is dynamic and constantly changing; it's not a version-controlled configuration item. CM manages the software and its artifacts, not the runtime data itself.

Multiple choice technology
  1. Computer Automation Design

  2. Computer Automated Design

  3. Computer Aided Design

  4. Control Alt Delete (Ctrl - Alt - Del)

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

CAD primarily stands for Computer-Aided Design, the standard technical term for design software. The Ctrl-Alt-Del association is a humorous/pop culture reference rather than a formal expansion, though the question uses 'refers to' wording which allows broader interpretation.

Multiple choice technology mainframe
  1. 3;Identification,Environment, Procedure

  2. 4;Cofiguration, Input Output, File section, Procedure

  3. 3;Environment, Library, Activity

  4. 3; Configuration, File section, Procedure

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

Easytrieve programs consist of three distinct functional sections: the Environment section (defines system/hardware settings), the Library section (defines files and fields), and the Activity section (contains executable processing logic). Options referencing COBOL-like sections do not apply to the Easytrieve structure.

Multiple choice technology web technology
  1. Program or sequence of instructions that is interpreted or carried out by processor directly

  2. Program or sequence of instruction that is interpreted or carried out by another program

  3. Program or sequence of instruction that is interpreted or carried out by web server only

  4. None of above

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

A script is a sequence of instructions or a program that is interpreted and executed at runtime by another program, such as a shell or browser interpreter, rather than compiled to machine code and executed directly by the processor. The web server option is too narrow.

Multiple choice technology web technology
  1. inetinfo.exe

  2. aspnet_isapi.dll

  3. aspnet_wp.exe

  4. None of the Above

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

The actual work process of ASP.NET is handled by aspnet_wp.exe (ASP.NET Worker Process) in IIS 5.x, which executes the ASP.NET code. The inetinfo.exe is the IIS admin service, and aspnet_isapi.dll is the ISAPI extension that routes requests to the worker process. The worker process is where the actual ASP.NET application code runs.

Multiple choice technology mainframe
  1. Operating System ; Kernel

  2. Operating System; Application Programs

  3. Hardware; Software

  4. Middle Tier; Hardware

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

CICS acts as a middleware layer between the operating system and application programs. It provides services like transaction management, data communication, and resource management, allowing applications to interact with system resources without dealing directly with OS complexities.