Search test library by skills or roles
⌘ K

About the test:

O teste on -line de codificação de solidez foi projetado para avaliar a proficiência dos candidatos na linguagem de programação de solidez, usada para escrever contratos inteligentes na blockchain Ethereum. O teste usa o MCQS baseado em cenário para avaliar o conhecimento dos candidatos sobre os principais conceitos de solidez, incluindo tipos de dados, estruturas de controle e manuseio de funções e eventos, sua compreensão da implantação do contrato, depuração e considerações de segurança. O teste tem como objetivo avaliar a capacidade de um candidato de escrever contratos inteligentes eficientes e seguros usando a solidez.

Covered skills:

  • Linguagem de programação de solidez
  • Contratos inteligentes
  • Criptomoeda
  • Tokenômica
  • Tipos de dados de solidez
  • Implantação do contrato
  • Blockchain
  • Ethereum
  • Aplicações descentralizadas
  • Segurança de blockchain
  • Manipulação de erros em solidez
  • Teste de solidez

9 reasons why
9 reasons why

Adaface Teste de solidez is the most accurate way to shortlist Desenvolvedor de blockchains



Reason #1

Tests for on-the-job skills

The Teste de solidez helps recruiters and hiring managers identify qualified candidates from a pool of resumes, and helps in taking objective hiring decisions. It reduces the administrative overhead of interviewing too many candidates and saves time by filtering out unqualified candidates at the first step of the hiring process.

The test screens for the following skills that hiring managers look for in candidates:

  • Proficiente em linguagem de programação de solidez
  • Conhecimento da tecnologia blockchain e suas aplicações
  • Compreensão dos contratos inteligentes e sua implementação em solidez
  • Familiaridade com o Ethereum e seu ecossistema
  • Compreensão dos conceitos de criptomoeda e suas implicações na solidez
  • Conhecimento do desenvolvimento de aplicações descentralizadas (DAPPs)
  • Compreensão da criação de tokenômica e token em solidez
  • Consciência das melhores práticas de segurança de blockchain
  • Capacidade de trabalhar com tipos de dados de solidez efetivamente
  • Experiência em manuseio de erros e gerenciamento de exceção em solidez
  • Compreensão do processo de implantação do contrato
  • Proficiente em técnicas de teste de solidez
Reason #2

No trick questions

no trick questions

Traditional assessment tools use trick questions and puzzles for the screening, which creates a lot of frustration among candidates about having to go through irrelevant screening assessments.

View sample questions

The main reason we started Adaface is that traditional pre-employment assessment platforms are not a fair way for companies to evaluate candidates. At Adaface, our mission is to help companies find great candidates by assessing on-the-job skills required for a role.

Why we started Adaface
Reason #3

Non-googleable questions

We have a very high focus on the quality of questions that test for on-the-job skills. Every question is non-googleable and we have a very high bar for the level of subject matter experts we onboard to create these questions. We have crawlers to check if any of the questions are leaked online. If/ when a question gets leaked, we get an alert. We change the question for you & let you know.

How we design questions

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

🧐 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

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


Brandon Lee, Chefe de Pessoas, Love, Bonito

Reason #5

Designed for elimination, not selection

The most important thing while implementing the pre-employment Teste de solidez in your hiring process is that it is an elimination tool, not a selection tool. In other words: you want to use the test to eliminate the candidates who do poorly on the test, not to select the candidates who come out at the top. While they are super valuable, pre-employment tests do not paint the entire picture of a candidate’s abilities, knowledge, and motivations. Multiple easy questions are more predictive of a candidate's ability than fewer hard questions. Harder questions are often "trick" based questions, which do not provide any meaningful signal about the candidate's skillset.

Science behind Adaface tests
Reason #6

1 click candidate invites

Email invites: You can send candidates an email invite to the Teste de solidez from your dashboard by entering their email address.

Public link: You can create a public link for each test that you can share with candidates.

API or integrations: You can invite candidates directly from your ATS by using our pre-built integrations with popular ATS systems or building a custom integration with your in-house ATS.

invite candidates
Reason #7

Detailed scorecards & benchmarks

Ver Scorecard de amostra
Reason #8

High completion rate

Adaface tests are conversational, low-stress, and take just 25-40 mins to complete.

This is why Adaface has the highest test-completion rate (86%), which is more than 2x better than traditional assessments.

test completion rate
Reason #9

Advanced Proctoring


Learn more

About the Teste de solidez

Why you should use Teste de solidez?

