Search test library by skills or roles
⌘ K

About the test:

Der Online -Test für Soliditätscodierung soll die Kenntnisse der Kandidaten in der Solidity -Programmiersprache bewerten, die zum Schreiben intelligenter Verträge auf die Ethereum -Blockchain verwendet wird. Der Test verwendet szenariobasierte MCQs, um die Kenntnisse der Kandidaten über wichtige Soliditätskonzepte, einschließlich Datentypen, Steuerungsstrukturen sowie Funktionen und Ereignisbearbeitung, ihres Verständnisses der Vertragsbereitstellung, des Debuggens und der Sicherheitsüberlegungen zu bewerten. Der Test zielt darauf ab, die Fähigkeit eines Kandidaten zu bewerten, effiziente und intelligente Verträge mithilfe von Solidität zu schreiben.

Covered skills:

  • Soliditätsprogrammiersprache
  • Intelligente Verträge
  • Kryptowährung
  • Tokenomik
  • Soliditätsdatentypen
  • Vertragsbereitstellung
  • Blockchain
  • Äther
  • Dezentrale Anwendungen
  • Blockchain -Sicherheit
  • Fehlerbehandlung bei Solidität
  • Soliditätstest

9 reasons why
9 reasons why

Adaface Soliditäts Test is the most accurate way to shortlist Blockchain -Entwicklers



Reason #1

Tests for on-the-job skills

The Soliditätstest 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 Soliditätsprogrammiersprache
  • Kenntnis der Blockchain -Technologie und ihrer Anwendungen
  • Verständnis von intelligenten Verträgen und deren Umsetzung in der Solidität
  • Vertrautheit mit Ethereum und seinem Ökosystem
  • Verständnis der Kryptowährungskonzepte und deren Auswirkungen auf die Solidität
  • Kenntnis der Entwicklung dezentraler Anwendungen (DAPPS)
  • Verständnis der Tokenomik und Token -Schöpfung in der Solidität
  • Bewusstsein für Best Practices der Blockchain -Sicherheit
  • Fähigkeit, mit Soliditätsdatentypen effektiv zu arbeiten
  • Erfahrung in der Fehlerhandhabung und Ausnahmemanagement in der Solidität
  • Verständnis des Vertragsbereitstellungsprozesses
  • Fachkenntnisse in Soliditätstesttechniken
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 Soliditätstest wird nichtgänger sein.

🧐 Question

Medium

Delegated Contract Execution
Delegatecall
Modifiers
Contract Security
Solve
In the Solidity code provided, there are two contracts: MainContract and HelperContract. MainContract uses delegatecall to execute a function in HelperContract. Carefully analyze the code and determine the outcome of specific operations.
 image
After deploying both contracts and setting the HelperContract address in MainContract, what will be the result of calling setHelperVars(100) from an EOA (Externally Owned Account)?
A: Only HelperContract's state is modified.
B: Only MainContract's state is modified.
C: States of both MainContract and HelperContract are modified.
D: Transaction fails due to the onlyOwner modifier in MainContract.
E: MainContract's sender and value are modified, but num remains unchanged.
F: HelperContract's sender and value are modified, but num remains unchanged.

Medium

Functions and arguments
Fallback functions
Solve
Review the following Solidity code:
 image
We want to add a fallback function to the contract. Pick the correct fallback function and correct statements:
 image
E: Fallback function is executed if contract receives plain Ether without any data
F: Fallback function is executed if caller calls a function that is not available
G: If multiple unnamed functions are defined for a contract, the cheapest function is used as fallback function

Easy

Private and Internal
Smart Contracts
Contract Inheritance
Solve
Review the following Solidity code:
 image
Pick the correct statements:

A: private increment function defined in contract_e is accessible in derived contract d_c but not accessible outside the derived contracts.
B: private increment function defined in contract_e is accessible only inside contract_e and not accessible to derived contracts as well.
C: internal variable str defined in contract_e is accessible in derived contract d_b but not outside the derived contracts.
D: internal variable str defined in contract_e is accessible only inside contract_e and not accessible to derived contracts as well.

