Question 1: CORE SPRING BOOT - Application Properties Purpose
What is the primary purpose of application.properties or application.yml in a Spring Boot application?
Question 2: CORE SPRING BOOT - Spring Boot Auto-Configuration Mechanism
What is the primary mechanism that enables Spring Boot's "auto-configuration" feature?
Question 3: CORE SPRING BOOT - @SpringBootApplication Annotation
The @SpringBootApplication annotation is a convenience annotation that combines which three annotations?
Question 4: CORE SPRING BOOT - @RestController Purpose
What is the primary purpose of the `@RestController` annotation in Spring Boot?
Question 5: CORE SPRING BOOT - Dependency Injection Concept
What is the main purpose of Dependency Injection (DI) in Spring Boot?
Question 6: CORE SPRING BOOT - Purpose of Profiles
What is the main purpose of using profiles in Spring Boot?
Question 7: CORE SPRING BOOT - Actuator Purpose
What is the primary purpose of Spring Boot Actuator?
Question 8: CORE SPRING BOOT - Purpose of @ControllerAdvice
What is the main purpose of the @ControllerAdvice annotation in Spring Boot?
Question 9: CORE SPRING BOOT - Purpose of SLF4J
What is the primary purpose of SLF4J in Spring Boot?
Question 10: CORE SPRING BOOT - Purpose of Embedded Servers
What is the main advantage of using embedded servers in Spring Boot?
Question 11: CORE SPRING BOOT - YAML vs Properties
Which of the following is a key difference between application.yml and application.properties?
Question 12: CORE SPRING BOOT - @Component Annotation
What is the main purpose of the @Component annotation in Spring Boot?
Question 13: CORE SPRING BOOT - @GetMapping vs @RequestMapping
Which statement is correct regarding `@GetMapping` and `@RequestMapping`?
Question 14: CORE SPRING BOOT - Constructor Injection
Which of the following best describes constructor-based dependency injection?
Question 15: CORE SPRING BOOT - @Profile Annotation
Which of the following best describes the @Profile annotation?
Question 16: CORE SPRING BOOT - Enabling Actuator Endpoints
How do you enable Spring Boot Actuator endpoints?
Question 17: CORE SPRING BOOT - Purpose of @ExceptionHandler
Which statement correctly describes @ExceptionHandler in Spring Boot?
Question 18: CORE SPRING BOOT - Logback Integration
Which logging framework is used by default in Spring Boot?
Question 19: CORE SPRING BOOT - Default Embedded Server
Which embedded server does Spring Boot use by default in a web application?