최신 C1000-112 무료덤프 - IBM Fundamentals of Quantum Computation Using Qiskit v0.2X Developer
Which Qiskit function is used to display the capabilities and parameters of a specific backend?
정답: A
Which Qiskit function is used to visualize the statevector of a quantum circuit?
정답: C
Which code snippet would execute a circuit given these parameters?
- use the QASM simulator,
- use a coupling map that connects three qubits linearly
- run the circuit 100 times
qc = QuantumCircuit(3)
# Insert code fragment here
result = job.result()
- use the QASM simulator,
- use a coupling map that connects three qubits linearly
- run the circuit 100 times
qc = QuantumCircuit(3)
# Insert code fragment here
result = job.result()
정답: D
What is the return type of the Qiskit Visualizations plots?
정답: B
In Qasm, what is the fundamental unit of operation in a quantum circuit called?
정답: B
If we have n qubits, how many states can we represent maximum?
정답: A
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 of the following simulator can be as good as real IBM Quantum computer?
정답: C
What information does the unitary_simulator provide for a quantum circuit?
정답: D
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
How does using BasicAer simulators differ from running experiments on actual quantum hardware?
정답: D
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
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)
bell = QuantumCircuit(2)
bell.h(0)
bell.cx(0,1)
정답: C
What will be the output for the below snippet?
q = QuantumRegister(2,"qreg")
c = ClassicalRegister(2,"creg")
qc = QuantumCircuit(q,c)
qc.x(q[0])
qc2.measure(q,c)
job = execute(qc2,Aer.get_backend('qasm_simulator'),shots=1024)
counts = job.result().get_counts(qc2)
print(counts)
q = QuantumRegister(2,"qreg")
c = ClassicalRegister(2,"creg")
qc = QuantumCircuit(q,c)
qc.x(q[0])
qc2.measure(q,c)
job = execute(qc2,Aer.get_backend('qasm_simulator'),shots=1024)
counts = job.result().get_counts(qc2)
print(counts)
정답: D