Sign in

Solana essentials - Test

01.

When you deploy a Solana program, its compiled BPF bytecode lives where?

02.

Your program needs a counter that persists across calls. Where does the counter live?

03.

Why does every Solana transaction list, in advance, every account it will read or write?

04.

Two transactions are submitted in the same slot. Both invoke the same program. Both read from the same global config account. Can they run in parallel?

05.

Your program tries to create a 200-byte account, funding it with 1,000 lamports. The rent-exempt minimum for 200 bytes is roughly 2.2 million lamports. What happens?

06.

A transaction is signed by three distinct wallets. Ignoring priority fees, what is the base fee in lamports?

07.

Solana programs cannot make external network calls during execution. What is the fundamental reason?

08.

Proof of History is best described as: