Search test library by skills or roles
⌘ K

About the test:

De Mainframe Online Test maakt gebruik van scenario-gebaseerde MCQ's om kandidaten te evalueren op hun kennis van mainframe-technologieën, waaronder COBOL-programmeertaal, JCL, VSAM, CICS en DB2. De test is bedoeld om het vermogen van een kandidaat te evalueren om mainframe -applicaties te ontwerpen en te ontwikkelen die zich aan de industriële normen en best practices effectief houden.

Covered skills:

  • Cobol
  • VSAM
  • CIC's
  • Assembler
  • PL/I
  • ISPF
  • JCL
  • DB2
  • IMS
  • RPG
  • TSO

Try practice test
9 reasons why
9 reasons why

Adaface IBM Mainframe Test is the most accurate way to shortlist Mainframe Developers



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:

  • Bekwaam in Cobol -programmeertaal
  • Sterk begrip van IBM DB2 -database
  • Ervaring met het schrijven en uitvoeren van IBM JCL -scripts
  • Kennis van VSAM -bestandsorganisatie
  • Bekendheid met CICS (klantinformatiecontrolesysteem)
  • Inzicht in IMS (informatiebeheersysteem)
  • Mogelijkheid om te coderen in de assembler -taal
  • Competentie in RPG (Report Program Generator)
  • Werkkennis van PL/I (programmeertaal een)
  • Vaardigheid in TSO (optie voor het delen van tijd)
  • Mogelijkheid om ISPF te gebruiken (productiviteitsfaciliteit voor interactieve systeem)
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

Dit zijn slechts een klein monster uit onze bibliotheek met meer dan 10.000 vragen. De werkelijke vragen hierover IBM mainframe -test zal niet-googelbaar zijn.

🧐 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

Met Adaface konden we ons eerste screeningproces met ruim 75% optimaliseren, waardoor kostbare tijd vrijkwam voor zowel de rekruteringsmanagers als ons talentacquisitieteam!


Brandon Lee, Hoofd Mensen, Love, Bonito

Try practice test
Reason #5

Designed for elimination, not selection

The most important thing while implementing the pre-employment IBM mainframe -test 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 mainframe -test 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

Reason #7

Detailed scorecards & benchmarks

Along with scorecards that report the performance of the candidate in detail, you also receive a comparative analysis against the company average and industry standards.

