Spring Boot MCQ Quiz Hub

Spring Boot - Scheduling

Choose a topic to test your knowledge and improve your Spring Boot skills

Spring Boot provides a good support to write a scheduler on the Spring applications





✅ Correct Answer: 1

To enable the scheduler for your application?





✅ Correct Answer: 2

@Scheduled annotation is used to trigger the scheduler for a specific time period?





✅ Correct Answer: 1

@Scheduled(cron = "0 * 9 * * ?")





✅ Correct Answer: 1

Fixed Rate scheduler not supported in Spring boot .





✅ Correct Answer: 2

@Scheduled(fixedRate = 1000)





✅ Correct Answer: 1

Fixed Delay supported in spring boot ?





✅ Correct Answer: 1

@Scheduled(fixedDelay = 1000, initialDelay = 1000)





✅ Correct Answer: 1