최신 C1000-112 무료덤프 - IBM Fundamentals of Quantum Computation Using Qiskit v0.2X Developer
Which of the below option will implement an operator that represents a single qubit -gate?
정답: B
Which gate is used to perform a controlled phase shift on a qubit, conditioned on the state of another qubit?
정답: B
What property distinguishes a quantum computer from a classical computer?
정답: C
What is the output of the given state in qiskit after applying CNOT to it?
1/√2|00> + 1/2|10> - 1/2|11>
1/√2|00> + 1/2|10> - 1/2|11>
정답: B
What information does the Bloch sphere visualization provide in quantum computing?
정답: D
What is the primary function of Qiskit Terra in quantum computing?
정답: A
Given this code fragment, which output fits most closely with the measurement probability distribution?
qc = QuantumCircuit(2, 2)
qc.x(0)
qc.measure([0,1], [0,1])
simulator = Aer.get_backend('qasm_simulator')
result = execute(qc, simulator, shots=1000).result()
counts = result.get_counts(qc)
print(counts)
qc = QuantumCircuit(2, 2)
qc.x(0)
qc.measure([0,1], [0,1])
simulator = Aer.get_backend('qasm_simulator')
result = execute(qc, simulator, shots=1000).result()
counts = result.get_counts(qc)
print(counts)
정답: B
How does Qiskit Terra contribute to the process of quantum circuit creation?
정답: A
Which of the following bloch_multivector plot options given below is the correct one for the given bell quantum circuit?
qc = QuantumCircuit(2)
qc.x(0)
qc.h(0)
qc.h(1)
qc = QuantumCircuit(2)
qc.x(0)
qc.h(0)
qc.h(1)
정답: A
In Qasm, how are quantum gates and operations represented within a circuit?
정답: B
What is the purpose of applying the Hadamard gate in a quantum circuit?
정답: B
What is the equivalent phase of the phase gate when it is Z-gate?


정답: B
How is the number of available quantum devices typically displayed in Qiskit?
정답: B
In the given circuit what are the possible ways to measure the quantum register using the classical register? (Select 2) q = QuantumRegister(3) c = ClassicalRegiser(3) qc = QuantumCircuit(q,c) qc.h(0) qc.cx(0,1) qc.cx(0,2) qc.barrier()


정답: B,E
Which quantum algorithm is commonly used to find factors of large composite numbers efficiently?
정답: D
In the quantum circuit, choose the best option to display the plot given below?
qc= QuantumCircuit(3)
qc.h(0)
qc.x(1)
qc.cx(0,1)
qc.h(2)
qc.cx(1,2)
qc.measure_all()
backend_qasm = BasicAer.get_backend('qasm_simulator')
job = execute(qc, backend_qasm,shots=1024)
result = job.result().get_counts()

qc= QuantumCircuit(3)
qc.h(0)
qc.x(1)
qc.cx(0,1)
qc.h(2)
qc.cx(1,2)
qc.measure_all()
backend_qasm = BasicAer.get_backend('qasm_simulator')
job = execute(qc, backend_qasm,shots=1024)
result = job.result().get_counts()

정답: A
Which quantum algorithm is primarily used for searching an unsorted database?
정답: B
How does using BasicAer simulators differ from running experiments on actual quantum hardware?
정답: D