Labour Day Special - 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: c4sdisc65

CBDE PDF

$38.5

$109.99

3 Months Free Update

  • Printable Format
  • Value of Money
  • 100% Pass Assurance
  • Verified Answers
  • Researched by Industry Experts
  • Based on Real Exams Scenarios
  • 100% Real Questions

CBDE PDF + Testing Engine

$61.6

$175.99

3 Months Free Update

  • Exam Name: BTA Certified Blockchain Developer - Ethereum
  • Last Update: Apr 25, 2024
  • Questions and Answers: 102
  • Free Real Questions Demo
  • Recommended by Industry Experts
  • Best Economical Package
  • Immediate Access

CBDE Engine

$46.2

$131.99

3 Months Free Update

  • Best Testing Engine
  • One Click installation
  • Recommended by Teachers
  • Easy to use
  • 3 Modes of Learning
  • State of Art Technology
  • 100% Real Questions included

CBDE Practice Exam Questions with Answers BTA Certified Blockchain Developer - Ethereum Certification

Question # 6

With the truffle config file you can manage:

A.

the amount of gas your contract deployment and transactions, against your contract, will need. This way you can essentially lower the gas costs over traditional web3.js dApps.

B.

different Networks to deploy your contracts to. This way you can easily deploy to a local blockchain, the main-net or the Ropsten/Rinkeby Test-Net with only one parameter.

C.

you can manage your secret API keys to the Ethereum Network. This way you can get access to several different Ethereum nodes at the same time without the need to switch your keyfiles.

Full Access
Question # 7

Address.send() and address.transfer() are considered:

A.

safe against reentrancy because of the small gas stipend of 2300 gas.

B.

dangerous because they send all gas along, it's better to use address.call.value()().

Full Access
Question # 8

When using require to check input parameters and it evaluates to false:

A.

all gas is consumed

B.

all remaining gas is returned.

Full Access
Question # 9

Externally Owned Accounts:

A.

can be destroyed using the selfdestruct keyword. This way all remaining ether will be sent to the receiver address, regardless if they have a fallback function or not.

B.

are bound to a private key which is necessary to sign transactions outgoing from that account.

C.

are logical opcodes running on the ethereum blockchain very similar to smart contracts.

Full Access
Question # 10

When solidity is compiled then also Metadata is generated:

A.

the Metadata contains the ABI Array, which defines the Interface to interact with the Smart Contract. Metadata can also contain the address of the smart contract when it gets deployed.

B.

metadata contains the address, and the size of the smart contract. The ABI Array is generated externally upon deploying the smart contract.

C.

the ABI array and the Metadata are not generated when solidity is compiled to bytecode, its generated by a migration software which deploys the smart contract on the blockchain.

Full Access
Question # 11

To generate a random number:

A.

it's good to use the block timestamp, as this is always different.

B.

it's good to use the block hash as this is clearly always very different.

C.

it's good to use the RANDAO smart contract.

D.

it's not possible to have a random number in a deterministic environment such as the Ethereum blockchain.

Full Access
Question # 12

For Rapid Development Cycles it's good:

A.

to deploy to the main-network as quickly as possible.

B.

to use in-memory blockchain simulations, because mining works instantaneously.

C.

to use a private network at all times, because this is the closest you get to the real network.

Full Access
Question # 13

Hashing Mining uses:

A.

Keccack256 while internally to hash values it's easy to use the Dagger-Hashimoto to create a meaningful hash.

B.

the Dagger-Hashimoto hashing while internally the EVM uses SHA256 which is an alias for Keccack256.

C.

the Dagger-Hashimoto hashing while internally the EVM uses Keccack256 which is almost similar to SHA256, but has a different padding so produces different hashes.

Full Access
Question # 14

Why is it important to follow the same Interfaces?

A.

Websites that try to interface with the Token would have to know the exact ABI. It is upfront clear how the interaction has to be with the standard Interfaces.

B.

The Ethereum Foundation can easily validate the Tokens and approve any audits by following the standard interface.

Full Access
Question # 15

When defining a new datatype:

A.

its best to use a contract with public storage variables, so it can be used like a class.

B.

it's best to use a struct, which is cheaper than deploying a new contract.

C.

it's not possible to generate new datatypes in Solidity.

Full Access