Blockchain Technology

Blockchain Technology โ€“ Complete Guide for Competitive Exams | GyanDesk
Competitive Exam Master Guide โ€” Cybersecurity & Technology

Blockchain Technology
Complete Study Resource

Covers all exam-relevant concepts โ€” How blockchain works, Consensus Mechanisms, Types, Smart Contracts, CBDC, Digital Rupee, Indian initiatives & 65+ Interactive MCQs for Banking, UPSC, SSC, Railways & all Govt Exams

๐Ÿฆ IBPS / SBI / RBI ๐Ÿ›๏ธ UPSC / IAS ๐Ÿš‚ SSC / Railways ๐Ÿ“Š SEBI / NABARD ๐Ÿ’ป Cyber Security ๐Ÿ‡ฎ๐Ÿ‡ณ Digital India

๐Ÿ” Rank Math SEO Settings

Focus Keyword
blockchain technology explained
Secondary Keywords
blockchain in banking ยท types of blockchain ยท what is smart contract ยท CBDC Digital Rupee ยท blockchain MCQ competitive exam ยท proof of work vs proof of stake
SEO Title (โ‰ค60 chars)
Blockchain Technology Explained โ€“ Competitive Exam Guide
Meta Description (โ‰ค160 chars)
Learn blockchain technology for competitive exams. Covers how blockchain works, types, consensus mechanisms, smart contracts, CBDC, Digital Rupee & 65+ MCQs.
Suggested Slug
/blockchain-technology/
Schema / Rank Math
Article โ†’ Educational Article ยท Focus keyword in H1, Title, first 100 words, meta desc, at least one alt tag
Internal Links โ€” Suggest
Link to: Cybersecurity Basics ยท GDPR & Data Protection ยท Backup & Recovery ยท Ransomware articles on your site
Keyword Rationale
“blockchain technology explained” has solid search volume (~5Kโ€“15K/mo India), low-to-medium competition, and directly matches exam-prep intent with informational modifier
Section 01

01What is Blockchain?

Core Definition
Blockchain is a distributed digital ledger (record book) that stores data in blocks which are linked together in a chain. Each block is secured using cryptography. The ledger is maintained across many computers simultaneously โ€” so no single person or organisation controls it, and data recorded cannot be easily altered.
Simple Formula to Remember
Blockchain = Distributed Ledger + Linked Blocks + Cryptography + Immutability + No Central Authority
๐Ÿ“–
Digital Ledger
Like an accounting book โ€” but digital. Records every transaction or event in a permanent, verifiable way.
๐ŸŒ
Distributed
The same ledger is stored on thousands of computers (nodes) worldwide โ€” no single point of failure.
๐Ÿ”’
Tamper-Proof
Once data is added to a block and confirmed, altering it breaks the cryptographic link โ€” making tampering instantly detectable.
๐Ÿ‘ฅ
Decentralized
No bank, government, or single company controls blockchain. All participants jointly maintain the record.
๐Ÿ”
Transparent
In public blockchains, any participant can verify any transaction โ€” creating an open audit trail.
๐Ÿค
Trustless
Parties can transact without needing to trust each other โ€” the protocol and math ensure trust automatically.
โš ๏ธ Exam Alert โ€” Most Frequently Tested
Blockchain was invented by Satoshi Nakamoto (pseudonym) in 2008 as the technology behind Bitcoin. Bitcoin’s blockchain is the world’s first and largest public blockchain. Blockchain โ‰  Bitcoin โ€” blockchain is the underlying technology.

Section 02

02Key Features of Blockchain

FeatureSimple MeaningExam Relevance
DecentralizedNo single central authority โ€” all nodes jointly control the ledgerHigh
Distributed LedgerIdentical copy of the ledger stored across many computers/nodes simultaneouslyHigh
ImmutabilityData once written and confirmed cannot be changed or deleted without detectionHigh
TransparencyAll participants can verify transactions (especially in public blockchains)Medium
Cryptographic SecurityUses SHA-256 hashing and public-private key cryptography to secure dataHigh
Consensus MechanismAll (or majority of) participants must agree before a block is addedHigh
Peer-to-Peer (P2P)Transactions happen directly between parties โ€” no intermediary neededMedium
Smart ContractsSelf-executing code with predefined conditions โ€” automates agreementsHigh
PseudonymityParticipants use wallet addresses, not real names โ€” partial privacyLowโ€“Med
Permissioned / PermissionlessPublic blockchains = permissionless (anyone joins); Private = permissioned (approved only)Medium
Memory Trick โ€” DDTIS-C
Decentralized ยท Distributed ยท Transparent ยท Immutable ยท Secure (cryptography) ยท Consensus-based

Section 03

03How a Blockchain Works โ€” Structure of Blocks

What Each Block Contains:

ComponentWhat It IsWhy Important
Block Number / IndexSequential number identifying the block’s position in the chainIdentifies block order
Transaction DataThe actual records stored โ€” e.g., payment details, contract termsCore content of the block
TimestampDate and time when the block was createdProves when data was recorded
Hash (Current Block)Unique digital fingerprint of this block’s contents โ€” generated by SHA-256Ensures data integrity
Previous Block HashHash of the block immediately before โ€” creates the chain linkMakes tampering detectable
NonceA random number miners adjust to find a valid hash (used in Proof of Work)Proof of computation in PoW mining
Merkle RootA single hash summarising all transactions in the block using a Merkle TreeEfficient verification of all transactions

How Blocks Link Together:

Genesis Block
Block #0
Prev Hash0000…000
Hasha1b2c3…
DataFirst block
โ†’
Block #1
Prev Hasha1b2c3…
Hashd4e5f6…
DataTx: Aโ†’B โ‚น500
โ†’
Block #2
Prev Hashd4e5f6…
Hashg7h8i9…
DataTx: Cโ†’D โ‚น200
โ†’
Block #3
Prev Hashg7h8i9…
Hashj0k1l2…
DataTx: Eโ†’F โ‚น800
Why Tampering is Impossible
If someone tries to alter Block #1, its hash changes โ†’ Block #2’s “Previous Hash” becomes invalid โ†’ every block after breaks โ†’ all nodes on the network reject it. Changing even one block would require re-computing every subsequent block AND outpacing the entire network โ€” computationally impossible.
โš ๏ธ Exam Alert โ€” Key Terms
Genesis Block = First block in any blockchain (no previous hash โ€” set to all zeros)
Hash = Unique digital fingerprint of data (Bitcoin uses SHA-256)
Nonce = Number used Once โ€” miners adjust this to find a valid hash
Merkle Tree / Merkle Root = Tree structure that summarises all transactions in a block for fast verification

