1.
In Spring, which of these is not a special bean?
2.
Which of the following is an inheritance class of a Spring controller?
3.
Assume the following:
  • In Spring, file is an abstract class that comprises the toFile() method.
  • It also contains two concrete classes called ImageFile and BinaryFile.
  • The toFile() method is implemented in both the concrete classes.
Which of the following file will you reference and call the toFile() method for?
4.
In Spring, which of thee following statements is associated with this code:
execution(* com.test.service..*.*(*))
5.
Which of these is joinpoint method of the following pointcut expressions:
execution(public * *(..))
6.
What is a return data type void in Spring?
7.
In Spring, which of the following statements about Java is true?
8.
Which of the following statements about objects in Spring is false?
9.
In Spring, if the number and the type of parameters is different, which of the following processes is used to create various methods with the same name in the same class?
10.
In Spring, which of the following is not a return type?