BTA Certified Blockchain Solution Architect v1.0

Page:    1 / 16   
Exam contains 236 questions

The ____________of the tree is the topmost node and hence this tree is represented upside down. The bottommost nodes are called as ________nodes. Each node is simply a cryptographic hash of a transaction.


In the above diagram, Transaction A,B, C,C from the leaves of the tree. Select one.

  • A. Root, Hash
  • B. Root, Leaf Nodes
  • C. Has, Root nodes
  • D. Leaf nodes, Root
  • E. Leaf Nodes, Root


Answer : B

Explanation:
The root of the tree is the topmost node and hence this tree is represented upside down. The bottommost nodes are called as leaf nodes. Each node is simply a cryptographic hash of a transaction. In the above diagram, Transaction A,B,C,C form the leaves of the tree.
Reference:
https://medium.com/all-things-ledger/bitcoins-implementation-of-blockchain-2be713f662c2

Which of the following blockchain is NOT a permissioned blockchain?

  • A. Quantum
  • B. Ethereum
  • C. R3 Corda
  • D. Ripple
  • E. Hyperledger


Answer : B

What blockchain is considered Blockchain 1.0, the first blockchain?

  • A. Bitcoin Cash
  • B. Ethereum
  • C. Litecoin
  • D. Bitcoin
  • E. NEO


Answer : D

Explanation:

Blockchain 1.0, Grandpa Bitcoin -
Reference:
https://hackernoon.com/a-brief-history-in-the-evolution-of-blockchain-technology-platforms-1bb2bad8960a

In the EVM every account has a persistent key-value store mapping 256-bit words to 256-bit words called ________

  • A. Gas
  • B. Space
  • C. Storage
  • D. Datastore
  • E. Database


Answer : C

Explanation:
Every account has a persistent key-value store mapping 256-bit words to 256-bit words called storage.
Reference:
https://solidity.readthedocs.io/en/latest/introduction-to-smart-contracts.html#the-ethereum-virtual-machine

______ is the official Ethereum IDE that allows developers to build and deploy contracts and decentralized applications on top of the Ethereum blockchain.

  • A. Mist
  • B. Mix
  • C. Truffle
  • D. Metamask
  • E. Embark


Answer : B

Explanation:
Mix is the official Ethereum IDE that allows developers to build and deploy contracts and decentralized applications on top of the Ethereum blockchain

What is the language that Solidity is using to build on the Ethereum Virtual Machines(EVM)?

  • A. .Net
  • B. Javascript
  • C. C++
  • D. Node.js
  • E. PHP


Answer : B

Explanation:
Javascript is the language that Solidity is using to build on the Ethereum Virtual Machine
Reference:
https://www.quora.com/What-is-the-best-programming-language-to-learn-if-you-want-to-work-on-the-blockchain

Regarding Ethereum contracts, the contracts can call (perform) two specific message calls. The message calls are either _____________ or __________?
(Select two.)

  • A. Bitcoin nodes
  • B. Send Ether to non-contract
  • C. DApps
  • D. Other contracts
  • E. Ether Nodes


Answer : BD

Explanation:
Contracts can call other contracts or send Ether to non-contract accounts by the means of message calls. Message calls are similar to transactions, in that they have a source, a target, data payload, Ether, gas and return data. In fact, every transaction consists of a top-level message call which in turn can create further message calls.

Which of the following hashing algos is considered to be the strongest?

  • A. RSA
  • B. SHA-2
  • C. AES
  • D. MD-5
  • E. SHA


Answer : B

Explanation:
SHA-2 consists of a set of 6 hashing algorithms, and is considered the strongest. SHA-256 or above is recommended for situations are security is vital. SHA-256 produces 32-byte hash values.
Reference:
https://www.securityinnovationeurope.com/blog/page/whats-the-difference-between-hashing-and-encrypting