Section 04

04Types of Blockchain Most Asked

Public Blockchain
Access: Anyone can join, read & write
Control: Fully decentralized โ€” no owner
Consensus: PoW or PoS
Transparency: Fully public
Speed: Slower (many validators)
Examples: Bitcoin, Ethereum
Best for: Cryptocurrencies, DeFi
Private Blockchain
Access: Only invited/approved participants
Control: Single organization controls it
Consensus: PoA or custom
Transparency: Only for members
Speed: Faster (fewer validators)
Examples: Hyperledger Fabric, Corda
Best for: Enterprise, internal banking
Consortium Blockchain
Access: Group of pre-selected organizations
Control: Multiple organizations together
Consensus: PoA / BFT variants
Transparency: Semi-transparent
Speed: Fast
Examples: R3 Corda, Quorum
Best for: Inter-bank settlements, trade finance
TypePermissionWho ControlsKey FeatureExample Use in India
PublicPermissionlessNo one / EveryoneMax decentralization & transparencyCryptocurrency trading on exchanges
PrivatePermissionedSingle organizationFast, controlled, privateInternal bank ledger, corporate records
ConsortiumPermissionedGroup of organizationsShared control among trusted partiesBanking consortium for KYC / trade finance
HybridMixedOrganization + public rulesChoose what’s public vs privateGovt supply chain + private participant data
Memory Trick โ€” PPCH
Public ยท Private ยท Consortium ยท Hybrid โ€” the four types of blockchain. Banks typically use Private or Consortium blockchains for enterprise applications.

Section 05

05Consensus Mechanisms Hot MCQ

What is a Consensus Mechanism?
A set of rules by which all (or a majority of) nodes in a blockchain network agree on the valid state of the ledger before adding a new block. Without consensus, there would be conflicting versions of the chain.
MechanismFull NameHow It WorksUsed ByKey Drawback
PoW Hot Proof of Work Miners compete to solve complex mathematical puzzles. First to solve adds the block and gets reward. Bitcoin, Litecoin Very high energy consumption (mining)
PoS Hot Proof of Stake Validators are chosen based on how many coins they “stake” (lock up as collateral). No mining required. Ethereum 2.0, Cardano, Solana Can favour wealthy validators (“rich get richer”)
DPoS Delegated Proof of Stake Token holders vote for a small group of delegates who validate blocks on their behalf. EOS, TRON Slightly more centralized
PoA Proof of Authority Only pre-approved, trusted validators (identified individuals/organizations) can validate blocks. Private/enterprise blockchains, Hyperledger Centralized โ€” validators must be trusted
PBFT Practical Byzantine Fault Tolerance Works even when some nodes send incorrect/malicious data. Used in permissioned networks. Hyperledger Fabric, Ripple Doesn’t scale well with many nodes
PoET Proof of Elapsed Time Random wait timer given to each validator; the one whose timer expires first gets to add the block. Hyperledger Sawtooth Requires trusted hardware
โ›๏ธ
Proof of Work (PoW)
Miners compete using computing power to solve a puzzle. Winner adds the block & gets Bitcoin reward. Secure but wastes energy. Bitcoin uses SHA-256 hashing.
๐Ÿฆ
Proof of Stake (PoS)
No mining โ€” validators lock coins as stake. Chosen randomly (weighted by stake). 99% less energy than PoW. Ethereum switched to PoS in Sept 2022 (“The Merge”).
๐Ÿ›๏ธ
Proof of Authority (PoA)
Only pre-vetted, known validators. Fast & efficient โ€” ideal for banking & enterprise. Less decentralized but more suitable for regulated industries.
โš ๏ธ Exam Traps โ€” Know These Distinctions
PoW = Bitcoin ยท PoS = Ethereum 2.0 (after “The Merge” September 2022) ยท PoA = Private/Enterprise blockchains (banks)
PoW consumes high energy (major criticism) ยท PoS uses ~99% less energy than PoW ยท 51% attack is a threat in PoW networks where one entity gains >50% mining power

Section 06

06Smart Contracts Exam Favourite

Definition
A Smart Contract is a self-executing program stored on a blockchain that automatically carries out predefined actions when specific conditions are met โ€” with no human intervention or intermediary needed.
Simple Analogy
Smart Contract = Vending Machine. You put in money + select item โ†’ machine automatically gives you the item. Similarly, smart contracts automatically execute when conditions (like payment confirmation) are met.
FeatureDetail
Invented byNick Szabo (concept, 1994) โ€” widely deployed on Ethereum blockchain
LanguageWritten in Solidity (for Ethereum), Chaincode (for Hyperledger)
ExecutionRuns automatically when coded conditions (If-Then-Else logic) are met
ImmutableOnce deployed on blockchain, the code cannot be changed
TransparentAll parties can see the contract terms โ€” no hidden clauses
No MiddlemanNo lawyer, bank officer, or notary required for execution

Smart Contract Use Cases in Banking & Finance:

AreaHow Smart Contract Helps
Trade Finance (Letter of Credit)Auto-releases payment when shipping documents are verified on-chain โ€” removes manual processing
Loan ProcessingAuto-disburses loan funds when KYC, credit score, and collateral conditions are met
Insurance ClaimsAuto-pays claims when verified event (e.g., flight delay > 3 hours from airline data) is confirmed
Bond Coupon PaymentsAutomatically releases interest payments to bondholders on due dates
Real EstateTransfers property ownership token when buyer’s payment is confirmed on-chain
DeFi (Decentralized Finance)Enables lending, borrowing, and trading without banks โ€” entirely run by smart contracts

Section 07

07Cryptocurrency โ€” Key Facts for Exams

