Search test library by skills or roles
⌘ K

About the test:

大型机在线测试使用基于方案的MCQ来评估候选人对大型机技术的了解,包括COBOL编程语言,JCL,VSAM,CICS和DB2。该测试旨在评估候选人设计和开发遵守行业标准和最佳实践的大型机应用程序的能力。

Covered skills:

  • COBOL
  • VSAM
  • CICS
  • 汇编器
  • pl/i
  • ISPF
  • JCL
  • DB2
  • IM小号
  • RPG
  • TSO

Try practice test
9 reasons why
9 reasons why

Adaface IBM Mainframe Test is the most accurate way to shortlist 大型机开发人员s



Reason #1

Tests for on-the-job skills

The IBM Mainframe Online Test helps recruiters and hiring managers identify qualified candidates from a pool of resumes, and helps in taking objective hiring decisions. It reduces the administrative overhead of interviewing too many candidates and saves time by filtering out unqualified candidates at the first step of the hiring process.

The test screens for the following skills that hiring managers look for in candidates:

  • 精通COBOL编程语言
  • 对IBM DB2数据库的强烈了解
  • 具有写作和执行IBM JCL脚本的经验
  • VSAM文件组织的知识
  • 熟悉CICS(客户信息控制系统)
  • 了解IMS(信息管理系统)
  • 能够用汇编语言进行编码
  • RPG的能力(报告程序生成器)
  • PL/I的工作知识(编程语言一)
  • 熟练TSO(时间共享选项)
  • 使用ISPF(交互式系统生产力设施)的能力
Reason #2

No trick questions

no trick questions

Traditional assessment tools use trick questions and puzzles for the screening, which creates a lot of frustration among candidates about having to go through irrelevant screening assessments.

View sample questions

The main reason we started Adaface is that traditional pre-employment assessment platforms are not a fair way for companies to evaluate candidates. At Adaface, our mission is to help companies find great candidates by assessing on-the-job skills required for a role.

Why we started Adaface
Try practice test
Reason #3

Non-googleable questions

We have a very high focus on the quality of questions that test for on-the-job skills. Every question is non-googleable and we have a very high bar for the level of subject matter experts we onboard to create these questions. We have crawlers to check if any of the questions are leaked online. If/ when a question gets leaked, we get an alert. We change the question for you & let you know.

How we design questions

这些只是我们库中有10,000多个问题的一个小样本。关于此的实际问题 IBM大型机测试 将是不可行的.

🧐 Question

Medium

Decision Control
Arithmetic Operations
Decision Structures
Data Types
Try practice test
Consider the following COBOL program:
 image
What will the program display when it is executed?

Medium

Multi Dimensional Arrays
Arrays
Data Processing
Subroutines
Try practice test
Consider the following pseudocode snippet in COBOL:
 image
After executing this program, what will be the final state of StrArr?

Medium

VSAM File Processing in COBOL
VSAM
File Handling
Try practice test
Consider the following COBOL code snippet. The program aims to read from a VSAM Key-Sequenced Data Set (KSDS) named 'CUSTOMER-FILE' which contains customer records. The program reads the file in ascending order by 'CUSTOMER-ID', performs some processing (not shown here), and then displays the 'CUSTOMER-NAME' of the last record read.
 image
Assuming there are no syntax errors and the 'CUSTOMER-FILE' is present and accessible, what will the program display as the last customer's name after executing this COBOL program?
A: The program will display the name of the customer with the highest 'CUSTOMER-ID'.
B: The program will display the name of the customer with the lowest 'CUSTOMER-ID'.
C: The program will not display any customer name.
D: The program will display the name of the first customer in the 'CUSTOMER-FILE'.
E: The program will display an uninitialized or random 'LAST-NAME'.

Medium

Database Performance Tuning and Data Consistency
Database Performance Tuning
Transaction Management
Locking Mechanisms
Try practice test
Consider the following DB2 database scenario. You are managing a stock trading platform that uses a DB2 database to track user transactions and market prices. The database has two tables, Users and Stocks.
 image
A user transaction to buy a stock is a two-step process:

1. Decrease the user's balance in the Users table.
2. Increase the quantity of the stock owned by the user in the Stocks table.

Both these steps need to be performed atomically to maintain data consistency.

Recently, with the increase in the volume of transactions, you are experiencing performance issues. Additionally, you have observed that during peak trading hours, a large number of user transactions are getting blocked, leading to user dissatisfaction.