Medium

Smart Contract Interaction
Contract Interaction
Gas Usage
Error Handling
Solve
You are reviewing a set of two interacting Solidity smart contracts, `ContractA` and `ContractB`. `ContractA` calls a function in `ContractB`, which in turn updates state variables in both contracts. Your task is to determine the correct behavior and gas usage implications based on the pseudo code provided:
 image
The contracts are deployed correctly, and `ContractB` is initialized with the address of `ContractA`. Consider what happens when `incrementBoth` function of `ContractB` is called.
A: Only `ContractB`'s count is incremented; `ContractA`'s count remains unchanged.
B: Both `ContractA` and `ContractB`'s counts are incremented, with higher gas costs due to inter-contract calls.
C: Transaction fails due to lack of error handling in `ContractB`.
D: Gas optimization is achieved due to internal transaction handling.
E: `ContractA`'s count is incremented twice due to recursive call.
F: `ContractA`'s count is not incremented due to `external` keyword restriction.

Medium

51% Attacks
Solve
A 51% attack is perhaps the most discussed threat to any public Blockchain asset. A 51% attack happens when a certain miner or mining pool, that owns more than 50% of all the network’s hashing power, acts maliciously to disturb the network’s operation.
For example: Two Bitcoin Cash mining pools, carried out a 51% attack on the Bitcoin Cash blockchain in order to stop an unknown miner from taking coins that they weren’t supposed to have access to, while the network forked.
Which of the following CAN be done by a miner employing a 51% attack?

A: Double spend their coins
B: Reverse confirmed transactions
C: Steal funds from a certain address
D: Prevent transactions from being confirmed
E: Create false transactions that never happened

Easy

Evidence
Solve
Breed Chasing, solo engineer is planning to create new cryptocurrency, NEWCRAIGLIST and build a blockchain that facilitates buying and selling second-hand items with NEWCRAIGLIST from each other. Breed expects the platform to be used for international transactions and devised the following process:

- Before a transaction is considered complete, the purchaser must put the funds in an escrow service
- The sender must enter the courier tracking number into that same escrow
Palmart, toy store giant in US is asked by lawmakers to provide evidence that proves the store’s toys are not produced through child labour. Palmart’s toys are transferred between 7 parties between creation and placement at the store. Palmart is considering using blockchain to solve this problem. Discretion in the reading and writing of transactions is highly important to the store chain to protect its proprietary interests. Review the following possible solutions and pick the best approach that solves Palmart’s problem:
Option A:
Use a public blockchain that supports assets.
Then create a new toy asset for each item created. 
When the toy is transferred to the next party, mandate that the associated blockchain asset to be transferred to the next party's blockchain account with required metadata.
Lawmakers can now view transactions and transfers at any time.

Option B: 
Use a permissioned blockchain.
Require that every party involved in the process to host a node on the Palmart's network. 
Create a new toy asset for each item created. 
When the toy is transferred to the next party in the process, have the previous party use a web portal to initialize a chain code Smart Contract to transfer control of the asset. 
When the next party receives the asset have them use a web portal to initialize a chain code Smart Contracts to acknowledge receipt of the asset. 
Provide read-only permissions to the lawmakers so they can receive the evidence they are looking for.

Medium