Critical Distinction โ€” Exam Trap
Blockchain โ‰  Cryptocurrency. Blockchain is the underlying technology. Cryptocurrency is one application of blockchain. You can have blockchain without cryptocurrency (e.g., Hyperledger for supply chain). But you cannot have cryptocurrency without blockchain.
CryptocurrencyFoundedKey FeatureConsensusExam Point
Bitcoin (BTC)2009 by Satoshi NakamotoFirst cryptocurrency; store of value; limited supply of 21 million coinsProof of Work (SHA-256)World’s first & most popular crypto
Ethereum (ETH)2015 by Vitalik ButerinSmart contracts platform; “programmable blockchain”Proof of Stake (since Sept 2022)Largest smart contract platform
Ripple (XRP)2012 by Ripple LabsCross-border payments for banks; very fast settlement (3โ€“5 seconds)RPCA (consensus protocol)Widely used by banks for remittance
Litecoin (LTC)2011 by Charlie LeeFaster than Bitcoin; lighter versionProof of Work (Scrypt)“Silver to Bitcoin’s Gold”
Stablecoins (USDT, USDC)โ€”Pegged to stable asset (USD) โ€” no price volatilityVariousBridge between crypto and traditional finance
India’s Crypto Tax Policy (Exam Relevant)
As per Union Budget 2022โ€“23: Gains from Virtual Digital Assets (VDA = cryptocurrencies, NFTs) are taxed at flat 30%. TDS of 1% on transactions above โ‚น10,000. Losses from one VDA cannot be set off against gains from another. No deduction allowed except cost of acquisition.

Section 08

08CBDC & Digital Rupee (eโ‚น) Hot MCQ

Definition โ€” CBDC
CBDC (Central Bank Digital Currency) is a digital form of a country’s sovereign currency issued and regulated by the central bank. It is legal tender โ€” same value as physical cash โ€” but exists only in digital form. Unlike private cryptocurrency, CBDC is government-backed and centrally controlled.

๐Ÿ‡ฎ๐Ÿ‡ณ India’s Digital Rupee (eโ‚น) โ€” RBI CBDC

DetailInformation
Full NameDigital Rupee (eโ‚น / eINR)
Issued byReserve Bank of India (RBI)
Legal Tender StatusYes โ€” same as physical โ‚น currency
TechnologyPermissioned (private/consortium) blockchain โ€” controlled by RBI
Pilot Launch (Wholesale)November 2022 โ€” eโ‚น-W pilot for inter-bank government securities settlement
Pilot Launch (Retail)December 2022 โ€” eโ‚น-R pilot for retail payments (launched in 4 cities initially)
Interest BearingNo โ€” eโ‚น does not earn interest (unlike bank deposits)
AnonymityPartial โ€” small transactions may be anonymous; large ones are traceable
RegulationRBI Concept Note on CBDC (Oct 2022) provides the framework
TypeFull FormTarget UsersPurpose
eโ‚น-WCBDC-WholesaleBanks and financial institutionsLarge-value inter-bank settlements, government securities transactions
eโ‚น-RCBDC-RetailGeneral public, merchantsDay-to-day retail payments โ€” P2P (person-to-person) and P2M (person-to-merchant)
FeaturePhysical Cash (โ‚น)Digital Rupee (eโ‚น)Private Cryptocurrency
Issued byRBIRBINo central issuer
Legal TenderYesYesNo (in India)
Physical formYesNo (digital only)No
VolatilityStableStableHighly volatile
Regulated by RBIYesYesNo (in India)
TraceabilityLimitedPartial to fullPseudonymous
Earns InterestNoNoSome (staking)
โš ๏ธ Exam Alert โ€” CBDC Global Context
Countries with launched CBDC: Bahamas (Sand Dollar) โ€” world’s first (2020); Nigeria (eNaira); Jamaica (JAM-DEX); China (Digital Yuan / e-CNY) โ€” largest CBDC pilot globally. India (eโ‚น) โ€” pilot since 2022. US Federal Reserve is still researching a digital dollar.

Section 09

09Applications of Blockchain in Banking & Finance

Application AreaHow Blockchain HelpsExam Relevance
Cross-border Payments / RemittanceDirect P2P transfer โ€” no correspondent banks; faster (seconds vs days); lower fees; 24ร—7 availabilityHigh
KYC (Know Your Customer)Customer verifies once โ†’ KYC data stored on blockchain โ†’ shared across banks (with consent) โ†’ no repeated KYCHigh
AML (Anti-Money Laundering)Immutable transaction trail makes it easier to detect suspicious patterns; shared ledger enables cross-bank monitoringMedium
Trade FinanceSmart contracts automate Letter of Credit (LC) workflow; reduces paperwork, forgery risk, and processing time from days to hoursHigh
Securities SettlementT+0 or near-instant settlement vs traditional T+2 (two-day settlement); reduces counterparty riskMedium
Fraud DetectionImmutable records make retroactive fraud harder; shared ledger detects duplicate transactions across institutionsHigh
Tokenization of AssetsReal estate, bonds, gold represented as digital tokens โ†’ easier fractional ownership and tradingMedium
CBDC / Digital CurrencyCentral bank-issued digital money on permissioned blockchain โ€” Digital Rupee (eโ‚น) in IndiaHigh
Supply Chain FinanceAll parties see same trusted record of goods movement โ†’ auto-financing against verified invoicesLowโ€“Med
Digital Bonds / Green BondsBond issuance, tracking, and coupon payment automated via smart contracts; World Bank, SEBI exploringLowโ€“Med
InsuranceParametric insurance โ€” smart contracts auto-pay claims based on verified real-world data (e.g., rainfall sensors for crop insurance)Medium
India-Specific Blockchain in Finance
IDRBT (Institute for Development & Research in Banking Technology) has been piloting blockchain for trade finance and KYC in India. State Bank of India uses blockchain for Smart Contracts in trade finance. SEBI has been exploring blockchain for securities settlement. NSDL is using blockchain for land records and commodity tracking.

Section 10

10Indian Govt Initiatives & Regulations

๐Ÿ‡ฎ๐Ÿ‡ณ India & Blockchain โ€” Policy Landscape

