[2024年10月]更新のC1000-112問題集本日限定!無料アクセス可能に!PassTestで試そう [Q90-Q115]

Share

[2024年10月]更新のC1000-112問題集本日限定!無料アクセス可能に!PassTestで試そう

学習材料は有効C1000-112効率的問題集!

質問 # 90
S-gate is a Qiskit phase gate with what value of the phase parameter?

  • A. π
  • B. π/4
  • C. π/8
  • D. π/2

正解:D


質問 # 91
What type of information does Qasm provide regarding quantum circuits?

  • A. Quantum error rates and correction techniques
  • B. Descriptions of classical computations within the quantum circuit
  • C. Details about the execution time of the circuit
  • D. Specifications of quantum gates, qubit interactions, and measurements

正解:D


質問 # 92
Select the Involutory gates in the below list of options? (Select 3)

  • A. X-gate
  • B. T-gate
  • C. S-gate
  • D. CPHASE-gate
  • E. Y-gate
  • F. H-gate

正解:A、E、F


質問 # 93
Which of the following is the best option to plot the |+> basis in plot_bloch_vector?

  • A. plot_bloch_vector([1,0,0])
  • B. plot_bloch_vector([0,0,1])
  • C. plot_bloch_vector([0,1,0])
  • D. plot_bloch_vector([0,0.5,0])

正解:A


質問 # 94
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')

  • A. missing_statement_1: qc.barrier(0,1)
    missing_statement_2: qc.barrier()
  • B. missing_statement_1: qc.barrier(0,1)
    missing_statement_2: qc.barrier_all()
  • C. missing_statement_1: qc.barrier(1,2)
    missing_statement_2: qc.barrier_all()
  • D. missing_statement_1: qc.barrier(:1)
    missing_statement_2: qc.barrier()

正解:A


質問 # 95
How does the function draw_circuit() in Qiskit represent quantum gates in a circuit?

  • A. Using a textual format
  • B. As graphical images of gates and connections
  • C. As a series of mathematical equations
  • D. Through a list of gate operations

正解:B


質問 # 96
What is the function of a SWAP gate in a quantum circuit?

  • A. Swap the state of two qubits
  • B. Exchange the amplitudes of qubits
  • C. Apply a controlled phase shift
  • D. Negate the state of qubits

正解:A


質問 # 97
Which line of code would assign a unitary simulator object to the variable backend?

  • A. backend = BasicAer.UnitarySimulatorPy()
  • B. backend = BasicAer.get_backend('unitary_simulator')
  • C. backend = BasicAer.get_back_unitary_simulator()
  • D. backend = BasicAer.get_back('unitary_simulator')

正解:B


質問 # 98
Which of the following commands will convert the below quantum circuit to qasm string?
qc = QuantumCircuit(2,2)
qc.h(0)
qc.h(1)

  • A. qc.from_qasm()
  • B. qc.qasm()
  • C. qc.qasm_str()
  • D. qc.qasm_simulator()

正解:B


質問 # 99
Which of these would execute a circuit on a set of qubits which are coupled in a custom way?
from qiskit import QuantumCircuit, execute, BasicAer
backend = BasicAer.get_backend('qasm_simulator')
qc = QuantumCircuit(2)
# insert code here

  • A. execute(qc, backend, shots=1024, coupling_map=[[0,1], [1,2]])
  • B. execute(qc, backend, shots=1024, custom_topology=[[0,1],[2,3]]
  • C. execute (qc, backend, mode="custom")
  • D. execute(qc, backend, shots=1024, device="qasm_simulator", mode="custom")

正解:A


質問 # 100
What is the purpose of applying the Hadamard gate in a quantum circuit?

  • A. Transform basis states to superposition states
  • B. Perform a controlled NOT operation
  • C. Create entanglement between qubits
  • D. Measure the qubits in the circuit

正解:A


質問 # 101
Which Python package provides BasicAer simulators in Qiskit?

  • A. qiskit.aer
  • B. qiskit.sim
  • C. qiskit.quantum
  • D. qiskit.tools

正解:A


質問 # 102
How does the concept of "quantum superposition" contribute to information processing in quantum systems?

  • A. It allows for the storage of classical bits in quantum systems
  • B. It ensures deterministic outcomes in quantum computations
  • C. It enables the simultaneous representation of multiple states
  • D. It limits the capacity for storing information in qubits

正解:C


質問 # 103
Which of the below command is used to get the information about real quantum computers available in the qiskit?

  • A.
  • B.
  • C.
  • D.

正解:A


質問 # 104
What Qiskit function is primarily used to display information about noise models and quantum errors affecting a device?

  • A. show_error_map()
  • B. plot_error_details()
  • C. visualize_noise_models()
  • D. display_error_information()

正解:A


質問 # 105
Which Qiskit component is primarily focused on researching and improving quantum algorithms?

  • A. Qiskit Terra
  • B. Qiskit Ignis
  • C. Qiskit Aqua
  • D. Qiskit Aer

正解:C


質問 # 106
How does the storage of information differ between classical and quantum systems?

  • A. Quantum systems have limited storage capacity
  • B. Quantum systems can store more information due to qubit properties
  • C. Both systems have similar storage capacities
  • D. Classical systems can store infinite amounts of information

正解:B


質問 # 107
Which gate will results in if we successively applied two S-gates?

  • A. T-gate
  • B. X-gate
  • C. Y-gate
  • D. Z-gate

正解:D


質問 # 108
What is the resultant gate when we apply three Hadamard gates (in series) in the single-qubit circuit?

  • A. I-gate
  • B. X-gate
  • C. Y-gate
  • D. H-gate

正解:D


質問 # 109
Which type of information is typically displayed when utilizing the show_configuration() function in Qiskit?

  • A. User-specific configurations for quantum simulations
  • B. Quantum job configurations and setup details
  • C. Displaying quantum device status and errors
  • D. Visualization of quantum gates in a circuit

正解:B


質問 # 110
Which Qiskit function is commonly used to visualize the structure of a quantum circuit?

  • A. draw_circuit()
  • B. visualize_circuit_structure()
  • C. plot_quantum_circuit()
  • D. display_quantum_circuit()

正解:A


質問 # 111
What does the quantum operation SWAP do?

  • A. Implements quantum error correction
  • B. Exchanges the states of two qubits
  • C. Exchanges the amplitudes of qubits
  • D. Exchanges the phase of qubits

正解:B


質問 # 112
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])

  • A. qc.z(1)
  • B. qc.x(0)
  • C. qc.y(1)
  • D. qc.measure([0,1],[0,1])

正解:D


質問 # 113
Which of the below gates can be considered as Involutory?

  • A. X-gate
  • B. T-gate
  • C. S-gate
  • D. P-gate
  • E. Y-gate
  • F. H-gate

正解:A、E、F


質問 # 114
Given Quantum Circuit
qc= QuantumCircuit(2)
qc.h(0)
qc.h(1)
to run the above quantum circuit 512 times in the qasm_simulator, choose the best option in the given below?

  • A.
  • B.
  • C.
  • D.

正解:B


質問 # 115
......

最新のC1000-112試験エンジンPDFで全部無料問題集保証:https://www.passtest.jp/IBM/C1000-112-shiken.html

最新IBM Certified Associate Developer C1000-112実際の無料試験解答:https://drive.google.com/open?id=19DDJyXRaHl5ZXVflE2RxxefZTtbIxnqW