Search test library by skills or roles
⌘ K

About the test:

Test online mainframe wykorzystuje MCQ oparty na scenariuszach do oceny kandydatów na temat ich wiedzy na temat technologii mainframe, w tym języka programowania Cobol, JCL, VSAM, CICS i DB2. Test ma na celu ocenę zdolności kandydata do projektowania i opracowywania aplikacji mainframe, które skutecznie stosują standardy branżowe i najlepsze praktyki.

Covered skills:

  • Cobol
  • Vsam
  • CICS
  • Monter
  • Pl/i
  • ISPF
  • JCl
  • DB2
  • IMS
  • RPG
  • Osso

9 reasons why
9 reasons why

Adaface IBM Mainframe Test is the most accurate way to shortlist Deweloper 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:

  • Biegły w języku programowania Cobol
  • Silne zrozumienie bazy danych IBM DB2
  • Doświadczenie w pisaniu i wykonywaniu skryptów IBM JCL
  • Znajomość organizacji plików VSAM
  • Znajomość CICS (system kontroli informacji o kliencie)
  • Zrozumienie IMS (system zarządzania informacjami)
  • Zdolność do kodowania w języku asemblera
  • Kompetencje w RPG (generator programu raportu)
  • Pracująca znajomość PL/I (programowanie języka pierwszego)
  • Biegłość w OSS (opcja dzielenia się czasem)
  • Możliwość korzystania z ISPF (interaktywna produktywność systemu)
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

To tylko niewielka próbka z naszej biblioteki ponad 10 000 pytań. Rzeczywiste pytania dotyczące tego Test mainframe IBM będzie nieobowiązany.

🧐 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

Dzięki Adaface udało nam się zoptymalizować nasz proces wstępnej selekcji o ponad 75%, oszczędzając cenny czas zarówno menedżerom ds. rekrutacji, jak i naszemu zespołowi ds. pozyskiwania talentów!


Brandon Lee, Głowa Ludu, Love, Bonito

Reason #5

Designed for elimination, not selection

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

