Search test library by skills or roles
⌘ K

About the test:

Der Mainframe-Online-Test verwendet szenariobasierte MCQs, um Kandidaten über ihre Kenntnisse über Mainframe-Technologien zu bewerten, einschließlich COBOL-Programmiersprache, JCL, VSAM, CICS und DB2. Der Test zielt darauf ab, die Fähigkeit eines Kandidaten zu bewerten, Mainframe -Anwendungen zu entwerfen und zu entwickeln, die sich effektiv an Branchenstandards und Best Practices halten.

Covered skills:

  • COBOL
  • Vsam
  • CICs
  • Assembler
  • Pl/i
  • Ispf
  • JCL
  • DB2
  • IMS
  • Rollenspiel
  • Tso

9 reasons why
9 reasons why

Adaface IBM Mainframe Test is the most accurate way to shortlist Mainframe -Entwicklers



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:

  • Kompetenz in der COBOL -Programmiersprache
  • Starkes Verständnis der IBM DB2 -Datenbank
  • Erfahrung beim Schreiben und Ausführen von IBM JCL -Skripten
  • Kenntnis der VSAM -Dateiorganisation
  • Vertrautheit mit CICs (Kundeninformationskontrollsystem)
  • Verständnis von IMS (Informationsmanagementsystem)
  • Fähigkeit, in Assemblersprache zu codieren
  • Kompetenz in RPG (Berichtsprogrammgenerator)
  • Kenntnis von PL/I (Programmiersprache eins)
  • Kenntnisse in TSO (Zeit für die Freigabe)
  • Fähigkeit zur Verwendung von ISPF (Interactive System Productivity Facility)
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

Dies sind nur ein kleines Beispiel aus unserer Bibliothek mit mehr als 10.000 Fragen. Die tatsächlichen Fragen dazu IBM Mainframe -Test wird nichtgänger sein.

🧐 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

Mit Adaface konnten wir unseren Erstauswahlprozess um mehr als 75 % optimieren und so wertvolle Zeit sowohl für Personalmanager als auch für unser Talentakquiseteam gewinnen!


