Ethereum Developer Test 1

0%

Among the Ethereum addresses, public keys, and private keys, which statement is TRUE?

Correct! Wrong!

We can see how addresses are created in the Ethereum Yellow paper's Appendix F. Signing Transactions. First, it is assumed that the sender has a 32-byte private key. Given that we are discussing bytes rather than characters, first option is therefore already incorrect. A 64-byte key, also known as a public key, is produced when we run ECSDAPUBKEY. Therefore, second option is the correct one. The 160 rightmost bits of the public key's Keccack hash constitute the address. To put it another way, the hash's final 40 hex characters, or the right 20 bytes, as 1 byte is 8 bits and 20 bytes are equivalent to 160 bits

In solidity, the outcome of dividing number -5 by integer 2 is

Correct! Wrong!

Division rounds to zero in solidity. Consequently, it is trancated. Accordingly, int256(-5) / int256(2) = int256 (-2). This time, the answer would be -2. The best answer is therefore the third option.

What does it mean when we say, "A Hashing Algorithm is deterministic"?

Correct! Wrong!

What functions do private keys represent?

Correct! Wrong!

What does a transaction's nonce-field imply?

Correct! Wrong!

Complete the statement, "DApps are..".

Correct! Wrong!

Choose the correct scientific notation?

Correct! Wrong!

It is best to use the blockchain to its full potential...

Correct! Wrong!

Which statement is TRUE about Proof of Work (PoW) and Proof of Stake.

Correct! Wrong!

How many stakeholders made up the DAO?

Correct! Wrong!

What programming language was used to create the Trinity eth2 client?

Correct! Wrong!