Zobacz przykładową kartę wyników
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 Test mainframe 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:

  • Wiedza na temat programowania Cobol
  • Zdolność do pisania i rozumienia instrukcji JCL
  • Znajomość obsługi plików VSAM
  • Zrozumienie koncepcji DB2 i zapytań SQL
  • Znajomość przetwarzania transakcji CICS
  • Zrozumienie hierarchicznej bazy danych IMS
  • Znajomość języka i kodowania asemblera
  • Biegłość w języku programowania RPG
  • Możliwość pisania i wykonywania programów PL/I
  • Znajomość poleceń i narzędzi 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?

  • COBOL

    Cobol lub wspólny język zorientowany na biznes, jest językiem programowym używanym przede wszystkim do aplikacji biznesowych. Jest znany z czytelności i samokontroli natury, co ułatwia programistom zrozumienie i utrzymaniu kodu. Testowanie umiejętności Cobol jest ważne, ponieważ nadal jest szeroko stosowane w wielu starszych systemach, a biegłość w Cobol jest cenna dla ról zawodowych w sektorach bankowości, ubezpieczeń i rządowych.

  • JCL </h4> <p > JCL lub język kontroli zadań to język skryptowy używany do definiowania i kontroli zadań w środowisku mainframe IBM. W tym teście niezbędne jest mierzenie umiejętności JCL, ponieważ ma kluczowe znaczenie dla zarządzania i wykonywania procesów wsadowych, definiowania zestawów danych i interakcji z innymi komponentami mainframe. Specjalizację w zakresie JCL zapewnia płynne i wydajne wykonywanie zadań w środowisku mainframe. </p> <h4> vsam

    vsam lub wirtualna metoda dostępu do pamięci masowej, jest systemem zarządzania plikami używanymi w ramach mainframe IBM. Zapewnia wydajny dostęp do dużych ilości danych za pomocą indeksowanych metod dostępu sekwencyjnego. Testowanie umiejętności VSAM w tej ocenie ma kluczowe znaczenie, ponieważ jest powszechnie używane do przechowywania i pobierania danych w aplikacjach mainframe. Biegłość w VSAM jest korzystna dla ról pracy obejmujących zarządzanie danymi i przetwarzanie w środowiskach mainframe.

  • DB2

    DB2 to relacyjny system zarządzania bazą danych (RDBMS) zaprojektowany dla komputerów mainframe IBM. Zapewnia solidną i skalowalną platformę do przechowywania, zapytania i manipulowania danymi. Mierzenie umiejętności DB2 w tym teście jest ważne, ponieważ jest szeroko stosowane w środowiskach mainframe do zarządzania bazami danych i wykonywania złożonych operacji danych. Biegłość w DB2 jest cenna dla ról zadań obejmujących administrację i opracowywanie baz danych w systemach mainframe.

  • CICS

    CICS lub system kontroli informacji o klientach, jest serwerem transakcji, który umożliwia przetwarzanie transakcji online w Występowaniu w transakcji online w przetwarzaniu transakcji w transakcjach online Środowiska mainframe. Zapewnia platformę do opracowywania i wykonywania dużych, krytycznych aplikacji biznesowych. Ocena umiejętności CICS w tej ocenie ma kluczowe znaczenie, ponieważ jest niezbędne dla ról zawodowych obejmujących przetwarzanie transakcji online i tworzenie skalowalnych i niezawodnych aplikacji mainframe.

  • IMS

    IMS lub system zarządzania informacjami IS IS Hierarchiczny system zarządzania bazą danych stosowany w komputerach mainframe IBM. Zapewnia solidną platformę do zarządzania i dostępu do dużych ilości danych ustrukturyzowanych i nieustrukturyzowanych. Testowanie umiejętności IMS w tej ocenie jest ważne, ponieważ jest szeroko stosowane w środowiskach mainframe, szczególnie w branżach takich jak finanse, telekomunikacja i opieka zdrowotna. Biegłość w IMS jest cenna dla ról zadań obejmujących zarządzanie bazami danych i opracowywanie aplikacji w systemach mainframe.

  • Assembler

    Assembler to język programowania na niskim poziomie używanym do opracowywania i kontrolowania sprzętu komputerowego i oprogramowania i oprogramowania interfejsy. Umożliwia programistom bezpośredni dostęp i manipulowanie instrukcjami na poziomie maszynowym. Uwzględnienie umiejętności asemblera do tego testu jest kluczowe, ponieważ nadal jest używane w niektórych środowiskach mainframe do zadań o krytycznym wyniki i interakcjach sprzętowych. Biegłość w asemblerze jest korzystna dla ról pracy obejmujących optymalizację, debugowanie i programowanie niskiego poziomu w systemach mainframe.

  • RPG

    RPG lub Generator programu raportów, jest programowaniem wysokiego poziomu, jest programowaniem wysokiego poziomu Język używany do aplikacji biznesowych na komputerach mainframe IBM. Jest zoptymalizowany do przetwarzania dużych ilości danych i generowania raportów. Mierzenie umiejętności RPG w tym teście jest ważne, ponieważ nadal jest stosowane w wielu starszych systemach mainframe, szczególnie w branżach takich jak bankowość i ubezpieczenie. Biegłość w RPG jest cenna dla ról pracy obejmujących opracowywanie i konserwację aplikacji biznesowych w środowiskach mainframe.

  • PL/I

    PL/I lub język programowania One, jest programowaniem na wysokim poziomie Język zaprojektowany do programowania naukowego, inżynierii, biznesu i systemów. Łączy funkcje różnych języków programowania i obsługuje zarówno paradygmaty programowania proceduralnego, jak i obiektowego. Testowanie umiejętności PL/I w tej ocenie są cenne, ponieważ są stosowane w środowiskach mainframe do opracowywania złożonych i krytycznych zastosowań. Biegłość w PL/I jest korzystna dla ról pracy obejmujących programowanie systemów, analizę naukową i rozwój aplikacji na dużą skalę.

  • TSO

    lub opcja udostępniania czasu jest interaktywną polecenie -LINE Interfejs dostarczany przez ibm mainframe. Umożliwia użytkownikom interakcję z systemem operacyjnym komputerów mainframe, wykonywanie poleceń i wykonywanie różnych operacji systemowych. Pomiar umiejętności OS w tym teście jest ważne, ponieważ ma zasadnicze znaczenie dla nawigacji i zarządzania środowiskami mainframe, w tym dostępu do systemu plików, kontroli zadań i monitorowania systemu. Biegłość w TSO jest cenna dla ról pracy obejmujących operacje mainframe i administrację systemu.

  • ISPF

    ISPF lub interaktywna produktywność systemu, jest pakietem oprogramowania dostarczonym przez IBM dla środowisk mainframe. Zapewnia konfigurowalny i interaktywny interfejs do zarządzania plikami, edytowania programów oraz wykonywania różnych zadań programistycznych i administracyjnych. Uwzględnienie umiejętności ISPF do tego testu jest ważne, ponieważ jest szeroko stosowane w codziennych operacjach w środowiskach mainframe. Biegłość w ISPF jest korzystna dla ról zawodowych obejmujących rozwój programu, konserwację systemu i interakcję z zasobami 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 Test mainframe IBM to be based on.

    Składnia Cobol
    Typy danych w Cobol
    Warunkowe stwierdzenia w Cobol
    Pętla w Cobol
    Podprogramy i procedury
    Obsługa plików Cobol
    Obsługa błędów w Cobol
    Zapytania DB2 SQL
    Tworzenie i zarządzanie tabelami DB2
    Indeksy DB2
    DB2 Procedury przechowywane
    Praca z instrukcjami JCL
    Programy użyteczności JCL
    Oświadczenia o kontroli pracy JCL
    Zrozumienie zestawów danych VSAM
    Operacje obsługi plików VSAM
    CICS Podstawowe pojęcia
    Transakcje i programy CICS
    Koncepcje bazy danych IMS
    Struktury programu IMS
    Instrukcje asemblera
    Przeniesienie programu Assembler
    Koncepcje programowania RPG
    Struktury danych RPG
    Deklaracje zmienne PL/I
    Manipulacja str/i
    Polecenia TSO
    Panele ISPF
    Korzystanie z OSS w trybie wsadowym
    Obsługa zestawów danych ISPF

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

  • Deweloper mainframe
  • Programista mainframe
  • Analityk systemów mainframe
  • Analityk operacji mainframe
  • Administrator komputerów 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

  • Zrozumienie panelu ISPF i menedżera dialogowego
  • Doświadczenie z przetwarzaniem wsadowym komputerów mainframe
  • Możliwość pisania i debugowania programów COBOL-DB2
  • Biegłość w programowaniu Cobol-IMS
  • Znajomość użyteczności i procedur JCL
  • Znajomość metod dostępu i obszarów kontroli VSAM
  • Doświadczenie z programowaniem systemu CICS
  • Zrozumienie administracji bazy danych IMS
  • Biegłość w makrach asemblera i reprezentacji danych
  • Możliwość pisania i debugowania programów RPG-ILE
  • Znajomość struktur danych i deklaracji PL/I
