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
-
disp+work
-
gwrd
-
sapevt
-
sapxpg
D
Correct answer
Explanation
sapxpg (SAP eXternal Program Gateway) is the OS-level program that executes external programs triggered from ABAP. disp+work is the SAP work process, gwrd is the gateway, and sapevt handles event management. The SAP external program interface uses sapxpg to spawn and monitor external programs at the operating system level.
-
An entity that receives inputs and outputs
-
A way of storing values
-
A sequence of characters enclosed by quotes
-
A kind of computer
A
Correct answer
Explanation
A function is a block of code or mathematical entity that receives input values (arguments) and returns an output value based on those inputs.
-
(A)Incoming Email
-
(B)Outgoing Email
-
(C)CD Roms
-
(D)Websites
-
(E)Mobile
A
Correct answer
Explanation
Email attachments in incoming emails have historically been the most common virus transmission vector. Attackers use social engineering to trick users into opening infected attachments disguised as legitimate documents or files.
-
A header file
-
An Assembly or .dll
-
An executable
-
A COM Component
B
Correct answer
Explanation
The 'using System' statement refers to the System assembly, which is a .NET framework library (dll). Assemblies are the fundamental deployment units in .NET, containing compiled code and metadata. Header files are a C/C++ concept, COM is a pre-.NET technology, and System is not an executable.
-
Errors
-
Exceptions
-
Both errors and exceptions
-
Neither
B
Correct answer
Explanation
In Java, Exceptions represent recoverable conditions that programs can handle (like IOException, FileNotFoundException). Errors (like OutOfMemoryError, StackOverflowError) represent serious problems that programs typically cannot recover from.
-
Trojan Horse
-
Virus.
-
Malware.
-
Keylogger.
A
Correct answer
Explanation
A Trojan Horse is malicious software disguised as legitimate software. The 'freeware' appeared useful but caused unauthorized data usage (internet bills) and erratic application behavior (malicious activity). Viruses replicate themselves, malware is a broad category, and keyloggers capture keystrokes specifically.
-
worm
-
Trojan-horse
-
script injection
-
DOS attack
-
White-box
-
Black-box
-
Grey-box
-
None
-
System service
-
Technology
-
Automation tool
-
none of the above
A
Correct answer
Explanation
Windows Installer (msiexec.exe) operates as a system service that manages the installation, modification, and removal of software packages. It runs in the background with appropriate privileges to handle file operations, registry changes, and system configuration required during installation. While it uses technology and provides automation capabilities, fundamentally it is a Windows system service.
-
Administrative installation
-
Commit installation
-
Silent instllation
-
Rollback installation
A
Correct answer
Explanation
Administrative installation creates a network installation point by extracting files from the MSI but does NOT actually install the software, register DLLs, or make registry changes on the local machine. It's essentially an unpacking operation for deployment. Commit, Silent, and Rollback installations are all actual installations that register components and modify the system.
-
Only features already installed by an earlier installation to be installed
-
Installs all new features of the application
-
Will do major upgrade
-
Will do minor upgrade
A
Correct answer
Explanation
The REINSTALL property with ALL value instructs Windows Installer to only process features that were previously installed. It does not install new features - for that, you would use ADDDEFAULT or similar properties.
-
Removing the application
-
Repair\Modifying the application
-
Helps major upgradation
-
Helps minor upgradation
B
Correct answer
Explanation
Key files (usually the main executable) and key paths are detection mechanisms Windows Installer uses to locate a valid installation source. When performing repair or modification operations, the installer verifies these files exist at expected locations before proceeding.
A
Correct answer
Explanation
Linux uses Unix-style permissions (owner/group/others with rwx bits) while Windows uses Access Control Lists (ACLs) with a more granular permission model. When sharing filesystems (e.g., via Samba, NTFS-3G, or network shares), these models don't translate directly - Linux can't interpret Windows ACLs fully and vice versa. This can lead to permission mismatches, security gaps, or access issues.
-
SEU12ABC
-
TXI14IJK
-
PHR10XYZ
-
BOTH A and C
-
FURPUR
-
ECL
-
Exec
-
processor call control statements
C
Correct answer
Explanation
The description matches the Exec program (often called 'Exec' or 'executive') in Unisys systems. This is the system software that manages user runs, controls files, handles system resources, and performs I/O operations. While FURPUR is a utility program and ECL is a control language, 'Exec' is the overall system software that performs these supervisory functions.