Which of the following strategies would BEST address the performance and blocking issues, while ensuring data consistency?
A: Implement an optimistic concurrency control mechanism.
B: Reduce the transaction isolation level to READ UNCOMMITTED.
C: Break the transaction into two separate transactions
D: Increase the database's buffer pool size.
E: Implement row-level locking.

Medium

DB2 Isolation Levels and Data Consistency Revisited
Transactions
Isolation Levels
Data Consistency
Try practice test
Consider two users executing the following transactions concurrently on DB2:

Transaction 1 (User A):
 image
Transaction 2 (User B):
 image
Table1 has thousands of records, and the value 'Value1' for Column1 is not unique in Table1. Both transactions are executed almost simultaneously with Transaction 2 executed a bit earlier. Considering the isolation levels set for the transactions, which of the following is the potential data inconsistency issue that might arise?
A: A deadlock situation may occur.
B: Transaction 1 will wait indefinitely for Transaction 2 to commit.
C: Both transactions might update the same record leading to a lost update.
D: Transaction 1 can experience a dirty read due to the changes made by Transaction 2.

Medium

Optimizing Query Performance
Indexing
Query Optimization
Try practice test
You are managing a DB2 database which includes a table named `ORDERS`. The `ORDERS` table has a large volume of data and contains the following columns: `OrderID`, `CustomerID`, `OrderDate`, `ProductID`, `Quantity`. 

One of the frequently executed queries on the `ORDERS` table is:
 image
You are asked to optimize this query without changing its structure or the table schema. Which of the following strategies would MOST likely improve the performance of this query?
A: Create a HASH index on `CustomerID` and `OrderDate`.
B: Create a CLUSTERED index on `CustomerID` and `OrderDate`.
C: Create a NONCLUSTERED index on `CustomerID` and `OrderDate`.
D: Create a CLUSTERED index on `OrderID`.
E: Create a NONCLUSTERED index on `OrderID`.

Medium

Transaction Handling and Error Recovery in DB2
SQL Programming
Transactions
Error Handling
Try practice test
Consider the following pseudocode in an IBM DB2 environment:
 image
This stored procedure is used to update the inventory of a particular item. If the `NewQuantity` input parameter is negative, the procedure signals an exception. There's also a handler declared for exceptions, which logs an error message.

Given this scenario, if an error occurs during the UPDATE statement, which of the following will happen?
A: The update operation will fail, an error message will be logged, and the quantity in the inventory will remain unchanged.
B: The update operation will succeed, no error message will be logged, and the quantity in the inventory will be updated.
C: The update operation will fail, an error message will be logged, but the quantity in the inventory will still be updated.
D: The update operation will fail, no error message will be logged, and the quantity in the inventory will remain unchanged.
E: The update operation will succeed, an error message will be logged, but the quantity in the inventory will still be updated.

Medium

Disposition Parameters
JCL Syntax
Dataset Management
Try practice test
Consider the following JCL snippet:
 image
In MYJOB, PROG1 in STEP1 uses the dataset MY.DS.INPUT with a disposition of (OLD,DELETE,KEEP). PROG2 in STEP2 also uses the dataset MY.DS.INPUT with a disposition of (NEW,PASS,DELETE).

Assume that STEP1 executed successfully, but STEP2 failed during its execution. What would be the status of the dataset MY.DS.INPUT after the job MYJOB is run?
A: MY.DS.INPUT will be deleted.
B: MY.DS.INPUT will be kept and can be used by other jobs.
C: MY.DS.INPUT will be newly created.
D: MY.DS.INPUT will be available for the duration of the job, then deleted.
E: MY.DS.INPUT status cannot be determined with the provided information.

Medium

Execution Order and Return Codes
Job Control
Execution Order
Return Codes
Try practice test
Consider a JCL job that needs to execute five steps: STEP01, STEP02, STEP03, STEP04, and STEP05. The steps represent data initialization, data processing, data validation, error handling, and job finalization respectively.

The execution rules are as follows:

1. The job should always start with STEP01.
2. STEP02 should only execute if STEP01 completes successfully with a return code (RC) of 0.
3. STEP03 should always run after STEP02, irrespective of STEP02's return code.
4. STEP04 should only execute if either STEP02 or STEP03 fails, i.e., return a code not equal to 0.
5. STEP05 should always be the last step, and should only execute if all the previous steps were successful (each returning a code of 0).

