| Exam Code/Number: | C1000-112Join the discussion |
| Exam Name: | Fundamentals of Quantum Computation Using Qiskit v0.2X Developer |
| Certification: | IBM |
| Question Number: | 250 |
| Publish Date: | Jul 20, 2026 |
|
Rating
100%
|
|
Predict the state vector output of the below quantum circuit?
qc= QuantumCircuit(3)
qc.h(0)
qc.cx([0,0],[1,2])
backend_sv = BasicAer.get_backend('statevector_simulator')
job = execute(qc, backend_sv,shots=1024)
result = job.result()
sv_ev = result.get_statevector(qc)
Predict the output of counts in the below-given snippet:
q = QuantumRegister(2,'q')
c = ClassicalRegister(2,'c')
qc = QuantumCircuit(q,c)
qc.h(0)
qc.h(1)
qc.measure([0,1],[0,1])
backend = BasicAer.get_backend('qasm_simulator')
job = execute(qc, backend, shots=100)
counts = job.result().get_counts()
What Qiskit component enables simulation of quantum systems, including noise models and backends?