Search test library by skills or roles
⌘ K

About the test:

O teste on-line do mainframe usa o MCQS baseado em cenário para avaliar os candidatos em seu conhecimento das tecnologias de mainframe, incluindo a linguagem de programação COBOL, JCL, VSAM, CICS e DB2. O teste tem como objetivo avaliar a capacidade de um candidato de projetar e desenvolver aplicativos de mainframe que aderem aos padrões e práticas recomendadas do setor de maneira eficaz.

Covered skills:

  • COBOL
  • Vsam
  • CICS
  • Assembler
  • Pl/i
  • ISPF
  • Jcl
  • Db2
  • IMS
  • RPG
  • TSO

9 reasons why
9 reasons why

Adaface IBM Mainframe Test is the most accurate way to shortlist Desenvolvedor de mainframes



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:

  • Proficiente na linguagem de programação COBOL
  • Forte entendimento do banco de dados IBM DB2
  • Experiência em escrever e executar scripts da IBM JCL
  • Conhecimento da organização de arquivos VSAM
  • Familiaridade com o CICS (sistema de controle de informações do cliente)
  • Compreensão do IMS (sistema de gerenciamento de informações)
  • Capacidade de codificar na linguagem de assembler
  • Competência no RPG (gerador de programas de relatório)
  • Conhecimento prático de pl/i (linguagem de programação um)
  • Proficiência na TSO (opção de compartilhamento de tempo)
  • Capacidade de usar o ISPF (instalação de produtividade do sistema interativo)
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
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

Estes são apenas uma pequena amostra da nossa biblioteca de mais de 10.000 perguntas. As perguntas reais sobre isso Teste de mainframe da IBM será não-googleable.

🧐 Question

Medium

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

Medium

Multi Dimensional Arrays
Arrays
Data Processing
Subroutines
Solve
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
Solve
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
Solve
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
Solve
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
Solve
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
Solve
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
Solve
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
Solve
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
Solve

Medium

Multi Dimensional Arrays
Arrays
Data Processing
Subroutines

2 mins

COBOL
Solve

Medium

VSAM File Processing in COBOL
VSAM
File Handling

2 mins

COBOL
Solve

Medium

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

3 mins

IBM DB2
Solve

Medium

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

2 mins

IBM DB2
Solve

Medium

Optimizing Query Performance
Indexing
Query Optimization

2 mins

IBM DB2
Solve

Medium

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

3 mins

IBM DB2
Solve

Medium

Disposition Parameters
JCL Syntax
Dataset Management

2 mins

IBM JCL
Solve

Medium

Execution Order and Return Codes
Job Control
Execution Order
Return Codes

2 mins

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

1200+ customers in 75 countries

customers in 75 countries
Brandon

Com o Adaface, conseguimos otimizar nosso processo de seleção inicial em mais de 75%, liberando um tempo precioso tanto para os gerentes de contratação quanto para nossa equipe de aquisição de talentos!


Brandon Lee, Chefe de Pessoas, Love, Bonito

Reason #5

Designed for elimination, not selection

The most important thing while implementing the pre-employment Teste de mainframe da 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 Teste de mainframe da 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

