-
Why is it important that the blocks are cryptographically linked together?
Because each block links to its predecessor, data in the blockchain is immutable. The hashing function means that a change in any transaction will produce an entirely different hash, which will alter the hashes of all subsequent blocks. This is of great importance because there is no governance over the network and it is a built in measure to assure the users work for the good of the network. (Ultimate security of the network) -
What does the block structure look like in bitcoin?
The block chain appears as a Merkle Tree Root. It shows the previous transactions, the date/timestamp, block number, a nonce, current block information.
A block is a container data structure . In the Bitcoin world, a block contains more than 500 transactions on average. The average size of a block seems to be 1MB (source). In Bitcoin Cash ( a hard fork from the Bitcoin blockchain ), the size of a block can go up to 8MB.
(Dev.to & medium.com)