최신IBM Fundamentals of Quantum Computation Using Qiskit v0.2X Developer - C1000-112무료샘플문제
문제1
In quantum computing, what does superposition refer to?
In quantum computing, what does superposition refer to?
정답: A
문제2
What is the primary advantage of running experiments on a quantum simulator over actual quantum hardware?
What is the primary advantage of running experiments on a quantum simulator over actual quantum hardware?
정답: D
문제3
Predict the output of the average_gate_fidelity, process_fidelity of the below snippet:
a = Operator(XGate())
b = np.exp(1j /3) * a
average_gate_fidelity(a,b)
process_fiedlity(a,b)
Predict the output of the average_gate_fidelity, process_fidelity of the below snippet:
a = Operator(XGate())
b = np.exp(1j /3) * a
average_gate_fidelity(a,b)
process_fiedlity(a,b)
정답: D
문제4
In the below code, which of the following statement is non-unitary?
qc= QuantumCircuit(2,2)
qc.x(0)
qc.y(1)
qc.z(1)
qc.measure([0,1],[0,1])
In the below code, which of the following statement is non-unitary?
qc= QuantumCircuit(2,2)
qc.x(0)
qc.y(1)
qc.z(1)
qc.measure([0,1],[0,1])
정답: A
문제5
Which line of code would assign a qasm simulator object to the variable backend?
Which line of code would assign a qasm simulator object to the variable backend?
정답: B
문제6
Which statement will create a quantum circuit with four quantum bits and four classical bits?
Which statement will create a quantum circuit with four quantum bits and four classical bits?
정답: A
문제7
What type of simulations can be accessed using the Aer provider's simulators?
What type of simulations can be accessed using the Aer provider's simulators?
정답: B
문제8
Which of the below API returns the random unitary of dimension 2?
Which of the below API returns the random unitary of dimension 2?
정답: B
문제9
Which Python package provides BasicAer simulators in Qiskit?
Which Python package provides BasicAer simulators in Qiskit?
정답: C