Ver Scorecard de amostra
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 Teste de mainframe da 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:

  • Conhecimento de programação de COBOL
  • Capacidade de escrever e entender declarações JCL
  • Familiaridade com o manuseio de arquivos VSAM
  • Compreensão dos conceitos DB2 e consultas SQL
  • Conhecimento do processamento de transações CICS
  • Compreensão do banco de dados hierárquico do IMS
  • Familiaridade com a linguagem e codificação do assembler
  • Proficiência na linguagem de programação de RPG
  • Capacidade de escrever e executar programas PL/I
  • Conhecimento dos comandos e utilitários do 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?

  • jcl </h4> <P > JCL, ou linguagem de controle de trabalho, é uma linguagem de script usada para definir e controlar trabalhos em um ambiente de mainframe IBM. É essencial medir as habilidades JCL neste teste, pois é fundamental para gerenciar e executar processos de lote, definir conjuntos de dados e interagir com outros componentes de mainframe. Ter experiência em JCL garante a execução de emprego suave e eficiente em um ambiente de mainframe. Ele fornece acesso eficiente a grandes volumes de dados através de métodos de acesso seqüencial indexados. Testar as habilidades VSAM nessa avaliação é crucial, pois é comumente usado para armazenar e recuperar dados em aplicativos de mainframe. A proficiência no VSAM é benéfica para as funções de trabalho que envolvem gerenciamento e processamento de dados em ambientes de mainframe. Ele fornece uma plataforma robusta e escalável para armazenar, consultar e manipular dados. Medir as habilidades do DB2 neste teste é importante, pois é amplamente utilizado em ambientes de mainframe para gerenciar bancos de dados e executar operações de dados complexas. A proficiência no DB2 é valiosa para funções de trabalho envolvendo administração e desenvolvimento de bancos de dados em sistemas de mainframe. ambientes de mainframe. Ele fornece uma plataforma para desenvolver e executar aplicativos de negócios em larga escala e crítica. Avaliar as habilidades do CICS nesta avaliação é crucial, pois é essencial para as funções de trabalho que envolvem o processamento de transações on -line e a criação de aplicativos de mainframe escaláveis ​​e confiáveis. </p> <h4> IMS

    IMS, ou sistema de gerenciamento de informações, é é Um sistema de gerenciamento hierárquico de banco de dados usado nos mainframes IBM. Ele fornece uma plataforma robusta para gerenciar e acessar grandes quantidades de dados estruturados e não estruturados. Testar as habilidades do IMS nessa avaliação é importante, pois é amplamente utilizado em ambientes de mainframe, particularmente em indústrias como finanças, telecomunicações e assistência médica. A proficiência no IMS é valiosa para funções de trabalho envolvendo gerenciamento de banco de dados e desenvolvimento de aplicativos em sistemas de mainframe. interfaces. Ele permite que os programadores acessem diretamente e manipulem as instruções no nível da máquina. A inclusão de habilidades de montador neste teste é crucial, pois ainda é usada em determinados ambientes de mainframe para tarefas críticas de desempenho e interações de hardware. A proficiência no assembler é benéfica para funções de trabalho que envolvem otimização, depuração e programação de baixo nível em sistemas de mainframe. Idioma usado para aplicativos de negócios em mainframes IBM. É otimizado para processar grandes volumes de dados e gerar relatórios. Medir as habilidades de RPG nesse teste é importante, pois ainda é usado em muitos sistemas de mainframe herdados, principalmente em indústrias como bancos e seguros. A proficiência no RPG é valiosa para funções de trabalho envolvendo o desenvolvimento e manutenção de aplicativos de negócios em ambientes de mainframe. Idioma projetado para programação científica, de engenharia, negócios e sistemas. Ele combina recursos de diferentes linguagens de programação e suporta paradigmas de programação processual e orientada a objetos. Testar as habilidades PL/I nesta avaliação é valioso, pois é usado em ambientes de mainframe para o desenvolvimento de aplicativos complexos e críticos. A proficiência em PL/I é benéfica para funções de trabalho envolvendo programação de sistemas, análise científica e desenvolvimento de aplicativos em larga escala. -Line Interface fornecida pelos mainframes IBM. Ele permite que os usuários interajam com o sistema operacional de mainframe, executem comandos e executem várias operações do sistema. Medir as habilidades do TSO neste teste é importante, pois é fundamental para navegar e gerenciar ambientes de mainframe, incluindo acesso ao sistema de arquivos, controle de trabalho e monitoramento do sistema. A proficiência no TSO é valiosa para as funções de trabalho que envolvem operações de mainframe e administração do sistema. Ele fornece uma interface personalizável e interativa para gerenciar arquivos, edição de programas e executar várias tarefas administrativas e de desenvolvimento. A inclusão de habilidades ISPF neste teste é importante, pois é amplamente utilizada para operações diárias em ambientes de mainframe. A proficiência no ISPF é benéfica para funções de trabalho envolvendo desenvolvimento de programas, manutenção do sistema e interação com os recursos de mainframe.

  • 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 Teste de mainframe da IBM to be based on.

    Sintaxe de COBOL
    Tipos de dados em COBOL
    Declarações condicionais em COBOL
    Looping em COBOL
    Subprogramas e procedimentos
    Manipulação de arquivos COBOL
    Manipulação de erros em COBOL
    DB2 SQL Consultas
    Criação e gerenciamento de tabela DB2
    Índices DB2
    Procedimentos armazenados do DB2
    Trabalhando com declarações JCL
    Programas de utilidade JCL
    Declarações de controle de emprego JCL
    Compreendendo os conjuntos de dados VSAM
    VSAM Operações de manuseio de arquivos
    Conceitos básicos do CICS
    Transações e programas do CICS
    Conceitos de banco de dados IMS
    Estruturas do programa IMS
    Instruções de montador
    Realocação do programa de assembler
    Conceitos de programação de RPG
    Estruturas de dados de RPG
    PL/I Declarações variáveis
    Manipulação de strings/i string
    Comandos TSO
    Painéis ISPF
    Usando TSO no modo em lote
    Manipulação de conjuntos de dados ISPF

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

  • Desenvolvedor de mainframe
  • Programador de mainframe
  • Analista de sistemas de mainframe
  • Analista de operações de mainframe
  • Administrador de mainframe

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

  • Compreensão do painel ISPF e gerente de diálogo
  • Experiência com processamento de lote de mainframe
  • Capacidade de escrever e depurar programas COBOL-DB2
  • Proficiência na programação COBOL-IMS
  • Conhecimento dos utilitários e procedimentos da JCL
  • Familiaridade com os métodos de acesso ao VSAM e áreas de controle
  • Experiência com programação do sistema CICS
  • Compreensão da administração de banco de dados IMS
  • Proficiência em macros e representação de dados do Assembler
  • Capacidade de escrever e depurar programas RPG-il
  • Conhecimento de estruturas de dados PL/I