Given these rules, how would you design the JCL job using the IF/THEN/ELSE/ENDIF construct?
 image
🧐 Question🔧 Skill

Medium

Decision Control
Arithmetic Operations
Decision Structures
Data Types

2 mins

COBOL
Try practice test

Medium

Multi Dimensional Arrays
Arrays
Data Processing
Subroutines

2 mins

COBOL
Try practice test

Medium

VSAM File Processing in COBOL
VSAM
File Handling

2 mins

COBOL
Try practice test

Medium

Database Performance Tuning and Data Consistency
Database Performance Tuning
Transaction Management
Locking Mechanisms

3 mins

IBM DB2
Try practice test

Medium

DB2 Isolation Levels and Data Consistency Revisited
Transactions
Isolation Levels
Data Consistency

2 mins

IBM DB2
Try practice test

Medium

Optimizing Query Performance
Indexing
Query Optimization

2 mins

IBM DB2
Try practice test

Medium

Transaction Handling and Error Recovery in DB2
SQL Programming
Transactions
Error Handling

3 mins

IBM DB2
Try practice test

Medium

Disposition Parameters
JCL Syntax
Dataset Management

2 mins

IBM JCL
Try practice test

Medium

Execution Order and Return Codes
Job Control
Execution Order
Return Codes

2 mins

IBM JCL
Try practice test
🧐 Question🔧 Skill💪 Difficulty⌛ Time
Decision Control
Arithmetic Operations
Decision Structures
Data Types
COBOL
Medium2 mins
Try practice test
Multi Dimensional Arrays
Arrays
Data Processing
Subroutines
COBOL
Medium2 mins
Try practice test
VSAM File Processing in COBOL
VSAM
File Handling
COBOL
Medium2 mins
Try practice test
Database Performance Tuning and Data Consistency
Database Performance Tuning
Transaction Management
Locking Mechanisms
IBM DB2
Medium3 mins
Try practice test
DB2 Isolation Levels and Data Consistency Revisited
Transactions
Isolation Levels
Data Consistency
IBM DB2
Medium2 mins
Try practice test
Optimizing Query Performance
Indexing
Query Optimization
IBM DB2
Medium2 mins
Try practice test
Transaction Handling and Error Recovery in DB2
SQL Programming
Transactions
Error Handling
IBM DB2
Medium3 mins
Try practice test
Disposition Parameters
JCL Syntax
Dataset Management
IBM JCL
Medium2 mins
Try practice test
Execution Order and Return Codes
Job Control
Execution Order
Return Codes
IBM JCL
Medium2 mins
Try practice test
Reason #4

1200+ customers in 75 countries

customers in 75 countries
Brandon

借助 Adaface,我们能够将初步筛选流程优化高达 75% 以上,为招聘经理和我们的人才招聘团队节省了宝贵的时间!


Brandon Lee, 人事主管, Love, Bonito

Try practice test
Reason #5

Designed for elimination, not selection

The most important thing while implementing the pre-employment IBM大型机测试 in your hiring process is that it is an elimination tool, not a selection tool. In other words: you want to use the test to eliminate the candidates who do poorly on the test, not to select the candidates who come out at the top. While they are super valuable, pre-employment tests do not paint the entire picture of a candidate’s abilities, knowledge, and motivations. Multiple easy questions are more predictive of a candidate's ability than fewer hard questions. Harder questions are often "trick" based questions, which do not provide any meaningful signal about the candidate's skillset.

Science behind Adaface tests
Reason #6

1 click candidate invites

Email invites: You can send candidates an email invite to the IBM大型机测试 from your dashboard by entering their email address.

Public link: You can create a public link for each test that you can share with candidates.

API or integrations: You can invite candidates directly from your ATS by using our pre-built integrations with popular ATS systems or building a custom integration with your in-house ATS.

invite candidates
Reason #7

Detailed scorecards & benchmarks

查看样本记分卡
Try practice test
Reason #8

High completion rate

Adaface tests are conversational, low-stress, and take just 25-40 mins to complete.

This is why Adaface has the highest test-completion rate (86%), which is more than 2x better than traditional assessments.

test completion rate
Reason #9

Advanced Proctoring


Learn more

About the IBM Mainframe Assessment Test

Why you should use Pre-employment IBM Mainframe Online Test?

