ExamGecko
Home / Blockchain / CBDH / List of questions
Ask Question

Blockchain CBDH Practice Test - Questions Answers, Page 2

Add to Whishlist

List of questions

Question 11

Report Export Collapse

What type of organization can be thought of as a corporation run without any human involvement under the control of an incorruptible set of business rules?

Limited Liability Corporation
Limited Liability Corporation
Decentralized Autonomous Organization (DAO)
Decentralized Autonomous Organization (DAO)
Corporation
Corporation
Trust
Trust
Suggested answer: B
Explanation:

Decentralized Autonomous Organization (DAO) can be thought of as a corporation run without any human involvement under the control of an incorruptible set of business rules. A DAO can also be seen as the most complex form of a smart contract, where the bylaws of the decentralized organization are embedded into the code of the smart contract, using complex token governance rules.

asked 16/09/2024
Duane Innmon
29 questions

Question 12

Report Export Collapse

Chaincode in Hyperledger Fabric is a decentralized transactional program which is running on the validating nodes. Chaincode implements the Chaincode interface in particular, Init and Invoke functions.

Which two statements about Chaincode is correct? (Select two.)

Init is called during instantiate transaction after the chaincode container has been established for the first time, allowing the chaincode to initialize its internal data
Init is called during instantiate transaction after the chaincode container has been established for the first time, allowing the chaincode to initialize its internal data
Invoke is called to update or query the ledger after a proposal transaction. Update state variables are committed to the ledger before the transaction is committed
Invoke is called to update or query the ledger after a proposal transaction. Update state variables are committed to the ledger before the transaction is committed
Init is called during Instantiate transaction after the chaincode ledger has been established for the first time, allowing the chaincode to initialize its internal dataD. Invoke is called to update or query the ledger in a proposal transaction. Updated state variables are not committed to the ledger until the transaction is committed.
Init is called during Instantiate transaction after the chaincode ledger has been established for the first time, allowing the chaincode to initialize its internal dataD. Invoke is called to update or query the ledger in a proposal transaction. Updated state variables are not committed to the ledger until the transaction is committed.
Suggested answer: A
Explanation:

Chaincode is a decentralized transactional program, running on the validating nodes. As with every chaincode, it implements the Chaincode interface in particular, Init and Invoke functions. Init is called during Instantiate transaction after the chaincode container has been established for the first time, allowing the chaincode to initialize its internal data. Invoke is called to update or query the ledger in a proposal transaction. Updated state variables are not committed to the ledger until the transaction is committed.

asked 16/09/2024
George Kavvalakis
31 questions

Question 13

Report Export Collapse

Blockchain solutions are comprised of four building blocks. Which of the following answers list the building blocks?

Shared ledger, Privacy, Trust, and Smart Contracts or (Chaincode)
Shared ledger, Privacy, Trust, and Smart Contracts or (Chaincode)
Shared ledger, Centralization, Trustless, and Smart Contracts or (Chaincode)
Shared ledger, Centralization, Trustless, and Smart Contracts or (Chaincode)
Shared ledger, Privacy, Trustless, and Smart Contracts or (Chaincode)
Shared ledger, Privacy, Trustless, and Smart Contracts or (Chaincode)
Shared ledger, Centralization, Trust, and Smart Contacts or (Chaincode)
Shared ledger, Centralization, Trust, and Smart Contacts or (Chaincode)
Suggested answer: A
asked 16/09/2024
PRIYANK SAXENA
54 questions

Question 14

Report Export Collapse

An_____________ is defined as a communication node that is responsible for the distribution of blockchain transactions in Hyperledger Fabric.

MSP
MSP
Peer Node
Peer Node
Client Node
Client Node
Endorsing NodeE. Orderer
Endorsing NodeE. Orderer
Suggested answer:
Explanation:

Orderer Ordering services handles the main function of the Hyperledger Fabric to maintain consistency in the transactions processes. Ordering services provides a shared communication to clients and peers and helps in broadcasting the messages containing transactions.

asked 16/09/2024
Francinilo Leitao Ferreira
37 questions

Question 15

Report Export Collapse

The ledger system in Hyperledger Fabric uses what

database by default?

CouchDB
CouchDB
LevelDBC. MySQL
LevelDBC. MySQL
MS SQL
MS SQL
PostGres SQL
PostGres SQL
Suggested answer: B
Explanation:

