Blockchain CBDH Exam
BTA Certified Blockchain Developer – Hyperledger (Page 11 )

Updated On: 12-Feb-2026

In Hyperledger Fabric, there are three types of peer nodes depending upon the assigned roles.
What are three types? (Choose three.)

  1. Committing Peer
  2. Endorsing Peer
  3. Peer
  4. Client peer
  5. MSP Peer
  6. Channel Peer
  7. Ordering Peer

Answer(s): B,C,G

Explanation:

So not all peer nodes are same. There are different types of peer nodes with different roles in the network: Endorser peer Anchor peer Orderer peer Endorser peer Peers can be marked as Endorser peer (Endorsing peer). Upon receiving the "transaction invocation request" from the Client application the Endorser peer Validates the transaction. Check certificate details and roles of the requester. Executes the Chaincode (Smart Contract) and simulates the outcome of the transaction. But it does not update the ledger. At the end of the above two tasks the Endorser may approve to disapprove the transaction. As only the Endorser node executes the Chaincode (Smart Contract) so there is no necessity to install Chaincode in each and every node of the network which increases the
scalibility of the network. Anchor peer Anchor peer or cluster of Anchor peers is configured at the time of Channel configuration. Just to remind you, in Hyperledger Fabric you can configure secret channels among the peers and transactions among the peers of that channel are visible only to them. Anchor peer receives updates and broadcasts the updates to the other peers in the organization. Anchor peers are discoverable. So any peer marked as Anchor peer can be discovered by the Orderer peer or any other peer. Orderer peer Orderer peer is considered as the central communication channel for the Hyperledger Fabric network. Orderer peer/node is responsible for consistent Ledger state accross the network. Orderer peer creates the block and delivers that to all the peers. Orderer is built on top of a message oriented architecture. There are two options are currently available to implement Orderer peer: Solo: Suitable for development. Single point failure. Solo should not be used for the production ready network. Kafka: Production ready Hyperledger Fabric network uses Kafka as the Orderer implementation. Kafka is a messaging software that has high throughput fault tolerant feature.



What certificate is granted an "allocation" of transaction certificates to each user?

  1. rootcert
  2. ecerts
  3. tcerts
  4. PKI
  5. RSA

Answer(s): C

Explanation:

Each enrolled user is granted an allocation of transaction certificates (tCerts).



Chaincode with Hyperledger Fabric can be written in what development languages? Select All that apply.

  1. Node.js
  2. Go
  3. Java

Answer(s): A,B,C



The advantages of using Hyperledger Fabric include which of the following?

  1. Having a modular component structure
  2. Having a native token
  3. Having a POW mining algorithm
  4. Ability to use your programs from SQL

Answer(s): A

Explanation:

Hyperledger Fabric has a modular component structure and an extensible plug and play framework



In regards to Fabric blockchain blocks. The structure of a "block header" consists of three sections when it is written. (Select three.)

  1. Block Data
  2. Block Number
  3. Current Block Hash
  4. Previous Block Hash
  5. Block Metadata
  6. Signature

Answer(s): B,C,D

Explanation:

Let's have a closer look at the structure of a block. It consists of three sections Block Header This section comprises three fields, written when a block is created. Block number: An integer starting at 0 (the genesis block), and increased by 1 for every new block appended to the blockchain. Current Block Hash: The hash of all the transactions contained in the current block. Previous Block Hash: A copy of the hash from the previous block in the blockchain.






Post your Comments and Discuss Blockchain CBDH exam prep with other Community members:

Join the CBDH Discussion