Blockchain Interoperability
Smart Contract Logic
Interoperability
Decentralized Applications
Solve
Consider a blockchain ecosystem where a decentralized application (dApp) is designed to operate across two different blockchains: Blockchain A, which uses a unique smart contract language and execution environment, and Blockchain B, which supports Ethereum Virtual Machine (EVM) compatible smart contracts. The dApp includes a cross-chain functionality where certain actions triggered in Blockchain A's smart contract result in specific operations in a smart contract on Blockchain B. The interoperability is facilitated through a decentralized oracle that verifies and relays information between the two blockchains. Given this setup, which of the following statements most accurately reflects the challenges and considerations in implementing this dApp's cross-chain functionality?
A: Cross-chain functionality cannot be achieved due to the different smart contract languages and execution environments.
B: The decentralized oracle introduces a single point of failure, compromising the security of the dApp.
C: Synchronizing state between the two blockchains is seamless and does not introduce any additional latency.
D: The dApp can maintain consistency and atomicity in transactions across the blockchains, but it faces challenges in data validation and oracle reliability.
E: Smart contract execution on Blockchain B is entirely dependent on the state of the smart contract on Blockchain A.
F: The interoperability poses no significant challenges, as EVM compatibility ensures seamless cross-chain communication.

Medium

Strategic Tokenomics
Tokenomics
Cryptocurrency Economics
Solve
A new cryptocurrency, CryptoX, has a fixed total supply of 100 million tokens. Its initial release of 40 million tokens is distributed as follows: 10 million for development, 15 million for a decentralized autonomous organization (DAO) treasury, and 15 million for staking rewards. The remaining 60 million tokens are locked, with a scheduled release decreasing by 10% each year. CryptoX also has a deflationary mechanism where 0.1% of each transaction is burned.

During a market downturn, CryptoX's price drops by 30% in a month. Market analysis attributes this drop primarily to increased token selling by short-term holders, influenced by a broader market downturn in cryptocurrencies. CryptoX's community is considering responses to stabilize the price and reassure long-term investors. Two strategies are proposed:

1) Increase the transaction burn rate to 0.2%, hoping to reduce the circulating supply faster and create a deflationary pressure.
2) Maintain the current tokenomics, believing that the downturn is part of normal market fluctuations and that the existing mechanisms are robust enough for long-term stability.

Given the market analysis and the nature of the downturn, which strategy is more likely to effectively stabilize CryptoX’s price while maintaining long-term value?
A: Increase the transaction burn rate to 0.2%.
B: Maintain the current tokenomics without any changes.
C: Temporarily suspend the transaction burn mechanism.
D: Increase the release rate of the locked tokens.
E: Implement a dynamic burn rate that adjusts with market conditions.
F: Introduce a temporary buyback and burn program.
🧐 Question🔧 Skill

Medium

Delegated Contract Execution
Delegatecall
Modifiers
Contract Security

3 mins

Solidity
Solve

Medium

Functions and arguments
Fallback functions

3 mins

Solidity
Solve

Easy

Private and Internal
Smart Contracts
Contract Inheritance

2 mins

Solidity
Solve

Medium

Smart Contract Interaction
Contract Interaction
Gas Usage
Error Handling

2 mins

Solidity
Solve

Medium

51% Attacks

3 mins

Blockchain
Solve

Easy

Evidence

3 mins

Blockchain
Solve

Medium

Blockchain Interoperability
Smart Contract Logic
Interoperability
Decentralized Applications

3 mins

Blockchain
Solve

Medium

Strategic Tokenomics
Tokenomics
Cryptocurrency Economics

2 mins

Blockchain
Solve
🧐 Question🔧 Skill💪 Difficulty⌛ Time
Delegated Contract Execution
Delegatecall
Modifiers
Contract Security
Solidity
Medium3 mins
Solve
Functions and arguments
Fallback functions
Solidity
Medium3 mins
Solve
Private and Internal
Smart Contracts
Contract Inheritance
Solidity
Easy2 mins
Solve
Smart Contract Interaction
Contract Interaction
Gas Usage
Error Handling
Solidity
Medium2 mins
Solve
51% Attacks
Blockchain
Medium3 mins
Solve
Evidence
Blockchain
Easy3 mins
Solve
Blockchain Interoperability
Smart Contract Logic
Interoperability
Decentralized Applications
Blockchain
Medium3 mins
Solve
Strategic Tokenomics
Tokenomics
Cryptocurrency Economics
Blockchain
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 Soliditätstest 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 Soliditätstest 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