Singapore government logo

Menedżerowie ds. rekrutacji mieli poczucie, że dzięki technicznym pytaniom, które zadawali podczas rozmów panelowych, byli w stanie stwierdzić, którzy kandydaci uzyskali lepsze wyniki, i odróżnić się od tych, którzy również nie uzyskali takich punktów. Oni są bardzo zadowolony z jakością kandydatów wybranych do selekcji Adaface.


85%
Zmniejszenie czasu badań przesiewowych

IBM Mainframe Hiring Test Często zadawane pytania

Czy mogę połączyć wiele umiejętności w jedną niestandardową ocenę?

Tak, absolutnie. Oceny niestandardowe są konfigurowane na podstawie opisu stanowiska i będą zawierać pytania dotyczące wszystkich określonych umiejętności, które określasz.

Czy masz jakieś funkcje anty-cheatingowe lub proktorowe?

Mamy następujące funkcje anty-cheatingowe:

  • Pytania o niezgodne z nich
  • Proctoring IP
  • Proctoring Web
  • Proctoring kamery internetowej
  • Wykrywanie plagiatu
  • Bezpieczna przeglądarka

Przeczytaj więcej o funkcjach Proctoring.

Jak interpretować wyniki testów?

Najważniejsze, o czym należy pamiętać, jest to, że ocena jest narzędziem eliminacyjnym, a nie narzędziem wyboru. Ocena umiejętności jest zoptymalizowana, aby pomóc Ci wyeliminować kandydatów, którzy nie są technicznie zakwalifikowani do roli, nie jest zoptymalizowana, aby pomóc Ci znaleźć najlepszego kandydata do tej roli. Dlatego idealnym sposobem na wykorzystanie oceny jest podjęcie decyzji o wyniku progowym (zwykle 55%, pomagamy Ci porównać) i zaprosić wszystkich kandydatów, którzy wyniki powyżej progu na następne rundy wywiadu.

Do jakiego poziomu doświadczenia mogę użyć tego testu?

Każda ocena Adaface jest dostosowana do opisu stanowiska/ idealnego kandydującego osobowości (nasi eksperci przedmiotu będą podejmować właściwe pytania dotyczące oceny z naszej biblioteki ponad 10000 pytań). Ocenę tę można dostosować do dowolnego poziomu doświadczenia.

Czy każdy kandydat otrzymuje te same pytania?

Tak, znacznie ułatwia porównanie kandydatów. Opcje pytań MCQ i kolejność pytań są losowe. Mamy funkcje anty-cheating/proctoring. W naszym planie korporacyjnym mamy również możliwość tworzenia wielu wersji tej samej oceny z pytaniami o podobnych poziomach trudności.

Jestem kandydatem. Czy mogę spróbować testu ćwiczeniowego?

Nie. Niestety, w tej chwili nie wspieramy testów ćwiczeń. Możesz jednak użyć naszych przykładowych pytań do ćwiczeń.

Jaki jest koszt korzystania z tego testu?

Możesz sprawdzić nasze Plany cenowe.

Czy mogę dostać bezpłatny proces?

Tak, możesz zarejestrować się za darmo i podgląd tego testu.

Właśnie przeniosłem się do płatnego planu. Jak mogę poprosić o ocenę niestandardową?

Oto szybki przewodnik dotyczący jak poprosić o ocenę niestandardową na Adaface.

customers across world
Join 1200+ companies in 75+ countries.
Wypróbuj dziś najbardziej przyjazne narzędzie do oceny umiejętności.
g2 badges
Ready to use the Adaface Test mainframe IBM?
Ready to use the Adaface Test mainframe IBM?
Porozmawiaj z nami
ada
Ada
● Online
Previous
Score: NA
Next
✖️