|q⟩ Bad Qubits

← Question Bank

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

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