The IBM大型机测试 makes use of scenario-based questions to test for on-the-job skills as opposed to theoretical knowledge, ensuring that candidates who do well on this screening test have the relavant skills. The questions are designed to covered following on-the-job aspects:

  • COBOL编程知识
  • 能够编写和理解JCL语句
  • 熟悉VSAM文件处理
  • 理解DB2概念和SQL查询
  • 了解CICS交易处理
  • 了解IMS分层数据库
  • 熟悉汇编语言和编码
  • 熟练RPG编程语言
  • 能够编写和执行PL/I程序
  • TSO命令和实用程序的知识

Once the test is sent to a candidate, the candidate receives a link in email to take the test. For each candidate, you will receive a detailed report with skills breakdown and benchmarks to shortlist the top candidates from your pool.

What topics are covered in the IBM Mainframe Online Test?

  • vsam

    vsam或虚拟存储访问方法是IBM Mainframes中使用的文件管理系统。它通过索引顺序访问方法有效地访问了大量数据。在此评估中测试VSAM技能至关重要,因为它通常用于在大型机应用程序中存储和检索数据。 VSAM的熟练程度对涉及数据管理和大型机环境中的处理的工作角色是有益的。

  • db2

    db2是为IBM大型机器设计的关系数据库管理系统(RDBMS)。它提供了一个可靠,可扩展的平台来存储,查询和操纵数据。在此测试中测量DB2技能很重要,因为它在大型机环境中广泛用于管理数据库和执行复杂的数据操作。 DB2的熟练程度对于涉及大型机系统中数据库管理和开发的工作角色很有价值。

  • CICS

    CICS或客户信息控制系统是一家交易服务器,是一家启用在线交易中的交易服务器大型机环境。它提供了一个平台,用于开发和执行大规模的关键任务业务应用程序。评估本评估中的CICS技能至关重要,因为这对于涉及在线交易处理以及创建可扩展和可靠的大型机应用程序的工作角色至关重要。

  • IMS </h4>

    ims或信息管理系统是IBM大型机上使用的分层数据库管理系统。它提供了一个可靠的平台,用于管理和访问大量的结构化和非结构化数据。在此评估中测试IMS技能非常重要,因为它广泛用于大型机环境中,尤其是在金融,电信和医疗保健等行业中。 IMS的熟练程度对于涉及大型机系统中的数据库管理和应用程序开发的工作角色很有价值。

  • 汇编器

    汇编器是一种低级编程语言,用于开发和控制计算机硬件和软件接口。它允许程序员直接访问和操纵机器级指令。在此测试中包括汇编技能至关重要,因为它仍在某些大型机环境中用于绩效至关重要的任务和硬件交互。精通汇编器对大型机系统中涉及优化,调试和低级编程的工作角色是有益的。

  • rpg

    rpg或报告程序生成器是高级编程IBM大型机上用于业务应用程序的语言。它经过优化,用于处理大量数据和生成报告。在此测试中测量RPG技能很重要,因为它仍然用于许多旧的大型机系统中,尤其是在银行和保险等行业中。熟练RPG对于涉及大型机环境中业务应用程序开发和维护的工作角色很有价值。

  • pl/i

    pl/i或编程语言One是一种高级编程为科学,工程,业务和系统编程设计的语言。它结合了不同编程语言的功能,并支持程序和面向对象的编程范例。在此评估中测试PL/I技能非常有价值,因为它在大型机环境中用于开发复杂和关键的应用程序。熟练掌握PL/I对涉及系统编程,科学分析和大规模应用程序开发的工作角色有益。

  • tso </h4>

    tso或时间共享选项,是互动命令 - IBM大型机提供的线接口。它允许用户与大型机操作系统进行交互,执行命令并执行各种系统操作。测量此测试中的TSO技能非常重要,因为它对于导航和管理大型机环境(包括文件系统访问,工作控制和系统监控)至关重要。 TSO的熟练程度对于涉及大型机操作和系统管理的工作角色很有价值。

  • ispf

    iSPF或交互式系统生产力设施,是IBM为大型机环境提供的软件包。它提供了可自定义的交互式界面,用于管理文件,编辑程序和执行各种开发和管理任务。在此测试中包括ISPF技能很重要,因为它被广泛用于大型机环境中的日常操作。 ISPF的熟练程度对涉及计划开发,系统维护以及与大型机资源互动的工作角色有益。

  • Full list of covered topics

    The actual topics of the questions in the final test will depend on your job description and requirements. However, here's a list of topics you can expect the questions for IBM大型机测试 to be based on.

    COBOL语法
    COBOL中的数据类型
    COBOL中的条件陈述
    在COBOL中循环
    子程序和程序
    COBOL文件处理
    COBOL中的错误处理
    DB2 SQL查询
    DB2表创建和管理
    DB2索引
    DB2存储程序
    使用JCL语句
    JCL实用程序
    JCL职位控制语句
    了解VSAM数据集
    VSAM文件处理操作
    CICS基本概念
    CICS交易和计划
    IMS数据库概念
    IMS程序结构
    汇编指令
    汇编程序搬迁
    RPG编程概念
    RPG数据结构
    PL/I变量声明
    PL/I弦操作
    TSO命令
    ISPF面板
    在批处理模式下使用TSO
    处理ISPF数据集
