Exam Code : C1000-058
Exam Name : IBM MQ V9.1 System Administration
Vendor Name :
"IBM"
Which command is used to display the status of a queue manager? Response:
DISPLAY QMGR STATUS
DISPLAY QMGR
DISPLAY QMSTATUS
DISPLAY QUEUE MANAGER
Answer: B
Explanation: DISPLAY QMGR. This command is used to display the status of a queue manager. It provides information such as the queue manager name, status, and other relevant details.
Which command will enable real-time monitoring of queues, where the monitoring is to be controlled at a queue manager level?
Response:
ALTER QMGR MONQ(NONE)
ALTER QMGR MONQ(HIGH)
ALTER QMGR INHIBTEV(ENABLED)
ALTER QMGR STATQ(ON) STATINT(30)
Answer: A
Explanation: ALTER QMGR MONQ(NONE). This command disables real- time monitoring of queues at the queue manager level. By setting MONQ to
NONE, the real-time monitoring of queues is turned off, and no events related to queues will be generated or recorded.
Which command is used to start a channel? Response:
START CHANNEL
STRCHANNEL
BEGIN CHANNEL
ENABLE CHANNEL
Answer: A
Explanation: START CHANNEL. This command is used to start a channel. When a channel is started, it becomes active and can send and receive messages.
Which command is used to create a new local queue? Response:
DEFINE QLOCAL
CREATE QUEUE
ADDQUEUE
NEW QUEUE
Answer: A
Explanation: DEFINE QLOCAL. This command is used to create a new local queue. It allows you to define various attributes of the queue, such as its name, maximum depth, and persistence.
Which attribute specifies the maximum size of a message that a queue can hold?
Response:
MAXDEPTH
MAXMSG
MAXSIZE
MAXCAPACITY
Answer: C
Explanation: MAXSIZE. The MAXSIZE attribute specifies the maximum size of a message that a queue can hold. When the maximum size is reached, further attempts to put messages to the queue will result in a message too big condition.
Which utility is used to create and maintain the IBM MQ configuration files? Response:
crtmqm
strmqm
runmqsc
Answer: C
Explanation: runmqsc. The runmqsc utility is used to create and maintain the IBM MQ configuration files. It provides a command-line interface to interact with the queue manager, allowing you to define and modify queues, channels, listeners, and other objects.
Which attribute specifies the maximum number of channels that a queue manager can have?
Response:
MAXCHANNELS
MAXCONNECTIONS
MAXINSTANCES
MAXCHANNELINSTANCES
Answer: A
Explanation: MAXCHANNELS. The MAXCHANNELS attribute specifies the maximum number of channels that a queue manager can have. This attribute limits the number of active channels that can be concurrently running on the queue manager.
Which attribute specifies the maximum number of messages that a queue can hold?
MAXDEPTH
MAXMSG
MAXSIZE
MAXCAPACITY
Answer: A
Explanation: MAXDEPTH. The MAXDEPTH attribute specifies the maximum number of messages that a queue can hold. When the maximum depth is reached, further attempts to put messages to the queue will result in a queue full condition.
Which attribute specifies the transmission queue to be used for a particular channel?
Response:
XMITQ
TRANSMITQ
DESTQ
CHANNELQ
Answer: A
Explanation: XMITQ. The XMITQ attribute specifies the transmission queue to be used for a particular channel. The transmission queue is responsible for temporarily storing messages that need to be transmitted over the channel.