최신 IBM Certified Associate Developer C1000-112 무료샘플문제:
1. Which of the following bloch_multivector plot options given below is the correct one for the given bell quantum circuit?
bell = QuantumCircuit(2)
bell.h(0)
bell.cx(0,1)
A)
B)
C)
D)
2. Which type of information is typically displayed when utilizing the show_configuration() function in Qiskit?
A) Visualization of quantum gates in a circuit
B) Quantum job configurations and setup details
C) Displaying quantum device status and errors
D) User-specific configurations for quantum simulations
3. Which of the following options will be best suited for the missing statement in the below snippet to achieve the quantum state i|10〉?
from qiskit import QuantumRegister, ClassicalRegister, QuantumCircuit, execute, Aer qc= QuantumCircuit(2,2)
#missing statement
A) qc.s(0)
qc.x(0)
B) qc.z(1)
qc.x(1)
C) qc.y(0)
D) qc.y(1)
4. Which command is used to get the version of qiskit packages and the system information of the system?
A) print(__version__)
B) print(qiskit.__qiskit_version__)
C) print(qiskit.__version__)
D) print(qiskit_version)
5. Which of the following statement will return a random state vector of dimension 2?
A) random_statevector_operator(2)
B) random_get_statevector_operator(2)
C) random_statevector(2)
D) random_get_statevector(2)
질문과 대답:
질문 # 1 정답: D | 질문 # 2 정답: B | 질문 # 3 정답: D | 질문 # 4 정답: B | 질문 # 5 정답: C |