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
-
1 A dummy device to represent swap
-
2 A dummy device to represent any device
-
3 A dummy device to provide infinite number of randon numbers
-
4 Invalid device
C
Correct answer
Explanation
/dev/random is a special device that provides random numbers generated by the kernel from environmental noise (device drivers, interrupt timing, etc.). It blocks when entropy pool is depleted, ensuring high-quality randomness for cryptography. Option C has a typo ('randon' instead of 'random') but is correct.
D
Correct answer
Explanation
In SQL*Plus, the hyphen (-) at the end of a line indicates that the statement continues on the next line. This is the continuation character when entering multi-line SQL statements.
-
A text editor
-
The UNIX telnet service
-
An E-mail client
-
An FTP client
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.
-
Shutdown
-
stop
-
kill
-
delete
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.
-
change priority in processors
-
add process id to services process id
-
change the running files with this virus files
-
entering into system files
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.
-
Process explorer
-
autoruns
-
rootkit retriveler
-
ms office
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.
-
vb scripts
-
batch file scripts
-
autoit scripts
-
all the above
A,B,C
Correct answer
Explanation
VB scripts, batch file scripts, and AutoIt scripts can all be used to create viruses or malware due to their ability to execute system commands and automate tasks. These scripting languages have the necessary capabilities for malicious code execution, though their use for such purposes is unethical and illegal.
-
batch file scripts
-
vb scripts
-
autoit scripts
-
all the above
D
Correct answer
Explanation
Batch files, VBScript, and AutoIt scripts are all lightweight, interpreted scripting languages with direct access to system resources, file systems, and execution commands, making them highly effective and commonly used tools for creating simple viruses or malware.
-
There are no programs open on the desktop
-
There are no bits of paper on the floor
-
Everything is turned off
-
You have thoroughly dusted your area
A
Correct answer
Explanation
This appears to be asking about computer desktop cleanliness or organization. The correct answer indicates that a clean desktop means no programs are open and visible on the desktop interface. This is about keeping the computer workspace organized and free of clutter, similar to keeping a physical desk clean.
-
An operating System
-
A Printer Attached
-
An anti-virus program
-
A word processor
-
Back straight
-
Eyes on monitor
-
Feet on the floor
-
Elbows on the table
D
Correct answer
Explanation
Good posture includes back straight, eyes on monitor at proper distance, and feet flat on the floor. However, elbows should be at approximately 90 degrees with arms resting naturally, NOT placed on the table - this can cause shoulder strain and restrict circulation.
-
There are no programs open on the desktop
-
There are no bits of paper on the floor
-
Everything is turned off
-
You have thoroughly dusted your area
A
Correct answer
Explanation
In operating systems, a 'clean desktop' means that there are no active application windows open or cluttering the screen, allowing the user to see the desktop background clearly.
-
An operating System
-
A Printer Attached
-
An anti-virus program
-
A word processor
A
Correct answer
Explanation
An operating system is essential software that manages computer hardware and software resources, providing services for computer programs. Without an OS, a computer cannot function. The other options (printer, anti-virus, word processor) are optional peripherals or applications that a computer can operate without.
-
Build automation using Ant Script
-
Integrating J2EE Application servers
-
Plug-in development by the user
-
Can be used as a J2EE application server
D
Correct answer
Explanation
Eclipse integrates with J2EE servers like Tomcat and WebLogic, supports Ant build automation, and has extensive plugin development capabilities (PDE). However, Eclipse itself is an IDE/framework, not a J2EE application server - it doesn't host servlets/JSPs directly like Tomcat or WebLogic.