What Qiskit component enables simulation of quantum systems, including noise models and backends?
A. Qiskit Aqua
B. Qiskit Terra
C. Qiskit Ignis
D. Qiskit Aer
正解:D
質問 2:
What is the command used to retrieve the last run job from a backend?
A. backend.retrieve_job()[1]
B. backend.jobs()[-1]
C. backend.retrieve_job()[0]
D. backend.jobs()[0]
正解:D
質問 3:
Which code snippet would execute a circuit given these parameters?
1) Measure the circuit 1024 times,
2) use the QASM simulator,
3) and use a coupling map that connects three qubits linearly
qc = QuantumCircuit(3)
# Insert code fragment here
result = job.result()
A. qasm_sim = Aer.get_backend('qasm_simulator')
couple_map = [[0, 1], [1, 2]]
job = execute(qc, backend=qasm_sim, repeat=1024, coupling_map=couple_map)
B. qasm_sim = Aer.get_backend('qasm_simulator')
couple_map = [[0, 1], [1, 2]]
job = execute(backend=qasm_sim, qc, shot=1024, coupling_map=couple_map)
C. qasm_sim = Aer.getBackend('ibmq_simulator')
couple_map = [[0, 1], [0, 2]]
job = execute(qc, loop=1024, coupling_map=couple_map)
D. qasm_sim = Aer.get_backend('qasm_simulator')
couple_map = [[0, 1], [1, 2]]
job = execute(qc, backend=qasm_sim, shots=1024, coupling_map=couple_map)
正解:D
質問 4:
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)
A.

B.

C.

D.

正解:C
質問 5:
What is the default number of shots which QuantumCircuit.execute function performs?
A. 1024
B. 128
C. 2048
D. 512
正解:A
質問 6:
Which of the following multi qubit-gate represents the controlled-z gate?
A.

B.

C.

D.

正解:A
質問 7:
Which technique is commonly used to extract meaningful information from the measurement outcomes in quantum experiments?
A. Quantum error correction
B. Statistical analysis
C. Quantum entanglement mapping
D. Quantum gate optimization
正解:B
652 お客様のコメント





曽田** -
一週間前に受験して合格しました。C1000-112の問題集を習得して本番にして似たような問題は大量にいてびっくりしました。