Computer Knowledge

Operating Systems

1,344 Questions

Test your computer knowledge with these questions on operating systems. The content covers various platforms including Unix, Linux, Windows, Android, and Macintosh. These questions are commonly asked in the computer knowledge sections of banking and government exams.

Unix emulatorsLinux distributionsAndroid software stackMacintosh operating systemsWindows OS versionsSymbian OS history

Operating Systems Questions

Multiple choice technology operating systems
  1. Sun UNIX

  2. SuriyaOS

  3. SparcOS

  4. Solaris

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

SunOS 5.0 and later versions were rebranded as Solaris by Sun Microsystems. This reflected the transition from Sun's original BSD-based Unix to a System V Release 4 (SVR4) based operating system. Solaris became known for its scalability, SMP support, and innovative features like DTrace and ZFS.

Multiple choice technology operating systems
  1. Android

  2. WebOS

  3. Symbian OS

  4. LiMo

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

Android is a mobile operating system based on the Linux kernel. Initially developed by Android Inc. (founded 2003), it was acquired by Google in 2005. Later, the Open Handset Alliance (led by Google) continued development. Android is now the world's most widely used mobile OS. WebOS was developed by Palm. Symbian was Nokia's OS. LiMo was a different Linux mobile initiative.

Multiple choice technology operating systems
  1. LiMo

  2. Moblin

  3. Android

  4. WebOS

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

Moblin (Mobile Linux) was The Linux Foundation's mobile phone project, later merging with Maemo to become MeeGo. It was designed for netbooks and mobile devices using Intel Atom processors. LiMo was a different consortium initiative. Android is Google's project (not Linux Foundation). WebOS was Palm's (later HP's) proprietary system.

Multiple choice technology operating systems
  1. True

  2. False

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

To disable Dr. Watson in Windows, you set the 'Auto' value to '0' (disabled), not '1'. The registry key path is correct, but the value should be '0' to turn it off. Setting it to '1' would actually enable automatic debugging.

Multiple choice technology mainframe
  1. True

  2. False

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

COND=ONLY in a JCL step means that step executes ONLY if any previous step terminated abnormally (with a non-zero return code). This is a conditional execution mechanism that runs cleanup or recovery steps only when failures occur in the job stream.

Multiple choice technology architecture
  1. System.ServiceProcess.ServiceInstaller

  2. System.ServiceProcess.ServiceController

  3. System.ServiceProcess.ServiceBase

  4. System.ServiceProcess.ServiceProcessInstaller

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

All Windows services in .NET must inherit from ServiceBase, which provides the foundational service functionality and lifecycle methods (OnStart, OnStop, OnPause, OnContinue, etc.). ServiceController controls existing services, while ServiceInstaller and ServiceProcessInstaller are for installation purposes - none serve as a service base class.

Multiple choice technology architecture
  1. Service components are spread over several servers

  2. The service uses unmanaged code

  3. You have been unable to install the service manually

  4. You want to distribute the service

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

Setup projects (.msi or Setup.exe) are primarily used to distribute applications and services across multiple machines. While you can install services manually using installutil, a setup project provides a user-friendly installation wizard and handles registration automatically. This is essential when deploying to production servers or customer environments.

Multiple choice technology architecture
  1. HKEY_CURRENT_CONFIG

  2. HKEY_CURRENT_USER

  3. HKEY_LOCAL_MACHINE

  4. HKEY_USERS

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

Windows Services store their configuration in the HKEY_LOCAL_MACHINE hive, specifically under the path HKLM\SYSTEM\CurrentControlSet\Services. This registry location contains service properties like display name, startup type, dependencies, and the path to the service executable. HKEY_CURRENT_USER and HKEY_USERS are user-specific hives, while HKEY_CURRENT_CONFIG stores hardware profiles.

Multiple choice technology architecture
  1. CanShutDown

  2. CanPauseAndContinue

  3. AutoLog

  4. CanStop

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

For a service that can pause and resume, set CanPauseAndContinue to true. To automatically log service events to the Application event log, set AutoLog to true. CanStop and CanShutdown are separate properties for different service capabilities. The question asks specifically about pause/resume functionality and logging.

Multiple choice technology programming languages
  1. Windows

  2. Unix/Linux

  3. Mac

  4. All of the Above

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

Java's 'write once, run anywhere' philosophy means compiled Java bytecode runs on any platform with a Java Virtual Machine (JVM). This includes Windows, Unix/Linux, macOS, and many others. The JVM abstracts platform differences, making Java highly portable across operating systems.