Ansicht der Probe 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 Soliditäts Assessment Test

Why you should use Pre-employment Soliditätstest?

The Soliditätstest 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:

  • Soliditätsprogrammiersprache Kenntnisse
  • Verständnis der Blockchain -Technologie
  • Kenntnis intelligenten Verträgen
  • Erfahrung mit der Ethereum -Plattform
  • Verständnis von Kryptowährungskonzepten
  • Vertrautheit mit dezentralen Anwendungen (DAPPS)
  • Verständnis der Tokenomik
  • Kenntnis der Blockchain -Sicherheitsprinzipien
  • Soliditätsdatentypen und deren Verwendung
  • Fähigkeit, Ausnahmen in der Solidität zu bewältigen

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 Soliditätstest?

  • Soliditätsprogrammiersprache

    Solidität ist eine Programmiersprache, die speziell für das Schreiben von intelligenten Verträgen auf die Ethereum -Blockchain entwickelt wurde. Es ermöglicht Entwicklern, komplexe dezentrale Anwendungen zu erstellen, indem die Regeln und Verhaltensweisen ihrer Verträge definiert werden. , so transparent und manipulationssicher. Es bietet die zugrunde liegende Technologie für Kryptowährungen, intelligente Verträge und andere dezentrale Anwendungen. Sie erzwingen automatisch die in ihnen definierten Regeln und Bedingungen und ermöglichen es vertrauenslose und dezentrale Transaktionen, ohne dass Vermittler erforderlich sind. intelligente Verträge. Es bietet eine sichere und zuverlässige Infrastruktur zum Erstellen dezentraler Anwendungen und zur Ausführung komplexer Berechnungen auf der Blockchain. Sie sind dezentralisiert und arbeiten unabhängig von jeder zentralen Behörde, um sichere und anonyme Transaktionen zu ermöglichen. eine Blockchain. Sie sind entwickelt, um transparent, sicher und zensurresistent zu sein, ohne sich auf eine zentrale Behörde oder einen Vermittler zur Kontrolle zu verlassen. Design und Verwendung von Token in einem Blockchain -Ökosystem. Es umfasst Faktoren wie Token -Verteilung, Nutzen, Knappheit und Incentive -Strukturen, die den Wert und das Verhalten von Token beeinflussen. Schützen Sie die Integrität, Vertraulichkeit und Verfügbarkeit von Daten und Transaktionen in einer Blockchain. Es umfasst Kryptographie, Konsensmechanismen, Zugriffskontrollen und Prüfung, um den sicheren Betrieb des Blockchain -Netzwerks sicherzustellen. gespeichert und manipuliert in Solidity Smart Contracts. Sie umfassen grundlegende Datentypen wie Ganzzahlen, Booleans, Zeichenfolgen und komplexere Typen wie Arrays und Strukturen. Ausnahmen, Fehler und unerwartete Bedingungen, die während der Ausführung eines intelligenten Vertrags auftreten können. Solidität liefert Mechanismen wie Rückkehr- Auf das Blockchain -Netzwerk, damit es für die Ausführung verfügbar ist. Es umfasst Interaktionen mit der Virtual Machine (EVM) Ethereum und erfordert die Bereitstellung der Bytecode- und Initialisierungsdaten des Vertrags. und Funktionalität von intelligenten Verträgen in Solidität. Es hilft, Fehler, Schwachstellen und Fehler im Vertragscode zu identifizieren und zu verhindern und die Zuverlässigkeit und Sicherheit der implementierten Verträge zu gewährleisten.

  • 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 Soliditätstest to be based on.

    Soliditätssyntax
    Datentypen in Solidität
    Variablen und Konstanten
    Funktionen und Modifikatoren
    Kontrollstrukturen (IF-ELSE, Loops)
    Vererbung und Schnittstellen bei Solidität
    Event- und Veranstaltungsbearbeitung
    Strukturen und Zuordnungen
    Fehlerbehandlung bei Solidität
    Ausnahmegemanagement bei Solidität
    Vertragsbereitstellungsprozess
    Ethereum Virtual Machine (EVM)
    Gasoptimierung bei Solidität
    Probleme mit der Sicherheit intelligenten Vertragsverträgen
    Solidity Unit Testing Frameworks
    Token -Erstellung und -management
    ERC-20- und ERC-721-Standards
    Interaktion mit externen Verträgen
    Dezentrale Anwendungsarchitektur
    Web3.js -Bibliothek für Ethereum -Interaktion
    Soliditätsdebugging -Techniken
    Blockchain -Konsensmechanismen
    Kryptografische Hash -Funktionen bei Solidität
    Proxyverträge und Modernisierung
    Rollenbasierte Zugriffskontrolle bei Solidität
    Handhabungszeit und Zeitstempel
    Integration von Orakel in Solidität
    Soliditätscodeoptimierung
    Unveränderliche Datenstrukturen in intelligenten Verträgen
    Massive Parallelisierung der Solidität
    Verständnis von Gasgebühren und Kostenoptimierung
    Fehlerbehandlungsmuster bei Solidität
    Vertragsverbesserbarkeitsstrategien
    Wiedereinzugsangriffe und Prävention
    Fallback -Funktionen und Selbstzerstörung
    Verhinderung des Ganzzahlüberlaufs und Unterströmung
    Adresstypen und ihre Verwendung
    Bibliotheken importieren und verwenden
    Soliditätscode -Formatierungskonventionen
    Verschlüsselung und Entschlüsselung der Solidität
    Atomizität in intelligenten Verträgen
    Erweiterung externer Speicherverträge
    Zugangskontrollen und Berechtigungen
    Oracle -Integrationen mit Chainlink
    Optimierung des Gasverbrauchs bei Solidität
    Verwenden von Ereignissen für die Vertragsinteraktion
    Tools und IDes für Soliditätsentwicklung
    Token -Verteilungsmechanismen
    Entwurfsmuster in Solidität
    Unveränderliche Verträge und Unveränderlichkeit
    Bereitstellung von Verträgen in öffentlichen und privaten Netzwerken
    Umgang mit Genehmigung und Zulage in ERC-20
    Solidität Best Practices und Code Standards
    Handhabungsumkehr in der Solidität
    Fehlerverbreitung und Umgang mit externen Aufrufen
    Vertragsfabrikmuster
    Merkle -Bäume in Solidität verstehen
    Verhinderung von DOS -Angriffen bei Solidität
    Gaspreisschätzung und Optimierung

What roles can I use the Soliditätstest for?

  • Blockchain -Entwickler
  • Smart Contract Developer
  • Blockchain -Ingenieur
  • Kryptowährungsentwickler
  • Dapp -Entwickler
  • Blockchain -Berater

How is the Soliditätstest 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

  • Erfahrung mit der Vertragsbereitstellung
  • Kenntnisse in solchen Rahmenbedingungen für Soliditätstests
  • Erweiterte Soliditätsprogrammierungstechniken
  • Fachwissen in Blockchain -Konsensmechanismen
  • Verständnis der dezentralen Finanzierung (Defi)
  • Kenntnis der Blockchain -Interoperabilität
  • Fähigkeit zur Optimierung der Gasverbrauch in der Solidität
  • Erfahrung mit Sicherheitsaudits von intelligenten Verträgen
  • Kenntnisse beim Bau skalierbarer Dapps
  • Fachkenntnis zur Optimierung von Soliditätscode
Singapore government logo

Die Personalmanager hatten das Gefühl, 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

Soliditäts Online 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 Soliditätstest?
Ready to use the Adaface Soliditätstest?
ada
Ada
● Online
Previous
Score: NA
Next
✖️