|q⟩ Bad Qubits

← Question Bank

Multiple choice
Execute the circuit and measure. How likely is the outcome |01⟩?
⚛ The apparatus
const c = circuit(2);
c.h(0);
c.cx(0, 1);
c.x(1);
c.measure();
return c;

Commit your prediction for P(|01⟩) — then run it.