The ledger system in Hyperledger fabric uses levelDB. By definition, LevelDB allows concurrent writers to safely insert data into the database by providing internal synchronization. LevelDB uses very coarse-grained synchronization which forces all writes to proceed in an ordered, first-come-first-served basis, effectively reduces throughput to a single thread. State database options include LevelDB and CouchDB. LevelDB is the default key-value state database embedded in the peer process. CouchDB is an optional alternative external state database. Like the LevelDB key-value store, CouchDB can store any binary data that is modeled in chaincode (CouchDB attachment functionality is used internally for non- JSON binary data). But as a JSON document store, CouchDB additionally enables rich query against the chaincode data, when chaincode values (e.g. assets) are modeled as JSON data

asked 16/09/2024
Mihail Galabov
36 questions

Question 16

Report Export Collapse

Which of the following is a role in Fabric that has permission to create transactions and query network data?

Chain Transactor
Chain Transactor
Chain Administrator
Chain Administrator
Chain Auditor
Chain Auditor
Chain Member
Chain Member
Suggested answer: A
Explanation:

Reference: https://fabric-docs-test.readthedocs.io/en/latest/glossary/#roles

asked 16/09/2024
Allam Sunandhareddy
45 questions

Question 17

Report Export Collapse

Hyperledger is an open source project that came out of the ___________________________. It was created in order to help advance _____________________________blockchain technologies. It's a global open source collaboration involving leaders from numerous industries.

Linux Foundation, Cross Industry
Linux Foundation, Cross Industry
Defense Industry, Military Communications
Defense Industry, Military Communications
Linux Foundation, Military Communications
Linux Foundation, Military Communications
Defense Industry, Financial Oriented
Defense Industry, Financial Oriented
Linux Foundation, Financial Oriented
Linux Foundation, Financial Oriented
Suggested answer: A
Explanation:

Hyperledger is an open source project that came out of the LF and was created in order to help advance cross-industry blockchain technologies. It's a global open source collaboration involving leaders from numerous industries.

asked 16/09/2024
Bill Rustom Cruz
38 questions

Question 18

Report Export Collapse

A transaction in Hyperledger Fabric is a request to the blockchain to execute a function on the ledger.

By what the function is implemented?

Chaincode
Chaincode
Service Account
Service Account
SDK
SDK
API
API
Suggested answer: A
Explanation:

Chaincode is programmatic logic. A transaction is a request to the blockchain to execute a function on the ledger. The function is implemented by a chaincode. Aka smart contracts

Reference: http://hyperledger-fabric.readthedocs.io/en/release-1.1/Fabric-FAQ.html#endorsement

asked 16/09/2024
Yi-Jen Tung
41 questions

Question 19

Report Export Collapse

When your developing with Fabric Composer which of the following is true?

Decrease the time of development
Decrease the time of development
Simplifies the development of applications
Simplifies the development of applications
Simplifies the code integration of applications
Simplifies the code integration of applications
Increases the time of development
Increases the time of development
Suggested answer: A
Explanation:

Hyperledger Composer is an open-source application development framework which simplifies the creation of Hyperledger Fabric blockchain applications, thus reducing the time and complexity of development. The tool aims at helping users to create blockchain applications based on Hyperledger Fabric without needing to know the low-level (Go Programming) details involved in blockchain networks.

asked 16/09/2024
Marc-Antoine Meyssat
32 questions

Question 20

Report Export Collapse

Chaincode Services uses Docker to host (deploy) the chaincode without relying on any virtual machine or computer language. What would be the main reason or best reason that Hyperledger chose containers over virtual machines?

Docker provides a secured, lightweight method to sandbox chaincode execution that is β€œlocked down”.
Docker provides a secured, lightweight method to sandbox chaincode execution that is β€œlocked down”.
Docker provides a secured, lightweight method to sandbox chaincode execution that is β€œlocked down” but additional programming languages cannot be enabledC. Docker provides a secured, lightweight method to sandbox chaincode execution that is not β€œlocked down”
Docker provides a secured, lightweight method to sandbox chaincode execution that is β€œlocked down” but additional programming languages cannot be enabledC. Docker provides a secured, lightweight method to sandbox chaincode execution that is not β€œlocked down”
Docker is fully compatible with Hyperledger and Linux with an upgrade subscription.
Docker is fully compatible with Hyperledger and Linux with an upgrade subscription.
Suggested answer: A
Explanation:

Docker provides a secured, lightweight method to sandbox chaincode execution that is "locked down" Chaincode Services uses Docker to host (deploy) the chaincode without relying on any virtual machine or computer language. Docker provides a secured, lightweight method to sandbox chaincode execution. The environment is a "locked down" and secured container, along with a set of signed base images containing secure OS and chaincode language, runtime and SDK images for Golang Additional programming languages can be enabled

asked 16/09/2024
Bruce Baynes
32 questions
Total 126 questions
Go to page: of 13
Search

Related questions