IBM Fundamentals of Quantum Computation Using Qiskit v0.2X Developer (C1000-112) Free Practice Test
Question 1
Which three simulators are available in BasicAer?
Correct Answer: B,C,E
Question 2
Which of the following returns process fidelity of a noisy quantum channel?
Correct Answer: B
Question 3
Given the following code, what is the depth of the circuit?
qc = QuantumCircuit(2, 2)
qc.h(0)
qc.barrier(0)
qc.cx(0,1)
qc.barrier([0,1])
qc = QuantumCircuit(2, 2)
qc.h(0)
qc.barrier(0)
qc.cx(0,1)
qc.barrier([0,1])
Correct Answer: D
Question 4
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()

Correct Answer: D
Question 5
Which two options would place a barrier across all qubits to the QuantumCircuit below?
qc = QuantumCircuit(3,3)
qc = QuantumCircuit(3,3)
Correct Answer: A,E
Question 6
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)
Correct Answer: C
Question 7
Which of the below API returns the random unitary of dimension 2?
Correct Answer: A
Question 8
What is the primary function of visualizations in quantum computing?
Correct Answer: A
Question 9
In classical information theory, information is stored in bits.
What is the quantum analogue to a bit?
What is the quantum analogue to a bit?
Correct Answer: D
Question 10
How does Qiskit Terra contribute to the process of quantum circuit creation?
Correct Answer: D
Question 11
What role does "benchmarking" play in quantum experiments?
Correct Answer: C
Question 12
What kind of information does the statevector_simulator provide about a quantum circuit?
Correct Answer: A