최신 C1000-112 무료덤프 - IBM Fundamentals of Quantum Computation Using Qiskit v0.2X Developer
In the below code snippet, what is the probability of measuring |0>?
qc = QuantumCircuit(1)
qc.ry(3*math.pi/4, 0)
qc = QuantumCircuit(1)
qc.ry(3*math.pi/4, 0)
정답: C
Which one of the below is the noisy quantum circuit simulator backend?
정답: C
What is BasicAer in Qiskit?
정답: B
What are the eigenvalues and eigenvectors of X-gate?
정답: B
Which two options would place a barrier across all qubits to the QuantumCircuit below?
qc = QuantumCircuit(3,3)
qc = QuantumCircuit(3,3)
정답: C,E
Which of the following options given below depicts the given bloch_vector plot?
정답: B
What is the output of the below snippet?
qc = QuantumCircuit(q, c)
qc.h(q)
qc.reset(q[0])
qc.measure(q, c)
job = execute(qc, backend, shots=1024)
job.result().get_counts(qc)
qc = QuantumCircuit(q, c)
qc.h(q)
qc.reset(q[0])
qc.measure(q, c)
job = execute(qc, backend, shots=1024)
job.result().get_counts(qc)
정답: D
Which parameter in QuantumCircuit.execute function performs the optimization in the scale of no- optimization to highest optimization?
정답: A
In the single-qubit quantum circuit, we apply the operators H, X, X, H, X in order, where X and H are Not and Hadamard operators respectively. (assume the qubit is initialized to |0>) What is the final state of the quantum circuit?
정답: D
Which programming paradigm best aligns with Qasm in the context of quantum computing?
정답: A
What is the depth of the below quantum circuit?
정답: B
In the below QuantumCircuit, how many Qubits are there?
q1 = QuantumRegister(7, 'q1')
q2 = ClassicalRegister(2, 'q2')
q3 = QuantumRegister(5, 'q3')
qc = QuantumCircuit(q1, q2, q3)
q1 = QuantumRegister(7, 'q1')
q2 = ClassicalRegister(2, 'q2')
q3 = QuantumRegister(5, 'q3')
qc = QuantumCircuit(q1, q2, q3)
정답: C