0

mainframe Online Quiz - 2

Description: mainframe Online Quiz - 2
Number of Questions: 20
Created by:
Tags: mainframe
Attempted 0/20 Correct 0 Score 0

Who of the following is a key person at Unisys?

  1. J. Edward Coleman, CEO and Chairman

  2. Krishna Motukuri, Co-founder/CEOnHarish Abbott, Co-founder/President

  3. Ambulance Corps Director Commander Winifred Maye D.M.

  4. Levy Cohen, CEO


Correct Option: A

Which of these is a Unisys product?

  1. Prepaid and postpaid mobile phones

  2. Project Nomads

  3. Distance Learning Courses

  4. Computer Servers and Solutions


Correct Option: D

What is the company slogan of Unisys?

  1. Purina ONE Can Make A Difference.

  2. We are the growers and you can taste it!

  3. "The Business Behind Business"

  4. Imagine it. Done


Correct Option: D

Where is Unisys?

  1. Pennsylvania

  2. Pennsylvania State University

  3. Blue Bell, Pennsylvania

  4. Huntingdon, Pennsylvania


Correct Option: C

Which one of the following cannot cause more than one execution of the paragraph(s) that may be named in the statement

  1. The simple PERFORM statement

  2. The PERFORM with TIMES option

  3. The PERFORM with UNTIL option

  4. The PERFORM with VARYING option


Correct Option: A

Can a search be applied to a table which does not have an INDEX defined?

  1. True

  2. False


Correct Option: B

Just one ________ statement allows several alternative paths of execution

  1. If statements

  2. Evaluate

  3. Perform statement

  4. Copy statement


Correct Option: B

AI Explanation

To answer this question, you need to understand the concept of controlling the flow of execution in a program.

Option A) If statements - This option is incorrect because if statements allow for conditional execution of a block of code based on a condition. However, they do not inherently allow for multiple alternative paths of execution.

Option B) Evaluate - This option is correct because the evaluate statement is commonly used in programming languages to determine the result of a condition and then choose one of several alternative paths of execution based on that result. It allows for branching and multiple alternative paths.

Option C) Perform statement - This option is incorrect because the perform statement is typically used for invoking a sequence of instructions or a subroutine, but it does not inherently allow for multiple alternative paths of execution.

Option D) Copy statement - This option is incorrect because the copy statement is used for copying data from one location to another, but it does not inherently allow for multiple alternative paths of execution.

The correct answer is B) Evaluate. This option is correct because the evaluate statement is used to evaluate a condition and then choose one of several alternative paths of execution based on that condition.

Which of the following files can be OPENed in all the 4 modes? The four modes are INPUT, I-O, OUTPUT and EXTEND.

  1. INDEXED

  2. RELATIVE

  3. SEQUENTIAL

  4. All of the above


Correct Option: D

The UNSTRING verb is used to transfer data from several sources to one receiving file.

  1. True

  2. False


Correct Option: B

AI Explanation

To answer this question, you need to understand the purpose and functionality of the UNSTRING verb in programming languages.

The UNSTRING verb is used to break down or parse a string into its constituent parts. It is typically used to extract specific portions of a string and assign them to separate variables or fields.

Therefore, the statement that the UNSTRING verb is used to transfer data from several sources to one receiving file is incorrect.

Let's go through each option to understand why it is correct or incorrect:

Option A) True - This option is incorrect because the UNSTRING verb is not used to transfer data from several sources to one receiving file. It is used to break down or parse a string.

Option B) False - This option is correct because the UNSTRING verb is not used to transfer data from several sources to one receiving file.

The correct answer is B) False.

Business Rule Engine is a product which allows separating business rules from the application.

  1. True

  2. False


Correct Option: A

Using the Class Explorer to examine classes sorted alphabetically will allow you to view which type of inheritance?

  1. Directed Inheritance

  2. Pattern Inheritance

  3. Class Inheritance

  4. Genetic Inheritance


Correct Option: B

AI Explanation

To answer this question, we need to understand the concept of class inheritance and how it is related to the Class Explorer.

The Class Explorer is a tool that allows you to examine the classes in a program. When you examine the classes sorted alphabetically, it means that you are looking at the classes in a specific order based on their names.

In this case, the correct answer is B) Pattern Inheritance.

Pattern Inheritance refers to the organization of classes based on a specific pattern or structure, such as alphabetical order. When you view the classes sorted alphabetically in the Class Explorer, you are essentially viewing the classes based on a pattern (in this case, alphabetical order).

The other options are incorrect:

A) Directed Inheritance: Directed inheritance is not a recognized term in object-oriented programming. It is not related to the concept of organizing classes based on alphabetical order.

C) Class Inheritance: Class inheritance refers to the mechanism by which a class can inherit properties and behaviors from another class. It is not related to the organization of classes based on alphabetical order.

D) Genetic Inheritance: Genetic inheritance refers to the passing of traits from parents to offspring in biological systems. It is not related to the organization of classes in a program.

