What is the Bitcoin blockchain?
Correct answer
Answer C: A verifiable transaction history in interconnected blocks.
Quick explanation
The blockchain organizes confirmed transactions into blocks. Network nodes check that these blocks follow the rules. Your private keys do not belong in this public record.
Detailed explanation
The blockchain is the ordered transaction history organized in linked blocks. Each block header contains the previous header's hash. This creates a verifiable sequence: if an earlier block changes, subsequent hash references no longer match.
An important clarification: there is no central database that all nodes blindly access. Each full node downloads blocks, checks them against its consensus rules and stores its own validated view of the chain. When nodes apply the same valid rules and know the same chain with the most cumulative work, their best chains usually agree.
The blockchain contains confirmed transactions. Unconfirmed transactions may be in local mempools and are not yet part of the chain. The blockchain contains no private keys either. It is publicly verifiable but is not synonymous with all of Bitcoin: the system also includes nodes, the network protocol, consensus rules, wallets, miners and users choosing software and creating transactions. The blockchain is thus a core dataset of the system, not the entire system.
Sources used
Bitcoin Developer Guide - Block Chain
This source is mainly intended for developers. The relevant information may therefore be harder to find.
Check original sourceBitcoin Developer Guide - Operating Modes
This source is mainly intended for developers. The relevant information may therefore be harder to find.
Check original source