Brandon Lee, Leiter der Menschen, Love, Bonito

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
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 -Programmierwissen
  • Fähigkeit, JCL -Aussagen zu schreiben und zu verstehen
  • Vertrautheit mit VSAM -Dateibehandlung
  • Verständnis von DB2 -Konzepten und SQL -Abfragen
  • Kenntnis der CICS -Transaktionsverarbeitung
  • Verständnis der hierarchischen IMS -Datenbank
  • Vertrautheit mit Assembler -Sprache und -Codierung
  • Kenntnisse in der RPG -Programmiersprache
  • Fähigkeit zum Schreiben und Ausführen von PL/I -Programmen
  • Kenntnisse über TSO -Befehle und -versorgungsunternehmen

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?

  • COBOL

    COBOL oder gemeinsame geschäftorientierte Sprache ist eine Programmiersprache, die hauptsächlich für Geschäftsanwendungen verwendet wird. Es ist bekannt für seine Lesbarkeit und selbstdokumentierende Natur, was es den Programmierern leicht macht, Code zu verstehen und zu pflegen. Das Testen von COBOL -Fähigkeiten ist wichtig, da es in vielen Legacy -Systemen immer noch weit verbreitet ist, und die Kenntnisse in COBOL ist für die Arbeitsplätze im Banken, die Versicherung und die Regierungssektoren wertvoll. > JCL oder Arbeitskontrollsprache ist eine Skriptsprache, mit der Jobs in einer IBM -Mainframe -Umgebung definiert und kontrolliert werden. Es ist wichtig, JCL -Fähigkeiten in diesem Test zu messen, da es für die Verwaltung und Ausführung von Stapelprozessen, das Definieren von Datensätzen und die Interaktion mit anderen Mainframe -Komponenten von entscheidender Bedeutung ist. Das Know -how in JCL sorgt für eine reibungslose und effiziente Ausführung von Arbeitsplätzen in einer Mainframe -Umgebung. Es bietet einen effizienten Zugriff auf große Datenvolumina durch indizierte sequentielle Zugriffsmethoden. Das Testen von VSAM -Fähigkeiten in dieser Bewertung ist entscheidend, da sie häufig zum Speichern und Abrufen von Daten in Mainframe -Anwendungen verwendet werden. Die Kenntnisse in VSAM sind für Jobrollen von Datenverwaltung und -verarbeitung in Mainframe -Umgebungen von Vorteil. Es bietet eine robuste und skalierbare Plattform zum Speichern, Abfragen und Manipulieren von Daten. Die Messung von DB2 -Fähigkeiten in diesem Test ist wichtig, da er in Mainframe -Umgebungen häufig verwendet wird, um Datenbanken zu verwalten und komplexe Datenvorgänge auszuführen. Die Kenntnisse in DB2 sind wertvoll für Jobrollen, die Datenbankverwaltung und -entwicklung in Mainframe -Systemen betreffen. Mainframe -Umgebungen. Es bietet eine Plattform für die Entwicklung und Ausführung großer, missionskritischer Geschäftsanwendungen. Die Bewertung von CICS -Fähigkeiten in dieser Bewertung ist entscheidend, da es für Jobrollen, die Online -Transaktionsverarbeitung und Erstellung skalierbarer und zuverlässiger Mainframe -Anwendungen beinhalten, unerlässlich ist. Ein hierarchisches Datenbankverwaltungssystem, das auf IBM -Mainframes verwendet wird. Es bietet eine robuste Plattform zum Verwalten und Zugriff auf große Mengen strukturierter und unstrukturierter Daten. Das Testen von IMS -Fähigkeiten in dieser Bewertung ist wichtig, da sie in Mainframe -Umgebungen, insbesondere in Branchen wie Finanzen, Telekommunikation und Gesundheitswesen, weit verbreitet ist. Die Kenntnisse in IMS sind wertvoll für Berufsrollen, die Datenbankverwaltung und Anwendungsentwicklung in Mainframe-Systemen betreffen. Schnittstellen. Es ermöglicht den Programmierern, Anweisungen auf Maschinenebene direkt zugreifen und manipulieren. Das Einschließen von Assembler-Fähigkeiten in diesen Test ist entscheidend, da er in bestimmten Mainframe-Umgebungen für leistungskritische Aufgaben und Hardware-Interaktionen immer noch verwendet wird. Die Kenntnisse im Assembler sind von Vorteil für Jobrollen, die Optimierung, Debugging und niedrige Programmierung in Mainframe-Systemen umfassen. Sprache, die für Geschäftsanwendungen auf IBM -Mainframes verwendet wird. Es ist optimiert für die Verarbeitung großer Datenvolumina und zur Erstellung von Berichten. Das Messen von RPG -Fähigkeiten in diesem Test ist wichtig, da es in vielen Legacy -Mainframe -Systemen, insbesondere in Branchen wie Banken und Versicherungen, weiterhin verwendet wird. Die Kenntnisse in RPG sind wertvoll für Berufsrollen, die die Entwicklung und Wartung von Unternehmensanwendungen in Mainframe-Umgebungen umfassen. Sprache entwickelt für wissenschaftliche, technische, geschäftliche und systemische Programme. Es kombiniert Merkmale verschiedener Programmiersprachen und unterstützt sowohl prozedurale als auch objektorientierte Programmierparadigmen. Das Testen von PL/I -Fähigkeiten in dieser Bewertung ist wertvoll, da sie in Mainframe -Umgebungen zur Entwicklung komplexer und kritischer Anwendungen verwendet wird. Kenntnisse in PL/I sind vorteilhaft für Jobrollen, die Systemprogrammierung, wissenschaftliche Analyse und groß angelegte Anwendungsentwicklung betreffen. -LINE -Schnittstelle von IBM Mainframes. Es ermöglicht Benutzern, mit dem Mainframe -Betriebssystem zu interagieren, Befehle auszuführen und verschiedene Systemvorgänge auszuführen. Die Messung von TSO -Fähigkeiten in diesem Test ist wichtig, da es für das Navigieren und Verwalten von Mainframe -Umgebungen, einschließlich Dateisystemzugriff, Arbeitsregelung und Systemüberwachung, von grundlegender Bedeutung ist. Die Kenntnisse in TSO sind wertvoll für Berufsrollen, die Mainframe -Operationen und Systemverwaltung betreffen. Es bietet eine anpassbare und interaktive Schnittstelle zum Verwalten von Dateien, Bearbeitungsprogrammen und zur Ausführung verschiedener Entwicklungs- und Verwaltungsaufgaben. Das Einbeziehen von ISPF-Fähigkeiten in diesen Test ist wichtig, da er für den täglichen Betrieb in Mainframe-Umgebungen weit verbreitet ist. Die Kenntnisse in ISPF sind von Vorteil für Jobrollen, die Programmentwicklung, Systemwartung und Interaktion mit Mainframe -Ressourcen betreffen.

  • 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
    Datentypen in COBOL
    Bedingte Aussagen in COBOL
    Schleifen in Cobol
    Unterprogramme und Verfahren
    COBOL -Dateihandhabung
    Fehlerbehandlung in COBOL
    DB2 SQL -Abfragen
    DB2 -Tabellenerstellung und -management
    DB2 -Indizes
    DB2 gespeicherte Verfahren
    Arbeiten mit JCL -Aussagen
    JCL -Dienstprogramme
    JCL -Arbeitskontrollanweisungen
    VSAM -Datensätze verstehen
    VSAM -Dateihandhabungsvorgänge
    CICS -Grundkonzepte
    CICS -Transaktionen und -Programme
    IMS -Datenbankkonzepte
    IMS -Programmstrukturen
    Assembler -Anweisungen
    Assembler -Programm Umzug
    RPG -Programmierkonzepte
    RPG -Datenstrukturen
    PL/I variable Erklärungen
    PL/I String Manipulation
    TSO -Befehle
    ISPF -Panels
    Verwenden Sie TSO im Stapelmodus
    Umgang mit ISPF -Datensätzen

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

  • Mainframe -Entwickler
  • Mainframe -Programmierer
  • Mainframe -Systemanalyst
  • Mainframe Operations Analyst
  • Mainframe -Administrator

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

  • Verständnis des ISPF -Panels und des Dialogmanagers
  • Erfahrung mit Mainframe -Batch -Verarbeitung
  • Fähigkeit zum Schreiben und Debuggen von COBOL-DB2-Programmen
  • Kenntnisse in der COBOL-IMS-Programmierung
  • Kenntnis der JCL -Dienstprogramme und -verfahren
  • Vertrautheit mit VSAM -Zugangsmethoden und Kontrollbereichen
  • Erfahrung mit CICS -Systemprogrammierung
  • Verständnis der IMS -Datenbankverwaltung
  • Kenntnisse in Assembler -Makros und Datenrepräsentation
  • Fähigkeit zum Schreiben und Debuggen von RPG-iil-Programmen
  • Kenntnis von PL/I -Datenstrukturen und Deklarationen