Singapore government logo

Os gerentes de contratação sentiram que, por meio das perguntas técnicas feitas durante as entrevistas do painel, foram capazes de dizer quais candidatos tiveram melhores pontuações e diferenciaram aqueles que não tiveram pontuações tão boas. Eles são altamente satisfeito com a qualidade dos candidatos selecionados na triagem Adaface.


85%
Redução no tempo de triagem

IBM Mainframe Hiring Test Perguntas frequentes

Posso combinar várias habilidades em uma avaliação personalizada?

Sim absolutamente. As avaliações personalizadas são configuradas com base na descrição do seu trabalho e incluirão perguntas sobre todas as habilidades obrigatórias que você especificar.

Você tem algum recurso anti-trapaça ou procurador?

Temos os seguintes recursos anti-trapaça:

  • Perguntas não-goleadas
  • IP Proctoring
  • Web Proctoring
  • Proctoring da webcam
  • Detecção de plágio
  • navegador seguro

Leia mais sobre os Recursos de Proctoring.

Como interpreto as pontuações dos testes?

O principal a ter em mente é que uma avaliação é uma ferramenta de eliminação, não uma ferramenta de seleção. Uma avaliação de habilidades é otimizada para ajudá -lo a eliminar os candidatos que não são tecnicamente qualificados para o papel, não é otimizado para ajudá -lo a encontrar o melhor candidato para o papel. Portanto, a maneira ideal de usar uma avaliação é decidir uma pontuação limite (normalmente 55%, ajudamos você a comparar) e convidar todos os candidatos que pontuam acima do limiar para as próximas rodadas da entrevista.

Para que nível de experiência posso usar este teste?

Cada avaliação do Adaface é personalizada para a descrição do seu trabalho/ persona do candidato ideal (nossos especialistas no assunto escolherão as perguntas certas para sua avaliação de nossa biblioteca de mais de 10000 perguntas). Esta avaliação pode ser personalizada para qualquer nível de experiência.

Todo candidato recebe as mesmas perguntas?

Sim, facilita muito a comparação de candidatos. As opções para perguntas do MCQ e a ordem das perguntas são randomizadas. Recursos anti-traking/proctoring no local. Em nosso plano corporativo, também temos a opção de criar várias versões da mesma avaliação com questões de níveis de dificuldade semelhantes.

Eu sou um candidato. Posso tentar um teste de prática?

Não. Infelizmente, não apoiamos os testes práticos no momento. No entanto, você pode usar nossas perguntas de amostra para prática.

Qual é o custo de usar este teste?

Você pode conferir nossos planos de preços.

Posso obter uma avaliação gratuita?

Sim, você pode se inscrever gratuitamente e visualizar este teste.

Acabei de me mudar para um plano pago. Como posso solicitar uma avaliação personalizada?

Aqui está um guia rápido sobre Como solicitar uma avaliação personalizada no Adaface.

customers across world
Join 1200+ companies in 75+ countries.
Experimente a ferramenta de avaliação de habilidades mais amigáveis ​​de candidatos hoje.
g2 badges
Ready to use the Adaface Teste de mainframe da IBM?
Ready to use the Adaface Teste de mainframe da IBM?
Converse conosco
ada
Ada
● Online
Previous
Score: NA
Next
✖️