View sample scorecard
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 mainframe -test 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 -programmeerkennis
  • Mogelijkheid om JCL -verklaringen te schrijven en te begrijpen
  • Bekendheid met VSAM -bestandsbehandeling
  • Inzicht in DB2 -concepten en SQL -vragen
  • Kennis van CICS -transactieverwerking
  • Inzicht in IMS -hiërarchische database
  • Bekendheid met assembler taal en codering
  • Vaardigheid in RPG -programmeertaal
  • Mogelijkheid om PL/I -programma's te schrijven en uit te voeren
  • Kennis van TSO -commando's en hulpprogramma's

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, of talen voor werkbeheersing, is een scripttaal die wordt gebruikt om banen te definiëren en te beheersen in een IBM -mainframe -omgeving. Het is essentieel om JCL -vaardigheden in deze test te meten, omdat het van cruciaal belang is voor het beheren en uitvoeren van batchprocessen, het definiëren van gegevenssets en interactie met andere mainframe -componenten. Het hebben van expertise in JCL zorgt voor soepele en efficiënte uitvoering van taken in een mainframe -omgeving. </p> <h4> vsam

    VSAM of virtuele opslagtoegangsmethode, is een bestandsbeheersysteem dat wordt gebruikt in IBM Mainframes. Het biedt efficiënte toegang tot grote hoeveelheden gegevens via geïndexeerde sequentiële toegangsmethoden. Het testen van VSAM -vaardigheden in deze beoordeling is cruciaal omdat het vaak wordt gebruikt voor het opslaan en ophalen van gegevens in mainframe -toepassingen. Vaardigheid in VSAM is gunstig voor functies met gegevensbeheer en -verwerking in mainframe -omgevingen.

  • db2

    DB2 is een relationeel databasebeheersysteem (RDBMS) ontworpen voor IBM Mainframes. Het biedt een robuust en schaalbaar platform om gegevens op te slaan, te vragen en te manipuleren. Het meten van DB2 -vaardigheden in deze test is belangrijk, omdat het veel wordt gebruikt in mainframe -omgevingen voor het beheren van databases en het uitvoeren van complexe gegevensbewerkingen. Vaardigheid in DB2 is waardevol voor functies met databasebeheer en ontwikkeling in mainframe -systemen.

  • CICS

    CIC's of klantinformatiecontrolesysteem, is een transactieserver die online transactieverwerking mogelijk maakt in mainframe -omgevingen. Het biedt een platform voor het ontwikkelen en uitvoeren van grootschalige, missiekritieke zakelijke applicaties. Het evalueren van CICS -vaardigheden in deze beoordeling is cruciaal omdat het essentieel is voor functies met online transactieverwerking en het creëren van schaalbare en betrouwbare mainframe -applicaties.

  • ims

    IMS of informatiebeheersysteem, is Een hiërarchisch databasebeheersysteem dat wordt gebruikt op IBM Mainframes. Het biedt een robuust platform voor het beheer en toegang tot grote hoeveelheden gestructureerde en ongestructureerde gegevens. Het testen van IMS -vaardigheden in deze beoordeling is belangrijk omdat het veel wordt gebruikt in mainframe -omgevingen, met name in industrieën zoals financiën, telecommunicatie en gezondheidszorg. Vaardigheid in IMS is waardevol voor functies met databasebeheer en applicatieontwikkeling in mainframe-systemen.

  • Assembler

    Assembler is een programmeertaal op laag niveau die wordt gebruikt om computerhardware en software te ontwikkelen en te beheersen interfaces. Hiermee kunnen programmeurs instructies op machinaalniveau direct toegang hebben en manipuleren. Het opnemen van assembler-vaardigheden in deze test is cruciaal omdat het nog steeds wordt gebruikt in bepaalde mainframe-omgevingen voor prestatiekritische taken en hardware-interacties. Vaardigheid in Assembler is gunstig voor functies met optimalisatie, foutopsporing en programmering op laag niveau in mainframesystemen.

  • rpg

    RPG, of rapportprogramma-generator, is een programmering op hoog niveau, Taal gebruikt voor zakelijke applicaties op IBM Mainframes. Het is geoptimaliseerd voor het verwerken van grote hoeveelheden gegevens en het genereren van rapporten. Het meten van RPG -vaardigheden in deze test is belangrijk omdat het nog steeds wordt gebruikt in veel legacy mainframe -systemen, met name in industrieën zoals bankieren en verzekeringen. Vaardigheid in RPG is waardevol voor functies met betrekking tot de ontwikkeling en onderhoud van zakelijke applicaties in mainframe-omgevingen.

  • PL/I

    PL/I, of programmeertaal, is een programmering op hoog niveau, Taal ontworpen voor wetenschappelijke, engineering-, zakelijke en systeemprogrammering. Het combineert kenmerken van verschillende programmeertalen en ondersteunt zowel procedurele als objectgeoriënteerde programmeerparadigma's. Het testen van PL/I -vaardigheden in deze beoordeling zijn waardevol omdat het wordt gebruikt in mainframe -omgevingen voor het ontwikkelen van complexe en kritieke toepassingen. Vaardigheid in PL/I is gunstig voor functies met systeemprogrammering, wetenschappelijke analyse en grootschalige applicatieontwikkeling.

  • tso

    TSO, of optie voor het delen van tijd, is een interactief commando -line interface geleverd door IBM Mainframes. Hiermee kunnen gebruikers communiceren met het Mainframe -besturingssysteem, commando's uitvoeren en verschillende systeembewerkingen uitvoeren. Het meten van TSO -vaardigheden in deze test is belangrijk omdat het van fundamenteel belang is voor het navigeren en beheren van mainframe -omgevingen, inclusief toegang tot bestandssystemen, taakbeheersing en systeembewaking. Vaardigheid in TSO is waardevol voor functies met betrekking tot mainframe -bewerkingen en systeembeheer.

  • ISPF

    ISPF, of interactieve systeemproductiviteitsfaciliteit, is een softwarepakket van IBM voor mainframe -omgevingen. Het biedt een aanpasbare en interactieve interface voor het beheren van bestanden, het bewerken van programma's en het uitvoeren van verschillende ontwikkelings- en administratieve taken. Het opnemen van ISPF-vaardigheden in deze test is belangrijk omdat het veel wordt gebruikt voor dagelijkse activiteiten in mainframe-omgevingen. Vaardigheid in ISPF is gunstig voor functies met betrekking tot programma's voor programma's, systeemonderhoud en interactie met mainframe -bronnen.

  • 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 mainframe -test to be based on.

    Cobol Syntax
    Gegevenstypen in Cobol
    Voorwaardelijke uitspraken in Cobol
    Lusing in Cobol
    Subprogramma's en procedures
    COBOL -bestandsbehandeling
    Foutafhandeling in Cobol
    DB2 SQL -vragen
    DB2 TABLE CREATIE EN MANAGEMENT
    DB2 -indexen
    DB2 opgeslagen procedures
    Werken met JCL -verklaringen
    JCL -hulpprogramma's
    JCL Job Control -verklaringen
    Vsam -gegevenssets begrijpen
    VSAM -bewerkingen voor bestandsbehandeling
    CICS basisconcepten
    CICS -transacties en programma's
    IMS -databaseconcepten
    IMS -programmastructuren
    Assembler -instructies
    Verhuizing van de assembler -programma
    RPG -programmeerconcepten
    RPG -gegevensstructuren
    PL/I variabele verklaringen
    PL/I String -manipulatie
    TSO -opdrachten
    ISPF -panelen
    Gebruik TSO in batch -modus
    Hantering van ISPF -gegevenssets
