IBM Fundamentals of Quantum Computation Using Qiskit v0.2X Developer - C1000-112 Exam Practice Test

In the below code, which of the following statement is non-unitary?
qc= QuantumCircuit(2,2)
qc.x(0)
qc.y(1)
qc.z(1)
qc.measure([0,1],[0,1])
Correct Answer: B
What is the primary advantage of using BasicAer simulators in Qiskit?
Correct Answer: A
Which of the following gates act as hermitian opeartors? (select 3)
Correct Answer: A,C,E
What is the primary function of visualizations in quantum computing?
Correct Answer: C
What is barrier instruction between the H-gates in the below quantum circuit do?
Correct Answer: A
What does a Qasm file typically contain?
Correct Answer: B
What does the draw(output='latex') function in qiskit returns?
Correct Answer: A
For the given quantum circuit, what is missing barrier instruction statements 1 & 2 below?
qc = QuantumCircuit(3)
qc.h(0)
qc.z(1)
qc.x(2)
# missing_statement_1
qc.cx(0,1)
qc.h(2)
# missing_statement_2
qc.draw(output='mpl')
Correct Answer: B
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)
Correct Answer: A
What is the resultant gate when we apply three Hadamard gates (in series) in the single-qubit circuit?
Correct Answer: C
In the below quantum circuit, which statement should be added in the missing code to get the below desired state?
(select only 2)
qc = QuantumCircuit(3)
qc.h(0)
qc.cx([0,1],[1,2])
backend = BasicAer.get_backend('statevector_simulator')
job = execute(qc, backend, shots=1024)
result = job.result()
## Missing code
desired state: 1/sqrt(2) [1 0 0 0 0 0 0 1]
Correct Answer: A,B
What is the function of noise models in quantum simulators?
Correct Answer: C
What is the primary goal of quantum error correction?
Correct Answer: C
How is the statevector of a quantum circuit typically visualized using plot_statevector() in Qiskit?
Correct Answer: B