Try practice test

What roles can I use the IBM Mainframe Online Test for?

  • 大型机开发人员
  • 大型机程序员
  • 大型机系统分析师
  • 大型机操作分析师
  • 大型机管理员

How is the IBM Mainframe Online Test customized for senior candidates?

For intermediate/ experienced candidates, we customize the assessment questions to include advanced topics and increase the difficulty level of the questions. This might include adding questions on topics like

  • 理解ISPF面板和对话经理
  • 大型机批处理处理的经验
  • 能够编写和调试COBOL-DB2程序
  • 熟练COBOL-IMS编程
  • 知识JCL实用程序和程序
  • 熟悉VSAM访问方法和控制区域
  • 有CICS系统编程的经验
  • 了解IMS数据库管理
  • 精通汇编器宏和数据表示
  • 能够编写和调试RPG-ile程序
  • PL/I数据结构和声明的知识
Singapore government logo

招聘经理认为,通过小组面试中提出的技术问题,他们能够判断哪些候选人得分更高,并与得分较差的候选人区分开来。他们是 非常满意 通过 Adaface 筛选入围的候选人的质量。


85%
减少筛查时间

IBM Mainframe Hiring Test 常见问题解答

我可以将多个技能结合在一起,为一个自定义评估吗?

是的,一点没错。自定义评估是根据您的职位描述进行的,并将包括有关您指定的所有必备技能的问题。

您是否有任何反交换或策略功能?

我们具有以下反交易功能:

  • 不可解决的问题
  • IP策略
  • Web Protoring
  • 网络摄像头Proctoring
  • 窃检测
  • 安全浏览器

阅读有关[Proctoring功能](https://www.adaface.com/proctoring)的更多信息。

如何解释考试成绩?

要记住的主要问题是评估是消除工具,而不是选择工具。优化了技能评估,以帮助您消除在技术上没有资格担任该角色的候选人,它没有进行优化以帮助您找到该角色的最佳候选人。因此,使用评估的理想方法是确定阈值分数(通常为55%,我们为您提供基准测试),并邀请所有在下一轮面试中得分高于门槛的候选人。

我可以使用该测试的经验水平?

每个ADAFACE评估都是为您的职位描述/理想候选角色定制的(我们的主题专家将从我们的10000多个问题的图书馆中选择正确的问题)。可以为任何经验级别定制此评估。

每个候选人都会得到同样的问题吗?

是的,这使您比较候选人变得容易得多。 MCQ问题的选项和问题顺序是随机的。我们有[抗欺骗/策略](https://www.adaface.com/proctoring)功能。在我们的企业计划中,我们还可以选择使用类似难度级别的问题创建多个版本的相同评估。

我是候选人。我可以尝试练习测试吗?

不,不幸的是,我们目前不支持实践测试。但是,您可以使用我们的[示例问题](https://www.adaface.com/questions)进行练习。

使用此测试的成本是多少?

您可以查看我们的[定价计划](https://www.adaface.com/pricing/)。

我可以免费试用吗?

我刚刚搬到了一个付费计划。我如何要求自定义评估?

customers across world
Join 1200+ companies in 75+ countries.
立即尝试最候选的友好技能评估工具。
g2 badges
Ready to use the Adaface IBM大型机测试?
Ready to use the Adaface IBM大型机测试?
logo
40 min tests.
No trick questions.
Accurate shortlisting.
术语 隐私 信任指南

🌎选择您的语言

English Norsk Dansk Deutsche Nederlands Svenska Français Español Chinese (简体中文) Italiano Japanese (日本語) Polskie Português Russian (русский)
ada
Ada
● Online
✖️