The Teste de solidez 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:

  • Proficiência na linguagem de programação de solidez
  • Compreensão da tecnologia blockchain
  • Conhecimento de contratos inteligentes
  • Experiência com a Plataforma Ethereum
  • Entendimento dos conceitos de criptomoeda
  • Familiaridade com aplicações descentralizadas (DAPPs)
  • Entendimento da tokenômica
  • Conhecimento dos princípios de segurança blockchain
  • Tipos de dados de solidez e seu uso
  • Capacidade de lidar com exceções em solidez

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 Teste de solidez?

  • linguagem de programação de solidez

    Solidez é uma linguagem de programação projetada especificamente para escrever contratos inteligentes na blockchain Ethereum. Ele permite que os desenvolvedores criem aplicativos descentralizados complexos, definindo as regras e comportamentos de seus contratos. , tornando-o transparente e à prova de violação. Ele fornece a tecnologia subjacente para criptomoedas, contratos inteligentes e outros aplicativos descentralizados. Eles aplicam automaticamente as regras e condições definidas dentro delas, permitindo transações sem confiança e descentralizadas sem a necessidade de intermediários. contratos inteligentes. Ele fornece uma infraestrutura segura e confiável para criar aplicativos descentralizados e executar cálculos complexos no blockchain. Eles são descentralizados e operam independentemente de qualquer autoridade central, permitindo transações seguras e anônimas. uma blockchain. Eles são projetados para serem transparentes, seguros e resistentes à censura, sem confiar em uma autoridade central ou intermediário para controle. Projeto e uso de tokens em um ecossistema blockchain. Envolve fatores como distribuição de token, utilidade, escassez e estruturas de incentivo que influenciam o valor e o comportamento dos tokens. Proteja a integridade, a confidencialidade e a disponibilidade de dados e transações em uma blockchain. Envolve criptografia, mecanismos de consenso, controles de acesso e auditoria para garantir a operação segura da rede de blockchain. armazenados e manipulados em contratos inteligentes de solidez. Eles incluem tipos de dados básicos, como números inteiros, booleanos, cordas e tipos mais complexos, como matrizes e estruturas. Exceções, erros e condições inesperadas que podem ocorrer durante a execução de um contrato inteligente. A solidez fornece mecanismos como reverter, exigir e afirmar declarações para lidar com erros e garantir a robustez do contrato. na rede blockchain, disponibilizando -a para execução. Envolve interações com a máquina virtual Ethereum (EVM) e requer a implantação dos dados de bytecode e inicialização do contrato. e funcionalidade de contratos inteligentes escritos em solidez. Ajuda a identificar e prevenir bugs, vulnerabilidades e erros no código do contrato, garantindo a confiabilidade e a segurança dos contratos implantados.

  • Full list of covered topics

    The actual topics of the questions in the final test will depend on your job description and requirements. However, here's a list of topics you can expect the questions for Teste de solidez to be based on.

    Sintaxe de solidez
    Tipos de dados em solidez
    Variáveis ​​e constantes
    Funções e modificadores
    Estruturas de controle (if-else, loops)
    Herança e interfaces em solidez
    Eventos e manuseio de eventos
    Estruturas e mapeamentos
    Manipulação de erros em solidez
    Gerenciamento de exceção em solidez
    Processo de implantação do contrato
    Ethereum Virtual Machine (EVM)
    Otimização de gás em solidez
    Questões inteligentes de segurança de contratos
    Estruturas de teste de unidade de solidez
    Criação e gerenciamento de token
    Padrões ERC-20 e ERC-721
    Interagindo com contratos externos
    Arquitetura de aplicativos descentralizada
    Biblioteca Web3.js para interação Ethereum
    Técnicas de depuração de solidez
    Mecanismos de consenso de blockchain
    Funções de hash criptográfico em solidez
    Contratos de procuração e atualização
    Controle de acesso baseado em função na solidez
    Tempo de manuseio e registro de data e hora
    Integração de oráculos em solidez
    Otimização do código de solidez
    Estruturas de dados imutáveis ​​em contratos inteligentes
    Paralelização maciça em solidez
    Compreendendo taxas de gás e otimização de custos
    Padrões de manuseio de erros em solidez
    Estratégias de atualização de contrato
    Ataques de reentrância e prevenção
    Funções de fallback e autodestruição
    Prevenindo transbordamento inteiro e subfluxo
    Tipos de endereço e seu uso
    Importar e usar bibliotecas
    Convenções de formatação de código de solidez
    Criptografia e descriptografia em solidez
    Atomicidade em contratos inteligentes
    Estendendo contratos de armazenamento externo
    Controles de acesso e permissões
    Oracle integrações usando o ChainLink
    Otimizando o uso de gás em solidez
    Usando eventos para interação contratada
    Ferramentas de desenvolvimento de solidez e IDEs
    Mecanismos de distribuição de token
    Padrões de design em solidez
    Contratos imutáveis ​​e imutabilidade
    Implantando contratos em redes públicas e privadas
    Manipulação de aprovação e subsídio no ERC-20
    Melhores práticas de solidez e padrões de código
    Lidar com reversão na solidez
    Propagação de erros e manuseio de chamadas externas
    Padrões de fábrica de contratos
    Entendendo as árvores de merkle em solidez
    Prevenção de ataques do DOS em solidez
    Estimativa e otimização do preço do gás

What roles can I use the Teste de solidez for?

  • Desenvolvedor de blockchain
  • Desenvolvedor de contrato inteligente
  • Engenheiro Blockchain
  • Desenvolvedor de criptomoedas
  • Desenvolvedor Dapp
  • Consultor de blockchain

How is the Teste de solidez 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

  • Experiência com implantação de contrato
  • Proficiência em estruturas de teste de solidez
  • Técnicas avançadas de programação de solidez
  • Experiência em mecanismos de consenso de blockchain
  • Compreensão das finanças descentralizadas (DEFI)
  • Conhecimento da interoperabilidade de blockchain
  • Capacidade de otimizar o uso de gás em solidez
  • Experiência com auditorias de segurança de contratos inteligentes
  • Proficiência na construção de Dapps escaláveis
  • Experiência em otimização de código de solidez
Singapore government logo

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


85%
Redução no tempo de triagem

Teste de solidez Perguntas frequentes

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

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

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

Temos os seguintes recursos anti-trapaça:

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

Leia mais sobre os Recursos de Proctoring.

Como interpreto as pontuações dos testes?

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

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

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

Todo candidato recebe as mesmas perguntas?

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

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

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

Qual é o custo de usar este teste?

Você pode conferir nossos planos de preços.

Posso obter uma avaliação gratuita?

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

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

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

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