Online Exam Quiz

questionQuestion  1 to 30

What is the use of the application.properties file in Spring Boot?

  • To configure database
  • To configure application settings
  • To configure server settings
  • All of the above
Mark for review

Which file is commonly used to configure a Spring Boot application?

  • application.yml
  • config.properties
  • application.properties
  • application.conf
Mark for review

Which annotation is used to map HTTP GET requests onto specific handler methods?

  • @Get
  • @GetMapping
  • @RequestMapping
  • @Mapping
Mark for review

What is the use of @Cacheable annotation in Spring Boot?

  • To cache method results
  • To configure caching
  • To handle cache eviction
  • To manage cache configuration
Mark for review

How do you handle data validation in Spring Boot?

  • Using @Valid
  • Using @Validated
  • Using @Valid and @Validated
  • Using @DataValid
Mark for review

What is the purpose of @RequestMapping in Spring Boot?

  • To map web requests
  • To map database requests
  • To configure security settings
  • To map application properties
Mark for review

What is Spring Boot DevTools?

  • A development tool suite
  • A plugin
  • A testing tool
  • A monitoring tool
Mark for review

How can you enable CORS in a Spring Boot application?

  • Using @CrossOrigin
  • Using @EnableCors
  • Using @CorsMapping
  • Using application.properties
Mark for review

What is the use of @PathVariable in Spring Boot?

  • To extract values from URI
  • To map HTTP request body
  • To inject beans
  • To configure application properties
Mark for review

Which starter is used for testing Spring Boot applications?

  • spring-boot-starter-test
  • spring-boot-starter-web
  • spring-boot-starter-data-jpa
  • spring-boot-starter-security
Mark for review

How can you read application properties in Spring Boot?

  • Using @Value
  • Using @Autowired
  • Using @ConfigurationProperties
  • Both @Value and @ConfigurationProperties
Mark for review

How can you implement pagination in Spring Boot?

  • Using Pageable
  • Using PageRequest
  • Using PagingAndSortingRepository
  • All of the above
Mark for review

How do you create a Spring Boot project using the Spring Initializr?

  • By using the command line
  • By using a web interface
  • By using an IDE plugin
  • All of the above
Mark for review

How can you include a dependency in a Spring Boot project?

  • By adding it to application.properties
  • By adding it to application.yml
  • By adding it to pom.xml or build.gradle
  • By adding it to application.conf
Mark for review

What does the @RequestBody annotation do?

  • Binds the HTTP request body
  • Maps the HTTP request to a method
  • Binds a request parameter to a method argument
  • Binds a request header to a method argument
Mark for review

What is the use of @RequestParam in Spring Boot?

  • To extract query parameters
  • To map URI parameters
  • To configure request parameters
  • To inject beans
Mark for review

What is the default scope of a Spring Bean?

  • Prototype
  • Singleton
  • Request
  • Session
Mark for review

How can you define a custom banner in Spring Boot?

  • Using banner.txt
  • Using banner.properties
  • Using application.properties
  • Using customBanner.txt
Mark for review

How can you monitor a Spring Boot application?

  • Using Spring DevTools
  • Using Spring Actuator
  • Using Spring Boot CLI
  • Using Spring Boot Dashboard
Mark for review

What is the use of @Autowired in Spring Boot?

  • To enable autoconfiguration
  • To inject bean dependencies
  • To configure a component
  • To enable component scanning
Mark for review

What does the @SpringBootApplication annotation do?

  • Combines @Configuration
  • Enables auto-configuration
  • Enables component scanning
  • All of the above
Mark for review

What is Spring Boot?

  • A framework
  • A library
  • A programming language
  • A database
Mark for review

How do you run a Spring Boot application?

  • java run
  • mvn spring-boot
  • java -jar
  • mvn install
Mark for review

How can you secure a Spring Boot application?

  • Using Spring Security
  • Using SSL
  • Using JWT
  • All of the above
Mark for review

What is the use of @ComponentScan in Spring Boot?

  • To scan components
  • To enable autowiring
  • To scan for Spring components
  • To enable caching
Mark for review

How can you reload Spring Boot application properties without restarting the server?

  • Using Spring DevTools
  • Using Spring Actuator
  • Using Spring Boot CLI
  • Using Spring Boot Dashboard
Mark for review

How do you create a custom error page in Spring Boot?

  • By creating error.html
  • By creating error.jsp
  • By configuring application.properties
  • All of the above
Mark for review

Which dependency is used for unit testing in Spring Boot?

  • spring-boot-starter-test
  • spring-boot-starter-data-jpa
  • spring-boot-starter-web
  • spring-boot-starter-security
Mark for review

How do you enable asynchronous processing in Spring Boot?

  • Using @Async
  • Using @EnableAsync
  • Using @EnableAsynchronous
  • Both @Async and @EnableAsync
Mark for review

Which annotation is used to enable Spring Boot's auto-configuration feature?

  • @Configuration
  • @EnableAutoConfiguration
  • @ComponentScan
  • @SpringBootApplication
Mark for review

blinkerOnline

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • Answered
  • Not Answered
  • Marked for Review