In the below QuantumCircuit, how many Qubits are there? bob = QuantumRegister(8,'b') alice = ClassicalRegister(2,'a') eve = QuantumRegister(4,'e') qc = QuantumCircuit(bob,alice,eve)
In the given circuit what are the possible ways to measure the quantum register using the classical register? (Select 2) q = QuantumRegister(3) c = ClassicalRegiser(3) qc = QuantumCircuit(q,c) qc.h(0) qc.cx(0,1) qc.cx(0,2) qc.barrier()