C1000-112 무료 덤프문제 온라인 액세스
| 시험코드: | C1000-112 |
| 시험이름: | Fundamentals of Quantum Computation Using Qiskit v0.2X Developer |
| 인증사: | IBM |
| 무료 덤프 문항수: | 250 |
| 업로드 날짜: | 2026-07-20 |
Choose what value the below circuit will return?
q = QuantumRegister(2,'q')
qc = QuantumCircuit(q)
qc.h(q[0:2])
Predict the state vector output of the below quantum circuit?
qc= QuantumCircuit(3)
qc.h(0)
qc.z(0)
qc.x(1)
qc.cx(0,1)
qc.x(2)
qc.cx(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)
What will be the output of the result variable in the below snippet?
q = QuantumRegister(1,'q')
qc = QuantumCircuit(q)
qc.y(0)
backend_unitary = BasicAer.get_backend('unitary_simulator')
result = execute(qc,backend_unitary).result().get_unitary(decimals=3)