最新的IBM Fundamentals of Quantum Computation Using Qiskit v0.2X Developer - C1000-112免費考試真題
S-gate is a Qiskit phase gate with what value of the phase parameter?
正確答案: A
Which of the following command will be used to monitor the status of the job?
job1 = execute(qc,backend)
job1 = execute(qc,backend)
正確答案: A
How is the statevector of a quantum circuit typically visualized using plot_statevector() in Qiskit?
正確答案: A
What function does Qiskit Aqua primarily serve within the Qiskit ecosystem?
正確答案: A
Given this code, which two inserted code fragments result in the state vector represented by this Bloch sphere?
qc = QuantumCircuit(1,1)
# Insert code fragment here
simulator = Aer.get_backend('statevector_simulator')
job = execute(qc, simulator)
result = job.result()
outputstate = result.get_statevector(qc)
plot_bloch_multivector(outputstate)

qc = QuantumCircuit(1,1)
# Insert code fragment here
simulator = Aer.get_backend('statevector_simulator')
job = execute(qc, simulator)
result = job.result()
outputstate = result.get_statevector(qc)
plot_bloch_multivector(outputstate)

正確答案: B,C
Which type of error correction is more challenging in quantum information compared to classical information?
正確答案: A
What is the return type of the Qiskit Visualizations plots?
正確答案: B
Which Qiskit component provides access to the Aer provider for quantum simulation?
正確答案: A