When you considering cryptography for a blockchain what would be types of symmetric cryptography you could consider? (Select two.)

  • A. Block Ciphers
  • B. Rivest-Shamir-Adleman algorithm aka the RSA.
  • C. Stream Ciphers
  • D. Elliptical Curve Cryptography


Answer : AC

Reference:
https://blockgeeks.com/guides/cryptocurrencies-cryptography/

The___________________ is the runtime environment for smart contracts in Ethereum?

  • A. Metamask
  • B. Ether
  • C. Mist
  • D. EVM


Answer : D

Explanation:
EVM The Ethereum Virtual Machine (EVM) is the runtime environment for smart contracts in Ethereum. It is not only sandboxed, but actually completely isolated, which means that code running inside the EVM has no access to network, filesystem, or other processes. Smart contracts even have limited access to other smart contracts.

Blockchains are decentralized ledgers which, by definition, are not controlled by a central authority. Due to the value stored in these ledgers, bad actors have huge economic incentives to try and cause faults.
What algo was the original solution to the potential problem as specified by Satoshi?

  • A. Proof of Stake
  • B. Byzantine Fault Tolerance
  • C. Proof of Burn
  • D. Proof of Work
  • E. Dynamic Proof of Stake


Answer : D

Explanation:
The big breakthrough when Bitcoin was invented, was the use of Proof-of-Work as a probabilistic solution to the Byzantine Generals Problem as described in depth by Satoshi Nakamoto.
Reference:
https://medium.com/loom-network/understanding-blockchain-fundamentals-part-1-byzantine-fault-tolerance-245f46fe8419

What are some likely repercussions that could occur as a result of a 51% attack to the Bitcoin network? (Select three.)

  • A. Unplanned Fork
  • B. Double Spending
  • C. Cancelling Transactions
  • D. Planned Fork
  • E. Selfless Mining


Answer : ABC

Explanation:
The 4 main attacks that can happen directly as a result of the 51% attack are: Selfish mining. Cancelling transactions. Double Spending. Random forks.
Reference:
https://blockgeeks.com/guides/hypothetical-attacks-on-cryptocurrencies/

__________ is a real-time gross settlement system (RTGS), currency exchange and remittance network by __________

  • A. Ripple, Ripple
  • B. Ripple, JP Morgan
  • C. XRP, Ripple
  • D. Ripple, XRP


Answer : A

Explanation:
Ripple is a real-time gross settlement system (RTGS), currency exchange and remittance network by Ripple.
Reference:
https://ripple.com/

A centralized system is one that that is governed by a hierarchical authority.
Which of the following Blockchains would be correctly stated as centralized?

  • A. Monero
  • B. Ethereum
  • C. Bitcoin Cash
  • D. Ripple


Answer : D

Reference:
https://medium.com/@dustindreifuerst/permissioned-vs-permissionless-blockchains-acb8661ee095

Message Calls in the Ethereum EVM is limited to a depth of ______?

  • A. 128
  • B. 256
  • C. 1024
  • D. 2048


Answer : C

Explanation:
Calls are limited to a depth of 1024, which means that for more complex operations, loops should be preferred over recursive calls.
Reference:
https://solidity.readthedocs.io/en/latest/introduction-to-smart-contracts.html#the-ethereum-virtual-machine

Page:    1 / 16   
Exam contains 236 questions

Talk to us!


Have any questions or issues ? Please dont hesitate to contact us

Certlibrary.com is owned by MBS Tech Limited: Room 1905 Nam Wo Hong Building, 148 Wing Lok Street, Sheung Wan, Hong Kong. Company registration number: 2310926
Certlibrary doesn't offer Real Microsoft Exam Questions. Certlibrary Materials do not contain actual questions and answers from Cisco's Certification Exams.
CFA Institute does not endorse, promote or warrant the accuracy or quality of Certlibrary. CFA® and Chartered Financial Analyst® are registered trademarks owned by CFA Institute.
Terms & Conditions | Privacy Policy