Welcome to Femtosoft Technologies
9884668421
✅ Total Questions: (25 Questions)✅ Exam Duration: (10 Minutes)
✅ Exam Type: MCQs
✔ Use a laptop/desktop with a stable internet connection.✔ Recommended browsers: Chrome, Firefox, Edge (latest versions).✔ Ensure your webcam & microphone are working (if required).
🖊 Fill in the Exam Registration Form Correctly
⚠️ Incorrect details may result in delays or disqualification.
📌 Ensure all answers are submitted before the timer ends.📌 Once submitted, you cannot change your responses.📌 After passing, your certificate will be automatically generated with your registered name.
🎉 Congratulations on your success!
🎯 Stay focused and give your best! Good luck!
Please fill all the required fields carefully, information provided will be used in offer letter and Completion Certificate.
1 / 25
1. What does @Scheduled do in a Spring Boot application?
2 / 25
2. Which database is supported by Spring Boot out-of-the-box?
3 / 25
3. What will happen if you try to access a non-existent endpoint in a Spring Boot application?
4 / 25
4. What will be the output of this method in a Spring Boot application?
@GetMapping("/error")
public ResponseEntity handleError() {
return ResponseEntity.status(HttpStatus.INTERNAL_SERVER_ERROR)
.body("An error occurred");
}
5 / 25
5. What will this Spring Boot method return?
@RequestMapping(value = "/users", method = RequestMethod.GET, produces = "application/json")
public List getAllUsers() {
return userService.getAllUsers();
6 / 25
6. Which dependency is required to use Spring Data JPA?
7 / 25
7. What is the purpose of Spring Security?
8 / 25
8. What type of data can be returned by a RESTful endpoint in Spring Boot?
9 / 25
9. How do you implement custom exception handling in Spring Boot?
10 / 25
10. How do you customize the error response in Spring Boot?
11 / 25
11. How do you test controller methods in a Spring Boot application?
12 / 25
12. How does Spring Boot handle health checks for applications?
13 / 25
13. What is the significance of the @Transactional(propagation = Propagation.REQUIRES_NEW)?
14 / 25
14. How can you enable Swagger for API documentation in a Spring Boot application?
15 / 25
15. What role does the @Autowired annotation play in Spring Boot?
16 / 25
16. How can you set the logging level in Spring Boot?
17 / 25
17. What is the role of Spring Boot in microservices architecture?
18 / 25
18. How can you secure a Spring Boot application?
19 / 25
19. What are the advantages of using Spring Boot?
20 / 25
20. What is Spring Boot Starter?
21 / 25
21. What is the significance of @RequestMapping in Spring Boot controllers?
22 / 25
22. What is the purpose of the @ResponseBody annotation in Spring Boot?
23 / 25
23. How can you expose application metrics in a Spring Boot application?
24 / 25
24. How do you implement pagination and sorting in Spring Data?
25 / 25
25. What is the purpose of Spring Boot's @EnableCaching annotation?