IBM C1000-112 Prüfungsthemen:
| Abschnitt | Ziele |
|---|---|
| Thema 1: Störeinflüsse und echte Hardware | - Ausführung auf IBM Quantum-Hardware - Quantenbedingte Störungen und Fehlerquellen |
| Thema 2: Programmierung mit Qiskit | - Verwendung von Simulatoren und dem Aer-Backend - Erstellung und Ausführung von Schaltungen - Grundlagen von Qiskit Terra |
| Thema 3: Quantenalgorithmen | - Deutsch-Jozsa-Algorithmus - Suchalgorithmus von Grover - Grundlegende Konzepte der algorithmischen Komplexität |
| Thema 4: Grundlagen des Quantencomputings | - Qubits und Quantenzustände - Messung und Zustandskollaps - Superposition und Verschränkung |
| Thema 5: Quantengatter und Quantenschaltungen | - Aufbau von Quantenschaltungen - Ein-Qubit-Gatter (X, Y, Z, H) - Mehr-Qubit-Gatter (CNOT, gesteuerte Operationen) |
IBM Fundamentals of Quantum Computation Using Qiskit v0.2X Developer C1000-112 Prüfungsfragen mit Lösungen
1. Which command is used to get the version of qiskit packages and the system information of the system?
A) print(__version__)
B) print(qiskit_version)
C) print(qiskit.__qiskit_version__)
D) print(qiskit.__version__)
2. Which function in Qiskit is commonly used to visualize the histogram of measurement outcomes in a quantum experiment?
A) display_measurement_results()
B) plot_experiment_results()
C) visualize_measurement_outcomes()
D) draw_histogram()
3. Which of the following statement will convert the below qasm file to a Quantum circuit qc?
myfile.qasm
OPENQASM 2.0;
include "qelib1.inc";
qreg q[2];
h q[0];
h q[1];
s q[0];
s q[1];
A) qc = QuantumCircuit.from_qasm_file('myfile.qasm')
B) qc = QuantumCircuit.qasm_read('myfile.qasm')
C) qc = QuantumCircuit.read('myfile.qasm')
D) qc = QuantumCircuit.from_file('myfile.qasm')
E) qc = QuantumCircuit.read('myfile.qasm')
4. Which of the following missing statement return the depth of the following quantum circuit?
q = QuantumRegister(3)
c = ClassicalRegister(3)
qc = QuantumCircuit(q,c)
qc.h(q[0:3])
qc.x(q[0:3])
qc.z(q[0:3])
qc.draw(output='mpl')
### missing statement to return the depth of the circuit
A) qc.size()
B) qc.depth_display()
C) qc.depth()
D) qc.path()
5. In quantum computing, what does superposition refer to?
A) State of a qubit being in multiple states at once
B) Quantum gate operation
C) The process of measuring a qubit
D) Ability to execute multiple quantum circuits simultaneously
Fragen und Antworten:
| 1. Frage Antwort: C | 2. Frage Antwort: D | 3. Frage Antwort: A | 4. Frage Antwort: C | 5. Frage Antwort: A |






848 Kundenbewertungen

