Multiple choice
After running this circuit, what is the probability of measuring |00⟩?
// |0> (x) |+> : leave qubit 0 as |0>, apply H to qubit 1. // Result: (1/sqrt2)(|00> + |01>). const c = circuit(2); c.h(1); return c;
Commit your prediction for P(|00⟩) — then run it.