Initiative / LawDetailsExam Relevance
Digital Rupee (eโ‚น)RBI launched CBDC pilots in Nov 2022 (wholesale) & Dec 2022 (retail). Legal framework under amended RBI Act.Very High
RBI Concept Note on CBDCReleased October 2022 โ€” outlines India’s approach to CBDC, design choices, risks, and benefitsHigh
Crypto Tax (Budget 2022-23)30% tax on VDA gains; 1% TDS; no loss set-off; defines Virtual Digital Assets legally for the first timeVery High
National Blockchain StrategyMeitY released a draft framework for blockchain adoption in government services (land records, certificates, supply chain)Medium
Blockchain in Land RecordsAndhra Pradesh, Telangana, and Maharashtra piloting blockchain for land registration to reduce fraudMedium
NIC Blockchain PlatformNational Informatics Centre (NIC) developed a blockchain platform for e-governance โ€” used for certificate verificationMedium
PMLA + FIU-INDCrypto exchanges must register with FIU-IND (Financial Intelligence Unit โ€“ India) under PMLA; report suspicious crypto transactionsHigh
SEBI & BlockchainSEBI exploring Distributed Ledger Technology (DLT) for mutual fund record-keeping and bond settlementsMedium
Cryptocurrency RegulationIndia has NOT banned crypto โ€” but has NOT given it legal tender status. It is treated as a speculative asset taxed as VDA. No comprehensive crypto law yet (as of 2025).Very High
IDRBT Blockchain LabsRBI’s research arm IDRBT actively researches blockchain for banking โ€” published reports on DLT applications in Indian bankingLowโ€“Med
โš ๏ธ Exam Alert โ€” Crypto Status in India
India has NOT banned cryptocurrency. It is legal to hold/trade but is NOT legal tender. Gains taxed at 30% + 1% TDS. Crypto exchanges must register with FIU-IND under PMLA. The government has been considering a comprehensive crypto regulation bill but it has not been passed yet (as of 2025). The only government-issued digital currency is eโ‚น (Digital Rupee) by RBI.

Section 11

11Blockchain vs Traditional Database

ParameterBlockchainTraditional Database (e.g., SQL)
ControlDecentralized โ€” no single ownerCentralized โ€” administrator controls
Data ModificationImmutable โ€” cannot change confirmed dataCRUD (Create, Read, Update, Delete) freely
TransparencyAll nodes see same data (in public blockchains)Only authorized users see data
TrustTrustless โ€” math/cryptography ensures trustTrust in the administrator/organization
SpeedSlower (consensus required for each block)Faster (single admin, no consensus)
CostHigher (computing for consensus)Lower for simple applications
Single Point of FailureNone โ€” distributed across many nodesYes โ€” if central server fails, all data at risk
Best forMulti-party, no-trust scenarios needing immutable recordSingle-organization, high-speed, mutable data

Section 12

12Advantages, Disadvantages & Challenges

โœ…
Advantages
โœ“ Tamper-proof immutable records
โœ“ No single point of failure
โœ“ Reduces fraud & data manipulation
โœ“ Faster cross-border settlements
โœ“ Eliminates middlemen โ€” lower costs
โœ“ Transparent audit trail
โœ“ Enables smart contracts & automation
โœ“ Strong cryptographic security
โŒ
Disadvantages
โœ— High energy use (especially PoW)
โœ— Slower than traditional databases
โœ— Scalability issues โ€” limited TPS
โœ— Complex technology โ€” hard to implement
โœ— Data once added cannot be deleted (GDPR conflict)
โœ— 51% attack risk in public chains
โœ— No regulatory certainty in many countries
โœ— High initial implementation cost
โš ๏ธ
Challenges in India
โšก No comprehensive crypto law yet
โšก Regulatory uncertainty for fintechs
โšก Privacy vs transparency conflict (DPDP Act)
โšก Integration with legacy banking systems
โšก Lack of awareness & skilled workforce
โšก Risk of misuse in illegal transactions
โšก Interoperability between different blockchains

โšก Quick Revision Sheet โ€” Read Before Your Exam

What is Blockchain?
Distributed digital ledger ยท Blocks linked by cryptographic hashes ยท Immutable ยท Decentralized ยท Consensus-based
Invented By / When
Satoshi Nakamoto (pseudonym) ยท 2008 paper ยท First implemented as Bitcoin (2009)
Block Contains
Block number ยท Data ยท Timestamp ยท Current Hash ยท Previous Hash ยท Nonce ยท Merkle Root
Genesis Block
First block in any blockchain ยท No previous hash ยท Starting point of chain
4 Types
Public (Bitcoin, Ethereum) ยท Private (Hyperledger) ยท Consortium (R3, Quorum) ยท Hybrid
Consensus
PoW = Bitcoin (energy-heavy) ยท PoS = Ethereum 2.0 (energy-efficient) ยท PoA = Banks/enterprise ยท PBFT = Hyperledger
51% Attack
Single entity controls >50% mining power โ†’ can double-spend or censor transactions. Major PoW risk.
Smart Contract
Self-executing code ยท No middleman ยท Invented by Nick Szabo ยท Popularised by Ethereum ยท Written in Solidity
Blockchain โ‰  Crypto
Blockchain = technology platform ยท Cryptocurrency = ONE application of blockchain
CBDC โ€” eโ‚น
RBI’s Digital Rupee ยท Legal tender ยท Permissioned blockchain ยท eโ‚น-W (banks) + eโ‚น-R (retail) ยท Pilot 2022
India Crypto Tax
30% tax on VDA gains ยท 1% TDS above โ‚น10K ยท No loss set-off ยท Budget 2022โ€“23
Banking Uses
Cross-border payments ยท KYC sharing ยท Trade finance ยท Fraud detection ยท Securities settlement ยท CBDC
First World CBDC
Bahamas โ€” Sand Dollar (2020). China’s e-CNY = largest pilot. India’s eโ‚น pilot = 2022.
Crypto + PMLA India
Crypto exchanges must register with FIU-IND ยท Report suspicious transactions under PMLA (since 2023)
Ethereum “The Merge”
Sept 2022 โ€” Ethereum switched from PoW to PoS ยท 99% less energy ยท Major blockchain milestone
Key Hashing Algorithm
Bitcoin uses SHA-256 ยท Produces 256-bit unique hash ยท One-way function ยท Collision resistant
๐Ÿง 

Interactive MCQ Practice Bank

65+ Questions ยท Tap any option to reveal the answer ยท Based on Previous Exam Trends ยท Banking ยท UPSC ยท SSC ยท Railways ยท RBI ยท SEBI

Your Score