Therefore, the correct answer is B) Pattern Inheritance, as it accurately describes the type of inheritance you can view when examining classes sorted alphabetically in the Class Explorer.

Which of the following directives ‘comments out’ authoring notes in a PegaRULES Process Commander HTML object?

  1. /* This is a comment */

  2. // This is a comment

  3. {COMMENT This is a comment /}

  4. {COMMENT} This is a comment {/COMMENT}


Correct Option: D

Local Flow Actions are added to which task form?

  1. Assignment

  2. Utility

  3. Decision

  4. Connector


Correct Option: A

AI Explanation

To answer this question, you need to understand the concept of Local Flow Actions and their relationship to task forms.

Local Flow Actions are a type of action that can be added to a task form in a flow. They allow users to perform specific actions within the flow, such as submitting a form, saving the form, or canceling the task.

Based on the given options, Local Flow Actions are added to the Assignment task form. The correct answer is A) Assignment.

Option A) Assignment - This option is correct because Local Flow Actions are added to the Assignment task form, allowing users to perform actions specific to that task.

Option B) Utility - This option is incorrect because Local Flow Actions are not added to the Utility task form. Utility tasks are used for system-level actions and do not have associated task forms.

Option C) Decision - This option is incorrect because Local Flow Actions are not added to the Decision task form. Decision tasks are used to make decisions within a flow and do not have associated task forms.

Option D) Connector - This option is incorrect because Local Flow Actions are not added to the Connector task form. Connector tasks are used to integrate with external systems and do not have associated task forms.

The correct answer is A) Assignment. Local Flow Actions are added to the Assignment task form to allow users to perform specific actions within the flow.

If you were working in a production Rule set Version Company X: 03-04-02, what Rule set version would you use for your next minor release?

  1. 03-05-01

  2. 04-01-01

  3. 03-05-02

  4. 03-04-03


Correct Option: A

AI Explanation

To answer this question, you need to understand how rule set versions are typically structured and incremented.

In the given scenario, the current rule set version is "03-04-02". The format of the rule set version is typically in the form of "major.minor.patch", where the major version represents significant changes, the minor version represents smaller updates or enhancements, and the patch version represents bug fixes or patches.

For the next minor release, you would increment the minor version by 1 while keeping the major and patch versions the same. Therefore, the next minor release would be "03-05-01".

Let's go through each option to understand why it is correct or incorrect:

Option A) 03-05-01 - This option is correct because it follows the rule of incrementing the minor version by 1 for the next release.

Option B) 04-01-01 - This option is incorrect because it increments the major version, not the minor version.

Option C) 03-05-02 - This option is incorrect because it increments both the minor and patch versions, not just the minor version.

Option D) 03-04-03 - This option is incorrect because it increments the patch version, not the minor version.

The correct answer is A) 03-05-01. This option is correct because it follows the rule of incrementing the minor version by 1 for the next release.

What is the screen size in CICS BMS?

  1. 32 x 72

  2. 24 x 72

  3. 32 x 80

  4. 24 x 80


Correct Option: D

AI Explanation

To answer this question, you need to understand the concept of screen size in CICS BMS (Basic Mapping Support).

In CICS BMS, the screen size is specified by two dimensions: the number of rows and the number of columns. The screen size determines the maximum number of characters that can be displayed on the screen.

Let's go through each option to understand why it is correct or incorrect:

Option A) 32 x 72 - This option is incorrect because the correct answer is 24 x 80, not 32 x 72.

Option B) 24 x 72 - This option is incorrect because the correct answer is 24 x 80, not 24 x 72.

Option C) 32 x 80 - This option is incorrect because the correct answer is 24 x 80, not 32 x 80.

Option D) 24 x 80 - This option is correct because the screen size in CICS BMS is typically defined as 24 rows and 80 columns. This means that the maximum number of characters that can be displayed on the screen is 24 rows multiplied by 80 columns, which equals 1920 characters.

The correct answer is D) 24 x 80. This option is correct because it represents the standard screen size in CICS BMS.

What do we understand by BMS in CICS?

  1. Building Maintanance System

  2. Basic Mapping Support

  3. Bio Medical System

  4. Basic Mapping System


Correct Option: B

What is the maximum length of qualifier defined for namimg convention in ISPF/PDF?

  1. 8

  2. 7

  3. 9

  4. 6


Correct Option: A

What is the full form of ISPF?

  1. Interactive System Product Facility

  2. Interaction Support Productivity Facility

  3. Interactive System Productivity Facility

  4. Interactive System Production Facility


Correct Option: C

Which of the PICture clauses (data types) are correct?

  1. P, S9, X, A, 9

  2. P, R, X, A, 0

  3. Z, X, S, B, 9

  4. Z, 9, A, R, SP


Correct Option: A

What is the full form of JCL?

  1. Job Circuit Language

  2. JCL Control Language

  3. Job Control Language

  4. JCL Course Language


Correct Option: C
- Hide questions