Blockchain CBDH Practice Test - Questions Answers, Page 8
List of questions
Related questions
Question 71
There are currently three supported ordering services in Hyperledger Fabric and one service is used by developers experimenting with Hyperledger Fabric networks. What service is this?
Explanation:
SOLO is the Hyperledger Fabric ordering mechanism most typically used by developers experimenting with Hyperledger Fabric networks. SOLO involves a single ordering node and Note Development Only.
Question 72
Hyperledger Explorer is what type of web application? (Select two.)
Question 73
Which Hyperledger tool provides an open source browser for viewing activity on the underlying blockchain network?
Explanation:
Explorer can view, invoke, deploy or query blocks, transactions and associated data, network information, chain codes and transaction families, as well as other relevant information stored in the ledger. Powerful, easy-to-use, highly maintainable, open source browser for viewing activity on the underlying blockchain network.
Question 74
In Hyperledger Fabric there is three types of chaincode. (Select three.)
Explanation:
Reference: https://fabric-docs-test.readthedocs.io/en/latest/glossary/#chaincode
Question 75
When reviewing chaincode you see a function called "ChaincodeStubInterface" in the program.
What does this function do?
Explanation:
Reference: http://tutorialsdiary.com/hyperledger-fabric-tutorials-chaincode-interface-chaincodestubinterface/
Question 76
There are two popular approaches to defining assets in most blockchain solutions. (Select two.)
Explanation:
Users can use chaincode (for business rules) and membership service (for digital tokens) to design assets, as well as the logic that manages them. There are two popular approaches to defining assets in most blockchain solutions: the stateless UTXO model, where account balances are encoded into past transaction records; and the account model, where account balances are kept in state storage space on the ledger. Each approach carries its own benefits and drawbacks. This blockchain fabric does not advocate either one over the other. Instead, one of our first requirements was to ensure that both approaches can be easily implemented with tools available in the fabric.
Question 77
The use of cryptographic hashing with blockchain provides for which of the following?
Question 78
What function in chaincode will be used to store a state on the blockchain ledger?
Explanation:
Reference: https://hyperledger-fabric.readthedocs.io/en/release-1.4/chaincode4ade.html
Question 79
In Hyperledger Fabric each channel will manage its own _______ and ________?
Select best answer.
Explanation:
Chaincode may be deployed on multiple channels, each instance is isolated within its channel. Each channel maintains their own chaincode and ledger.
Question 80
There are generally two ways to develop business contracts in Hyperledger. (Select two.)
Explanation:
There are generally two ways to develop business contracts: the first way is to code individual contracts into standalone instances of chaincode; the second way, and probably the more efficient way, is to use chaincode to create decentralized applications that manage the life cycle of one or multiple types of business contracts, and let end users instantiate instances of contracts within these applications Reference: https://fabric-docs- test.readthedocs.io/en/latest/FAQ/chaincode_FAQ/
Question