0 / 0
Attempt questions to see your score
๐Ÿ“˜ Chapter 1 โ€” Basics & Core Concepts (Q1โ€“Q15)
โ˜… HOT
Q1. Blockchain is best described as a:
Answer: B โ€” Distributed, shared, and immutable digital ledger secured by cryptography.
Blockchain stores identical copies of records at many nodes (computers), forming a shared ledger. Data once recorded cannot be easily changed.
โ˜… HOT
Q2. Who invented Bitcoin and the concept of blockchain?
Answer: C โ€” Satoshi Nakamoto.
Satoshi Nakamoto is a pseudonym (real identity unknown) who published the Bitcoin whitepaper in 2008 and launched the Bitcoin network in January 2009.
โ˜… HOT
Q3. In blockchain, data is stored in units called:
Answer: C โ€” Blocks.
Each block contains transaction data, a timestamp, the hash of the current block, and the hash of the previous block โ€” creating the “chain” in blockchain.
โ˜… HOT
Q4. The FIRST block in any blockchain is called:
Answer: B โ€” Genesis Block.
The Genesis Block is Block #0 โ€” the starting point of any blockchain. It has no “previous hash” (set to all zeros) since there is no block before it.
โ˜… HOT
Q5. What makes blockchain data tamper-proof?
Answer: B โ€” Hash chain linking.
Each block contains the hash of the previous block. Changing Block #2’s data changes its hash โ†’ Block #3’s “Previous Hash” becomes invalid โ†’ every block after is broken โ†’ all nodes reject it.
Q6
Q6. “Decentralization” in blockchain means:
Answer: B โ€” No single central authority.
Thousands of computers (nodes) worldwide maintain identical copies of the blockchain. No single node has complete control โ€” this eliminates single points of failure or control.
Q7
Q7. Which technology is fundamental to securing blockchain data?
Answer: B โ€” Cryptography.
Blockchain uses cryptographic hash functions (SHA-256 for Bitcoin) and public-private key pairs to secure data, link blocks, and authenticate transactions without a central authority.
โ˜… HOT
Q8. The “double-spending problem” in digital money refers to:
Answer: B โ€” Double-spending of digital currency.
Unlike physical cash, digital files can be copied. Without blockchain, a digital coin could be spent twice. Blockchain’s consensus mechanism ensures each coin can only be spent once, globally.
Q9
Q9. “Immutability” in blockchain means:
Answer: C โ€” Cannot be altered or deleted.
Immutability is one of blockchain’s defining features. This property makes it ideal for financial records, audit trails, and any application where permanent, tamper-proof records are required.
Q10
Q10. Which of these is NOT a core feature of blockchain?
Answer: B โ€” Single centralized control.
The defining feature of blockchain is decentralization โ€” no single entity controls it. Central control is exactly what blockchain eliminates.
Q11
Q11. Hashing algorithm used by Bitcoin blockchain is:
Answer: B โ€” SHA-256.
Bitcoin uses SHA-256 (Secure Hash Algorithm 256-bit) to generate hashes for blocks. It produces a unique 256-bit (64 hexadecimal character) fingerprint for any input data.
Q12
Q12. A “Merkle Root” in a blockchain block is:
Answer: B โ€” A single hash summarizing all transactions.
Merkle Tree is a binary hash tree where each transaction is hashed, hashes are paired and re-hashed up to the root. The Merkle Root allows efficient verification that a specific transaction is in the block.
Q13
Q13. “Nonce” in blockchain (Proof of Work) refers to:
Answer: B โ€” A number miners adjust to solve the PoW puzzle.
Nonce = Number Used Once. Miners try billions of nonce values until the block’s hash starts with enough zeros (difficulty target) โ€” proving computational work was done.
Q14
Q14. A “node” in a blockchain network is:
Answer: B โ€” Any participating computer maintaining the ledger.
Nodes are participants in the blockchain network. Full nodes store the entire blockchain, validate transactions, and help maintain decentralization. Anyone can run a node on public blockchains like Bitcoin.
Q15
Q15. A “51% attack” on a public blockchain occurs when:
Answer: B โ€” Majority mining power control enabling double-spending.
In PoW blockchains, whoever controls >50% computing power can rewrite transaction history, reverse transactions, and double-spend coins. This is a theoretical threat that makes large blockchains like Bitcoin very secure (too costly to attack).
๐Ÿ“— Chapter 2 โ€” Types of Blockchain & Consensus (Q16โ€“Q30)
โ˜… HOT
Q16. A public blockchain is best defined as:
Answer: B โ€” Open, permissionless network.
Public blockchains like Bitcoin and Ethereum allow anyone to join, validate transactions, and view the ledger without permission. They offer maximum decentralization and transparency.
โ˜… HOT
Q17. A consortium blockchain is managed by:
Answer: B โ€” A group of pre-selected organizations.
Consortium (federated) blockchains are controlled by multiple organizations together โ€” e.g., multiple banks forming a blockchain for inter-bank KYC or trade finance. Examples: R3 Corda, Quorum.
Q18
Q18. Which blockchain type is MOST suitable for banking KYC sharing between multiple banks?
Answer: B โ€” Consortium blockchain.
Banks need to share KYC data with each other but NOT with the general public. A consortium blockchain (permissioned, shared among trusted institutions) balances transparency among members with privacy from outsiders.
โ˜… HOT
Q19. Proof of Work (PoW) consensus requires miners to:
Answer: B โ€” Solve computational puzzles.
In PoW, miners compete to find a nonce that makes the block’s hash meet the difficulty target (e.g., starting with many zeros). The winner adds the block and receives a block reward. Used by Bitcoin.
โ˜… HOT
Q20. The MAIN disadvantage of Proof of Work (PoW) is:
Answer: B โ€” Extremely high energy consumption.
PoW’s competitive mining process requires massive computing power running continuously, consuming huge amounts of electricity. This is the primary environmental criticism of Bitcoin and a major reason Ethereum switched to PoS.
โ˜… HOT
Q21. Ethereum switched from Proof of Work to Proof of Stake in:
Answer: B โ€” September 2022 (“The Merge”).
“The Merge” in September 2022 was Ethereum’s transition from energy-intensive PoW to eco-friendly PoS. This reduced Ethereum’s energy consumption by approximately 99.95%.
Q22
Q22. In Proof of Stake (PoS), validators are chosen based on:
Answer: B โ€” Amount of cryptocurrency staked.
In PoS, validators lock up coins as collateral. They are selected (often randomly but weighted by stake size) to propose and validate blocks. Misbehavior results in losing staked funds (“slashing”).
Q23
Q23. Proof of Authority (PoA) is most suitable for:
Answer: B โ€” Private and enterprise blockchains.
PoA delegates validation authority to pre-approved, identity-verified validators. It’s fast, energy-efficient, and suitable for banking consortiums and enterprise applications where participants are known.
Q24
Q24. Hyperledger Fabric is an example of which type of blockchain?
Answer: B โ€” Private/permissioned enterprise blockchain.
Hyperledger Fabric (by Linux Foundation, backed by IBM) is a permissioned blockchain framework designed for enterprise use โ€” banks, supply chains, healthcare. It has no native cryptocurrency.
โ˜… EXPECTED
Q25. PBFT (Practical Byzantine Fault Tolerance) in blockchain means the network can still function correctly even when:
Answer: B โ€” Tolerates faulty/malicious nodes (up to 1/3).
PBFT allows the network to reach consensus even if some nodes are faulty or malicious โ€” as long as less than 1/3 of nodes behave badly. Used in Hyperledger Fabric and Ripple for fast, finality-guaranteed consensus in permissioned networks.
๐Ÿ“™ Chapter 3 โ€” Smart Contracts & Cryptocurrency (Q26โ€“Q40)
โ˜… HOT
Q26. A Smart Contract is BEST defined as:
Answer: B โ€” Self-executing blockchain program.
Smart contracts execute automatically when conditions are met โ€” like a vending machine. No human intermediary (lawyer, bank officer) is needed. First deployed widely on Ethereum. Written in Solidity language.
Q27
Q27. Smart Contracts were conceptually invented by:
Answer: B โ€” Nick Szabo (concept) / Vitalik Buterin (implementation).
Nick Szabo coined the term “Smart Contract” in 1994. Vitalik Buterin created Ethereum (2015) โ€” the first blockchain to widely implement smart contracts using the Solidity programming language.
Q28
Q28. In trade finance, smart contracts can automate which process?
Answer: B โ€” Letter of Credit automation.
Traditional LC process takes 5โ€“10 days with physical documents. Smart contracts can verify shipping milestones on-chain and automatically release payment โ€” reducing LC settlement to hours.
โ˜… HOT
Q29. Which statement is CORRECT about blockchain and cryptocurrency?
Answer: C โ€” Blockchain is the tech; crypto is one use.
Blockchain has countless uses beyond cryptocurrency: KYC, trade finance, supply chain, land records, healthcare, etc. Private/consortium blockchains used by banks don’t even have a cryptocurrency component.
Q30
Q30. Ethereum was founded by:
Answer: B โ€” Vitalik Buterin, 2015.
Vitalik Buterin, a Canadian-Russian programmer, conceptualized Ethereum in 2013 and launched it in 2015. Ethereum introduced programmable smart contracts to the blockchain world and is now the second-largest cryptocurrency by market cap.
Q31
Q31. Ripple (XRP) is primarily used for:
Answer: B โ€” Cross-border payments for financial institutions.
Ripple (XRP Ledger) focuses on fast, low-cost international money transfer for banks. Many banks use RippleNet to settle cross-border transactions in seconds vs days for traditional SWIFT transfers.
Q32
Q32. Bitcoin has a maximum supply limit of:
Answer: B โ€” 21 million Bitcoin.
Bitcoin’s maximum supply is hardcoded at 21 million coins โ€” making it a deflationary asset (unlike fiat currencies which can be printed infinitely). This scarcity is one reason why Bitcoin is called “digital gold.”
โ˜… EXPECTED
Q33. A “stablecoin” in cryptocurrency is:
Answer: B โ€” Crypto pegged to a stable asset.
Stablecoins (USDT, USDC) maintain a 1:1 peg to a stable currency like USD, reducing the wild price swings of Bitcoin/Ethereum. They bridge traditional finance and DeFi, widely used in crypto trading and remittances.
Q34
Q34. NFT (Non-Fungible Token) refers to:
Answer: B โ€” Unique digital asset proving digital ownership.
Unlike fungible tokens (1 Bitcoin = 1 Bitcoin), each NFT is unique and non-interchangeable. NFTs prove digital ownership of art, music, game items, domain names, etc. on the blockchain โ€” primarily on Ethereum.
โ˜… EXPECTED
Q35. DeFi (Decentralized Finance) refers to:
Answer: B โ€” Financial services via smart contracts, no banks.
DeFi protocols (Uniswap, Aave, Compound) run entirely on smart contracts. Users can lend, borrow, earn interest, and trade crypto assets without any bank or financial intermediary โ€” 24/7, globally accessible.
๐Ÿ“• Chapter 4 โ€” CBDC, Digital Rupee & India Context (Q36โ€“Q50)
โ˜… HOT
Q36. CBDC stands for:
Answer: B โ€” Central Bank Digital Currency.
CBDC is a digital form of a country’s sovereign currency issued and guaranteed by the central bank. Unlike private cryptocurrency, it has legal tender status and is fully regulated.
โ˜… HOT
Q37. India’s Digital Rupee (eโ‚น) is issued by:
Answer: B โ€” Reserve Bank of India (RBI).
The Digital Rupee (eโ‚น) is India’s CBDC issued by RBI. It is legal tender โ€” same value as physical โ‚น currency โ€” but exists only in digital form on a permissioned blockchain controlled by RBI.
โ˜… HOT
Q38. RBI launched the Digital Rupee Wholesale (eโ‚น-W) pilot in:
Answer: B โ€” November 2022.
RBI launched the eโ‚น-W (Wholesale CBDC) pilot in November 2022 for government securities settlement. The eโ‚น-R (Retail CBDC) pilot followed in December 2022, starting in 4 cities with select banks.
โ˜… HOT
Q39. eโ‚น-W (Wholesale CBDC) is primarily meant for:
Answer: B โ€” Inter-bank and large-value settlements.
eโ‚น-W is designed for the wholesale segment โ€” banks and financial institutions use it for inter-bank settlement of government securities. eโ‚น-R (retail) is for everyday public use.
โ˜… HOT
Q40. How is the Digital Rupee (eโ‚น) DIFFERENT from a private cryptocurrency like Bitcoin?
Answer: B โ€” eโ‚น is government-backed legal tender; Bitcoin is not.
Key differences: eโ‚น is centralized (RBI controls), stable value (equals physical โ‚น), legal tender, regulated. Bitcoin is decentralized, volatile, no central issuer, NOT legal tender in India.
Q41
Q41. The world’s FIRST officially launched CBDC was:
Answer: B โ€” Bahamas’ Sand Dollar (2020).
The Bahamas launched the Sand Dollar in October 2020 โ€” making it the world’s first fully operational CBDC. China’s e-CNY is the largest CBDC pilot but was launched as a pilot. The US has not yet launched a digital dollar.
โ˜… HOT
Q42. Under India’s Budget 2022-23, gains from Virtual Digital Assets (cryptocurrency, NFTs) are taxed at:
Answer: B โ€” 30% flat tax.
Budget 2022-23 introduced 30% flat tax on VDA gains (cryptocurrency, NFTs) + 1% TDS on transactions above โ‚น10,000. Losses from one VDA cannot be set off against gains from another VDA. First time India legally defined Virtual Digital Assets.
โ˜… HOT
Q43. Cryptocurrency exchanges in India are required to register with which body under PMLA?
Answer: B โ€” FIU-IND under PMLA.
From March 2023, crypto exchanges operating in India must register with FIU-IND (Financial Intelligence Unit โ€“ India) as Reporting Entities under PMLA (Prevention of Money Laundering Act). They must report suspicious transactions.
Q44
Q44. India’s legal status of cryptocurrency (as of 2025) is:
Answer: B โ€” Legal but not legal tender; taxed as VDA.
India has NOT banned cryptocurrency. You can buy/sell/hold crypto legally. But it is NOT legal tender โ€” you cannot use Bitcoin to buy groceries. Gains taxed at 30% as Virtual Digital Asset (VDA) under Income Tax Act.
Q45
Q45. Which Indian government body has drafted a National Blockchain Strategy for government services?
Answer: B โ€” MeitY.
MeitY (Ministry of Electronics and IT) released a draft National Blockchain Strategy framework for adopting blockchain in government services including land records, certificates, identity verification, and supply chain.
๐Ÿ“’ Chapter 5 โ€” Banking Applications & Advanced MCQs (Q46โ€“Q65)
โ˜… HOT
Q46. The main advantage of blockchain for cross-border payments is:
Answer: B โ€” Direct P2P transfer, no intermediaries needed.
Traditional SWIFT cross-border payments involve multiple correspondent banks, take 3โ€“5 business days, and charge high fees. Blockchain-based transfers can settle in minutes/seconds at a fraction of the cost.
โ˜… HOT
Q47. How does blockchain improve KYC (Know Your Customer) in banking?
Answer: B โ€” Shared, verified KYC across institutions with consent.
Currently, banks repeat KYC for each new customer โ€” wasting time and money. Blockchain KYC lets a customer verify once; verified data is stored on-chain and securely shared with other banks (only with customer consent), reducing onboarding time from days to minutes.
Q48
Q48. “Tokenization of assets” in blockchain means:
Answer: B โ€” Real-world assets as blockchain digital tokens.
Tokenization allows assets like real estate (normally indivisible) to be split into thousands of digital tokens โ€” enabling fractional ownership, 24/7 trading, and instant settlement. E.g., owning โ‚น1000 worth of a โ‚น1 crore property.
Q49
Q49. In securities settlement, blockchain can reduce settlement time to:
Answer: B โ€” T+0 or near-instant.
Current equity settlement is T+2 (trade + 2 business days) with multiple intermediaries. Blockchain enables near-instant (T+0) settlement, eliminating settlement risk and the capital tied up during the settlement window. SEBI is exploring this for Indian markets.
โ˜… EXPECTED
Q50. Distributed Ledger Technology (DLT) is related to blockchain as:
Answer: B โ€” Blockchain is a type of DLT.
DLT (Distributed Ledger Technology) is the umbrella term for any system that distributes records across multiple nodes. Blockchain (with its linked, hashed blocks) is the most famous DLT implementation. Other DLTs like Directed Acyclic Graph (DAG) used by IOTA also exist.
Q51
Q51. Which Indian institution research blockchain applications for banking?
Answer: B โ€” IDRBT.
IDRBT (Institute for Development and Research in Banking Technology), established by RBI, actively researches blockchain/DLT for banking applications including trade finance, KYC, and payment systems in the Indian context.
Q52
Q52. Parametric crop insurance using blockchain in India can automatically pay farmers when:
Answer: B โ€” Auto-payment via smart contract based on verified data.
Parametric insurance uses real-world data (rainfall sensors, satellite data) fed into smart contracts. If rainfall drops below a preset threshold, the smart contract automatically transfers the claim amount to the farmer’s account โ€” no paperwork, no delays.
Q53
Q53. A major conflict between blockchain’s immutability and data protection law is:
Answer: B โ€” Right to Erasure vs. blockchain immutability conflict.
GDPR’s “Right to be Forgotten” and India’s DPDP Act’s right to erasure require personal data to be deletable. But blockchain data cannot be deleted once confirmed. Solutions include: storing only hashes on-chain (not personal data itself), or using private/permissioned blockchains with governance mechanisms.
Q54
Q54. Which state in India has piloted blockchain for land record management?
Answer: B โ€” Andhra Pradesh and Telangana.
Andhra Pradesh and Telangana have piloted blockchain for land registration records to reduce fraud, forgery, and disputes. Maharashtra has also worked on similar initiatives. Blockchain creates an immutable record of ownership transfers.
โ˜… EXPECTED
Q55. The main scalability challenge of blockchain is that:
Answer: B โ€” Limited transactions per second (TPS).
Bitcoin processes ~7 TPS; Ethereum ~15โ€“30 TPS; Visa processes ~24,000 TPS. This scalability gap is a major challenge for blockchain adoption in high-volume payment systems. Solutions: Layer 2 networks (Lightning Network for Bitcoin), sharding (Ethereum 2.0), Solana (~65,000 TPS).
Q56
Q56. “Mining” in Proof of Work blockchain refers to:
Answer: B โ€” Using computing power to validate blocks and earn crypto rewards.
Miners run specialized hardware (ASICs for Bitcoin) solving SHA-256 puzzles. The winner adds the block and earns block reward (currently 3.125 BTC after April 2024 halving) + transaction fees. This secures the network through computational work.
โ˜… EXPECTED
Q57. “Bitcoin Halving” refers to:
Answer: B โ€” Block reward cuts in half every ~4 years.
Bitcoin halvings occur every 210,000 blocks (~4 years). The most recent halving was April 2024 โ€” reducing the block reward from 6.25 BTC to 3.125 BTC. This controls inflation and enforces Bitcoin’s scarcity (max 21 million BTC). Halvings are associated with price cycles.
Q58
Q58. “Blockchain Interoperability” refers to:
Answer: B โ€” Different blockchains communicating and sharing data.
Today Bitcoin, Ethereum, and Hyperledger are separate systems that can’t natively interact. Interoperability solutions (Polkadot, Cosmos, cross-chain bridges) allow assets and data to move between blockchains โ€” critical for enterprise and banking adoption.
Q59
Q59. “Web3” in the context of blockchain refers to:
Answer: B โ€” Decentralized internet on blockchain.
Web1 = Read-only internet. Web2 = Read-write (social media, platforms own your data). Web3 = Read-write-own โ€” users control their own data and digital assets through blockchain, smart contracts, and tokens.
โ˜… HOT
Q60. Which of the following is correct about Ethereum compared to Bitcoin?
Answer: B โ€” Ethereum supports smart contracts; Bitcoin primarily is digital money.
Bitcoin (2009) = Digital currency + store of value. Ethereum (2015) = Programmable blockchain platform supporting smart contracts, DApps, NFTs, DeFi, DAOs. Bitcoin uses PoW; Ethereum uses PoS (since Sept 2022).
Q61
Q61. A “wallet” in cryptocurrency refers to:
Answer: B โ€” Software/hardware storing private and public keys.
A crypto wallet doesn’t store cryptocurrency (which lives on the blockchain) โ€” it stores the cryptographic keys that prove ownership and allow transactions. Hot wallets (online) are convenient; cold wallets (hardware, offline) are more secure.
Q62
Q62. “Hard Fork” in blockchain means:
Answer: B โ€” Backward-incompatible protocol change creating a chain split.
A Hard Fork results in two separate blockchains when the community disagrees on protocol changes. Famous examples: Bitcoin vs Bitcoin Cash (2017); Ethereum vs Ethereum Classic (2016 after the DAO hack).
โ˜… EXPECTED
Q63. “DAO” (Decentralized Autonomous Organization) in blockchain context is:
Answer: B โ€” Organization governed by smart contracts and token holder votes.
A DAO has no CEO or traditional hierarchy. Governance decisions (how to spend funds, change rules) are made by token holders voting on-chain. Smart contracts automatically execute approved decisions. MakerDAO (issues DAI stablecoin) is a famous example.
Q64
Q64. Which of the following correctly differentiates blockchain from traditional databases for exam purposes?
Answer: B โ€” Core architecture differences.
The key distinction: Blockchain = trustless, immutable, decentralized (ideal for multi-party, no-trust scenarios). Traditional DB = fast, flexible, efficient (ideal for single-organization, high-speed, mutable data needs).
โ˜… HOT
Q65. Which is the most comprehensive and accurate statement about blockchain’s role in Indian banking and finance?
Answer: B โ€” Blockchain as a complementary technology with real use-cases and real challenges.
This is the balanced exam-ready answer. Blockchain is not a replacement but a complement to banking infrastructure โ€” offering specific advantages (shared ledger, immutability, smart contracts) while facing genuine challenges (scalability, regulation, integration). India’s Digital Rupee is the most significant blockchain-related development in Indian banking.
Master Reference

