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 mainframe
  1. By using HANDLE ABEND

  2. By using HANDLE CONDITION

  3. By using ABEND

  4. None of the above

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

In CICS, abends (abnormal terminations) are handled using the HANDLE ABEND command, which allows a program to specify error-handling routines to execute when an abend occurs. HANDLE CONDITION is for normal condition handling, not abends specifically, and ABEND alone is not a command but an event type.

Multiple choice technology mainframe
  1. By writing an ALC exception handling routine

  2. With the RESP clause or HANDLE instructions.

  3. Calling the CICS Error Handler

  4. Via a call back routine.

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

CICS provides two main mechanisms for handling unusual conditions: the RESP option returns a response code that you can check after each command, and HANDLE CONDITION/ABEND commands let you specify error handling routines. Option A is non-existent terminology, while C and D are not standard CICS approaches.

Multiple choice technology operating systems
  1. Closed System

  2. Global System

  3. Local System

  4. Operating System

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

OpenVMS is a multi-user, multiprocessing operating system designed for VAX and Alpha computers. It is not a closed, global, or local system - those are not standard operating system classifications.

Multiple choice technology web technology
  1. Source entry can be updated by clicking the shortcut

  2. If the source entry is deleted, shortcut icon changes to indicate a broken link

  3. Access permission for a shortcut entry can be changed

  4. The access permission given to the shortcut entry does not change the access permission of source entry

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

The FALSE statement is A. Clicking a shortcut opens or accesses the source entry, it does NOT update the source. The other statements are true: shortcuts show broken icons when source is deleted (B), shortcut permissions can be changed (C), and changing shortcut permissions does NOT affect source permissions (D).

Multiple choice technology web technology
  1. Source entry can be updated by clicking the shortcut

  2. If the source entry is deleted, shortcut icon changes to indicate a broken link

  3. Access permission for a shortcut entry can be changed

  4. The access permission given to the shortcut entry does not change the access permission of source entry

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

A shortcut is a reference to a source file/folder. Clicking a shortcut opens the source entry but does not update it - updating requires editing the source directly. When the source is deleted, the shortcut becomes a broken link (B is true). Shortcut access permissions can be changed independently (C is true), and modifying shortcut permissions does not affect the source (D is true). Since the question asks which statement is FALSE, A correctly identifies that clicking a shortcut does not update the source.

Multiple choice technology programming languages
  1. CWnd Destroy member function

  2. Explicitly deleting with the delete operator.

  3. Manually closing the windows

  4. Calling CWnd::DestroyWindow or the Windows API DestroyWindow.

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

Windows objects can be destroyed either by explicitly using the delete operator (which calls the destructor) or by calling the DestroyWindow API function (which destroys the window but not the C++ object). The CWnd::DestroyWindow member function wraps the Windows API. 'Manually closing windows' is ambiguous, and there is no 'CWnd Destroy' member function.

Multiple choice technology mainframe
  1. Delimits the PROC control statements

  2. Identifies the control card library

  3. Marks the beginning of one or more program control statements

  4. None of the above

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

In JCL (Job Control Language), the //CNTL statement marks the beginning of one or more program control statements that will be passed to the program. It delimits control statements from regular job statements. Options A and B describe different JCL functions.

Multiple choice technology mainframe
  1. Delimits the PROC control statements

  2. Identifies the control card library

  3. Marks the beginning of one or more program control statements

  4. None of the above

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

In JCL (Job Control Language for IBM mainframes), the //CNTL statement marks the beginning of one or more program control statements that follow. It's used to pass control information to programs like IEBGENER, SORT, or utilities. The CNTL statement delimits where these control statements start and is followed by the actual control cards.

Multiple choice technology
  1. /search_string

  2. %search_string

  3. _search_strin

  4. None

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

In vi editor, searching is done with / followed by the search string. The pattern /search_string will search forward for 'search_string' in the file. The % and _ prefixes are not valid vi search commands. Note the question has typos: 'serach' should be 'search' and 'sting' should be 'string'.

Multiple choice technology web technology
  1. An animated Steve Jobs dances across the screen

  2. What interrupt button?

  3. Duh, it's actually G 41F89A

  4. A photo slideshow of the development team appears

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

Typing 'G 41D89A' in the Mac SE's debugger after triggering the interrupt button would display an Easter egg slideshow of the development team's photos. This was a hidden feature in the Mac SE ROM.