This visual trace shows how Spring Boot loads info endpoint configuration. First, the app starts with no config. Then it loads properties including info.app.name and info.app.version. Next, it exposes the /actuator/info endpoint because the management.endpoints.web.exposure.include includes 'info'. When a client requests /actuator/info, the app returns a JSON with the configured info data. Variables like info.app.name and info.app.version hold the metadata, endpoint.info.exposed tracks if the endpoint is active, and response.info.json shows the returned JSON. Key points include that the info properties must be set to see data, and the endpoint must be exposed to be accessible. The quizzes test understanding of response content, exposure timing, and config effects.