โœ“All Key Facts at a Glance

TopicKey Fact
Blockchain InventedSatoshi Nakamoto, 2008 (Bitcoin whitepaper)
First Blockchain UseBitcoin launched January 3, 2009
Genesis BlockFirst block in any blockchain โ€” no previous hash (set to zeros)
Hash Algorithm (Bitcoin)SHA-256 (256-bit hash)
NonceNumber Used Once โ€” adjusted by miners to find valid hash
4 Types of BlockchainPublic ยท Private ยท Consortium (Federated) ยท Hybrid
PoW Used ByBitcoin โ€” high energy, mining-based consensus
PoS Used ByEthereum 2.0 โ€” since “The Merge” September 2022
PoA Used ByPrivate/enterprise blockchains โ€” banks, Hyperledger
51% AttackSingle entity controls >50% hashing power โ†’ double-spending risk
Smart ContractNick Szabo (concept 1994) ยท Ethereum (deployed 2015) ยท Written in Solidity
Ethereum FounderVitalik Buterin โ€” launched 2015
Bitcoin Max Supply21 million coins โ€” hardcoded limit
Bitcoin HalvingEvery ~4 years (210,000 blocks) โ€” latest April 2024 (reward: 3.125 BTC)
CBDC โ€” IndiaDigital Rupee (eโ‚น) by RBI ยท eโ‚น-W pilot Nov 2022 ยท eโ‚น-R pilot Dec 2022
World’s First CBDCBahamas โ€” Sand Dollar (2020)
Largest CBDC PilotChina โ€” Digital Yuan (e-CNY)
India Crypto Tax30% flat + 1% TDS (above โ‚น10K) ยท Budget 2022โ€“23
Crypto + PMLA IndiaExchanges must register with FIU-IND (since March 2023)
Hyperledger FabricPrivate/permissioned enterprise blockchain ยท Linux Foundation ยท No native crypto
Ripple (XRP)Cross-border bank payments ยท Settles in 3โ€“5 seconds
NFTNon-Fungible Token โ€” unique digital asset proving ownership; primarily on Ethereum
DeFiDecentralized Finance โ€” financial services via smart contracts, no banks
Web3Decentralized internet on blockchain โ€” users own their data and assets
IDRBTRBI’s banking technology research arm โ€” studies blockchain for Indian banking
Ethereum The MergeSeptember 2022 โ€” Switched from PoW to PoS, 99% energy reduction
GyanDesk โ€” Competitive Exam Cybersecurity & Technology Study Resource
Covers Blockchain Technology for Banking, UPSC, SSC, Railways, RBI, SEBI & all Government Exams ยท 65+ Interactive MCQs
โš ๏ธ Always check latest RBI/SEBI/Government notifications before your exam โ€” cryptocurrency and CBDC policies evolve rapidly.

ยฉ GyanDesk | Study Smart. Revise Fast. Score High.