Spring Boot MCQ Quiz Hub

Spring Boot - Scheduling

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

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




2. To enable the scheduler for your application?




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




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




5. Fixed Rate scheduler not supported in Spring boot .




6. @Scheduled(fixedRate = 1000)




7. Fixed Delay supported in spring boot ?




8. @Scheduled(fixedDelay = 1000, initialDelay = 1000)