Your application produces messages by client applications. The number of clients interested in the
messages varies continuously at run time. Any client can process any message, but a message
must be processed exactly once.
How should the messages be delivered to the clients?
A.
Using a Java Message Service (JMS) topic
B.
Using a Java Message Service (JMS) queue
C.
Using XML over HTTP
D.
Using a Simple Object Access Protocol (SOAP) web service
B
B
A
Topic : The number of clients interested in the messages varies continuously at run time.
Queue : Only one consumer will get the message
https://docs.oracle.com/cd/E24902_01/doc.91/e24429/appx_topic_or_queue.htm#EOITW198
Didnt understand the question correctly.
the answer is B