Singapore government logo

Die Personalmanager waren der Meinung, dass sie durch die technischen Fragen, die sie während der Panel-Interviews stellten, erkennen konnten, welche Kandidaten bessere Ergebnisse erzielten, und sie von denen unterscheiden konnten, die nicht so gut abschnitten. Sie sind Sehr zufrieden mit der Qualität der Kandidaten, die beim Adaface-Screening in die engere Auswahl kommen.


85%
Verringerung der Screening -Zeit

IBM Mainframe Hiring Test FAQs

Kann ich mehrere Fähigkeiten zu einer benutzerdefinierten Bewertung kombinieren?

Ja absolut. Basierend auf Ihrer Stellenbeschreibung werden benutzerdefinierte Bewertungen eingerichtet und enthalten Fragen zu allen von Ihnen angegebenen Must-Have-Fähigkeiten.

Haben Sie Anti-Cheating- oder Proctoring-Funktionen?

Wir haben die folgenden Anti-Cheating-Funktionen:

  • Nicht-Googling-Fragen
  • IP -Verbreitung
  • Web -Verbreitung
  • Webcam -Proctoring
  • Plagiaterkennung
  • sicherer Browser

Lesen Sie mehr über die Proctoring -Funktionen.

Wie interpretiere ich die Testergebnisse?

Die wichtigste Sache, die Sie beachten sollten, ist, dass eine Bewertung ein Eliminierungswerkzeug ist, kein Auswahlwerkzeug. Eine Bewertung der Qualifikationsbewertung wird optimiert, um Ihnen zu helfen, Kandidaten zu beseitigen, die technisch nicht für die Rolle qualifiziert sind. Sie ist nicht optimiert, um Ihnen dabei zu helfen, den besten Kandidaten für die Rolle zu finden. Die ideale Möglichkeit, eine Bewertung zu verwenden, besteht also darin, einen Schwellenwert zu entscheiden (in der Regel 55%, wir helfen Ihnen bei der Benchmark) und alle Kandidaten einladen, die für die nächsten Interviewrunden über dem Schwellenwert punkten.

Für welche Erfahrung kann ich diesen Test verwenden?

Jede Adaface -Bewertung ist an Ihre Stellenbeschreibung/ ideale Kandidatenpersönlichkeit angepasst (unsere Experten für Fache werden die richtigen Fragen für Ihre Bewertung aus unserer Bibliothek mit über 10000 Fragen auswählen). Diese Einschätzung kann für jede Erfahrungsstufe angepasst werden.

Bekommt jeder Kandidat die gleichen Fragen?

Ja, es macht es Ihnen viel einfacher, Kandidaten zu vergleichen. Optionen für MCQ -Fragen und die Reihenfolge der Fragen werden randomisiert. Wir haben Anti-Cheating/Proctoring Funktionen. In unserem Unternehmensplan haben wir auch die Möglichkeit, mehrere Versionen derselben Bewertung mit Fragen mit ähnlichen Schwierigkeitsgraden zu erstellen.

Ich bin ein Kandidat. Kann ich einen Übungstest ausprobieren?

Nein, leider unterstützen wir derzeit keine Übungstests. Sie können jedoch unsere Beispielfragen zur Praxis verwenden.

Was kostet die Verwendung dieses Tests?

Sie können unsere Preispläne überprüfen.

Kann ich eine kostenlose Testversion erhalten?

Ja, Sie können sich kostenlos anmelden und eine Vorschau dieses Tests.

Ich bin gerade zu einem bezahlten Plan gezogen. Wie kann ich eine benutzerdefinierte Bewertung anfordern?

Hier finden Sie eine kurze Anleitung zu wie Sie eine benutzerdefinierte Bewertung anfordern auf Adaface.

customers across world
Join 1200+ companies in 75+ countries.
Probieren Sie noch heute das Tool für die Bewertung von Kandidaten für freundliche Fähigkeiten aus.
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.
Bedingungen Privatsphäre Trust -Leitfaden

🌎 Wählen Sie Ihre Sprache aus

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