Try practice test

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

  • Mainframe Developer
  • Mainframe programmeur
  • Mainframe Systems Analyst
  • Mainframe Operations Analyst
  • Mainframe beheerder

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

  • Inzicht in ISPF -paneel en dialoogbeheer
  • Ervaring met mainframe -batchverwerking
  • Mogelijkheid om COBOL-DB2-programma's te schrijven en op te lossen
  • Vaardigheid in COBOL-IMS programmeren
  • Kennis van JCL -hulpprogramma's en procedures
  • Bekendheid met VSAM -toegangsmethoden en besturingsgebieden
  • Ervaring met CICS -systeemprogrammering
  • Inzicht in IMS -database -administratie
  • Vaardigheid in assembler macro's en gegevensrepresentatie
  • Mogelijkheid om RPG-ILE-programma's te schrijven en op te lossen
  • Kennis van PL/I -gegevensstructuren en verklaringen
Singapore government logo

De rekruteringsmanagers waren van mening dat ze door de technische vragen die ze tijdens de panelgesprekken stelden, konden zien welke kandidaten beter scoorden, en onderscheidden ze zich met degenen die niet zo goed scoorden. Zij zijn zeer tevreden met de kwaliteit van de kandidaten op de shortlist van de Adaface-screening.


85%
Vermindering van de screeningstijd

IBM Mainframe Hiring Test Veelgestelde vragen

Kan ik meerdere vaardigheden combineren in één aangepaste beoordeling?

Ja absoluut. Aangepaste beoordelingen zijn opgezet op basis van uw functiebeschrijving en bevatten vragen over alle must-have vaardigheden die u opgeeft.

Heeft u functies tegen latere of proctoring op hun plaats?

We hebben de volgende anti-cheating-functies op zijn plaats:

  • Niet-googelbare vragen
  • IP Proctoring
  • Web Proctoring
  • Webcam Proctoring
  • Plagiaatdetectie
  • Beveilig browser

Lees meer over de Proctoring -functies.

Hoe interpreteer ik testscores?

Het belangrijkste om in gedachten te houden is dat een beoordeling een eliminatietool is, geen selectietool. Een vaardighedenbeoordeling is geoptimaliseerd om u te helpen kandidaten te elimineren die niet technisch gekwalificeerd zijn voor de rol, het is niet geoptimaliseerd om u te helpen de beste kandidaat voor de rol te vinden. Dus de ideale manier om een ​​beoordeling te gebruiken is om een ​​drempelscore te bepalen (meestal 55%, wij helpen u benchmark) en alle kandidaten uit te nodigen die boven de drempel scoren voor de volgende interviewrondes.

Voor welk ervaringsniveau kan ik deze test gebruiken?

Elke ADAFACE -beoordeling is aangepast aan uw functiebeschrijving/ ideale kandidaatpersonage (onze experts van het onderwerp zullen de juiste vragen kiezen voor uw beoordeling uit onze bibliotheek van 10000+ vragen). Deze beoordeling kan worden aangepast voor elk ervaringsniveau.

Krijgt elke kandidaat dezelfde vragen?

Ja, het maakt het veel gemakkelijker voor u om kandidaten te vergelijken. Opties voor MCQ -vragen en de volgorde van vragen worden gerandomiseerd. We hebben anti-cheating/proctoring functies. In ons bedrijfsplan hebben we ook de optie om meerdere versies van dezelfde beoordeling te maken met vragen over vergelijkbare moeilijkheidsniveaus.

Ik ben een kandidaat. Kan ik een oefentest proberen?

Nee. Helaas ondersteunen we op dit moment geen oefentests. U kunt echter onze voorbeeldvragen gebruiken voor praktijk.

Wat zijn de kosten van het gebruik van deze test?

U kunt onze [prijsplannen] bekijken (https://www.adaface.com/pricing/).

Kan ik een gratis proefperiode krijgen?

Ja, u kunt gratis aanmelden en een voorbeeld van deze test.

Ik ben net naar een betaald plan verhuisd. Hoe kan ik een aangepaste beoordeling aanvragen?

Hier is een korte handleiding over hoe een aangepaste beoordeling aanvragen op Adaface.

customers across world
Join 1200+ companies in 75+ countries.
Probeer vandaag de meest kandidaatvriendelijke vaardighedenbeoordelingstool.
g2 badges
Ready to use the Adaface IBM mainframe -test?
Ready to use the Adaface IBM mainframe -test?
logo
40 min tests.
No trick questions.
Accurate shortlisting.
Voorwaarden Privacy Vertrouwensgids

🌎 Kies uw taal

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