최신 C1000-112 무료덤프 - IBM Fundamentals of Quantum Computation Using Qiskit v0.2X Developer
Which Qiskit component allows the visualization of the Bloch sphere for single qubit states?
정답: D
Which quantum gate is similar to classical NOT gate?
정답: C
What is the process of decoherence in quantum systems?
정답: B
Which quantum error correction code is designed to protect against phase-flip errors?
정답: D
What role does "benchmarking" play in quantum experiments?
정답: A
What fundamental property of classical information is distinctly different in quantum information?
정답: C
Assuming the fragment below, which three code fragments would produce the circuit illustrated?
inp_reg = QuantumRegister(2, name='inp')
ancilla = QuantumRegister(1, name='anc')
qc = QuantumCircuit(inp_reg, ancilla)
# Insert code here

inp_reg = QuantumRegister(2, name='inp')
ancilla = QuantumRegister(1, name='anc')
qc = QuantumCircuit(inp_reg, ancilla)
# Insert code here

정답: A,B,E
In the circuit given below having unitary simulator as the backend, choose the
_missing_element_from the options?
qc = QuantumCircuit(1)
qc.h(0)
backend_unitary = BasicAer.get_backend('unitary_simulator')
result = execute(qc,backend_unitary).result()._missing_element_
_missing_element_from the options?
qc = QuantumCircuit(1)
qc.h(0)
backend_unitary = BasicAer.get_backend('unitary_simulator')
result = execute(qc,backend_unitary).result()._missing_element_
정답: D
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 of the following code snippet for the below quantum circuit will put the given qubits in a equiprobable states?
qc=QuantumCircuit(2)
qc=QuantumCircuit(2)
정답: A
What does the function show_configuration() in Qiskit typically display?
정답: B
Which type of error correction is more challenging in quantum information compared to classical information?
정답: A
What does the quantum operation SWAP do?
정답: D
Given an empty QuantumCircuit object, qc, with three qubits and three classical bits, which one of these code fragments would create this circuit?
정답: B
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,E
When executing experiments on real quantum hardware, what is a significant challenge that simulators help address?
정답: B