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. How do you specify the version of Spring Boot in Maven?
2 / 25
2. What does the @Transactional annotation indicate?
3 / 25
3. What will be the output of this Spring Boot code?
@GetMapping("/divide")
public double divide(@RequestParam int a, @RequestParam int b) {
return (double) a / b;
}
4 / 25
4. What does the @Profile annotation do?
5 / 25
5. What is the output will this line produce in a Spring Boot application?
@DeleteMapping("/delete/{id}")
public ResponseEntity delete(@PathVariable Long id) {
// delete logic
return ResponseEntity.noContent().build();
6 / 25
6. What will this Spring Boot method return?
@RequestMapping(value = "/users", method = RequestMethod.GET, produces = "application/json")
public List getAllUsers() {
return userService.getAllUsers();
7 / 25
7. What is the function of @Component?
8 / 25
8. What will this Spring Boot method return?
@GetMapping("/users/{id}")
public User getUser(@PathVariable int id) {
return userService.findById(id);
9 / 25
9. What is the significance of the org.springframework.boot:spring-boot-starter dependency?
10 / 25
10. How does Spring Boot handle health checks for applications?
11 / 25
11. What is the purpose of the @JsonProperty annotation?
12 / 25
12. What is the purpose of the @SpringBootApplication annotation?
13 / 25
13. How do you handle versioning in a REST API built with Spring Boot?
14 / 25
14. How do you create scheduled tasks in Spring Boot applications?
15 / 25
15. How do you define a one-to-many relationship in Spring Data JPA?
16 / 25
16. What is the purpose of Spring Boot's @EnableCaching annotation?
17 / 25
17. What steps are involved in migrating a Spring Boot application to a new version?
18 / 25
18. How can you apply security at the method level in Spring Security?
19 / 25
19. How can you implement pagination in Spring Data JPA?
20 / 25
20. How do you integrate third-party APIs in a Spring Boot application?
21 / 25
21. What is the purpose of the spring.datasource.url property?
22 / 25
22. What is the significance of the @Transactional(propagation = Propagation.REQUIRES_NEW)?
23 / 25
23. How do you define default values for properties in an application?
24 / 25
24. How do you perform transactions in Spring Boot?
25 / 25
25. How do you implement a custom validation annotation in Spring Boot?