1.
Which of the following statements is false in Spring?
2.
What does an XmlBeanFactory do in Spring?
3.
Which of these is the correct way to instantiate a bean in Spring?
4.
Which of the following features is supported by Spring:

  1. Resource management
  2. Exception handling
  3. Transaction participation
  4. Resource unwrapping
  5. Abstraction for BLOB
  6. CLOB handling
5.
Which of the following statements is true for this Spring code:
ApplicationContext con = new
ClassPathXmlApplicationContext("classpath:/com.example.proj.config.xml");
6.
Assuming all the annotations and the methods are called, which of these is true for the following code:
@
Transactional(propagation = Propagation.REQUIRED)
public void transferMoney(Account src, Account target, double amount) {
    add(src, -amount);
    add(src, amount);
}@
Transactional(propagation = Propagation.REQUIRES_NEW)
public void add(Account account, Double amount) {
    // IMPLEMENTATION
}
7.
In Spring, which of the following accesses the private attributes of a class?
8.
In Spring, which of the following specifies the two entities of a value of the double data type?
9.
What is the incorrect byte size for declaring a numeric data type that is supported in Spring?
10.
In Spring, which of these is used to declare a class sample that belongs to the payroll.admindept package?