EX378 Online Practice Questions

Home / RedHat / EX378

Latest EX378 Exam Practice Questions

The practice questions for EX378 exam was last updated on 2025-09-15 .

Viewing page 1 out of 29 pages.

Viewing questions 1 out of 146 questions.

Question#1

Configure a timeout duration via MicroProfile Config instead of annotation.

A. See the Explanation.

Explanation:

Question#2

What is a channel in the context of Quarkus reactive messaging, and how is it used?

A. See the Explanation.

Explanation:
A channel is a named stream of messages used to link producers and consumers. Channels are declared implicitly via @Incoming and @Outgoing, and configured in application.properties.

Question#3

How do you propagate trace context between microservices using HTTP?

A. See the Explanation.

Explanation:
Use the quarkus-rest-client-reactive with context propagation:
@RegisterRestClient
@Path("/next")
public interface DownstreamService {
@GET
@Traced // optional, to enforce tracing on outgoing call String callNext();
}
Context is auto-propagated using W3C Trace Context headers.

Question#4

How do you verify parent-child relationships of spans across services?

A. See the Explanation.

Explanation:
Open Jaeger UI ® Search for trace by service ® Click on a trace
• You’ll see a hierarchical view
• Parent spans include metadata like HTTP method and service name Child spans appear nested under parent spans.

Question#5

Set authentication failure response for unauthorized users.

A. See the Explanation.

Explanation:
Use Quarkus’s default or define a custom ExceptionMapper<UnauthorizedException> to return a JSON response with error details.

Exam Code: EX378Q & A: 450 Q&AsUpdated:  2025-09-15

 Get All EX378 Q&As