Spring Quiz 3 | Englishfreetest.com

  • Do test 20 minutes
  • Number Questions: 10 questions
  • By: englishfreetest.com

Here's the exercise 'Spring Quiz 3 | Englishfreetest.com' about Technical Quiz - Technical Tests.


Put your knowledge about all things technology to the test Because everything tech, from computers and the internet to software and big data, changes rapidly on a day-to-day basis, it’s now a must to stay up to date with the technology that dominates our modern day lives. Are you up to speed on what’s going on in the tech industry today? Take our quiz to find out. Test how much you know about technology

You can find more to the lesson and more exercises. Technical Quiz - Technical Tests in here.

Finally, click here to "Test" for start practice exercise .

  • Test content
    A. To stop the watch
    B. To run the watch
    C. To change the time
    D. All of these
    A. Programmatic transaction management
    B. Declarative transaction management
    C. Both of above
    D. None of above
    A. megabyte
    B. gigabyte
    C. sector
    D. byte
    A. MyClass mc = new MyClass()
    B. MyClass mc = MyClass()
    C. MyClass mc = MyClass
    D. MyClass mc = new MyClass
    A. To covert binary stream into character stream
    B. To covert character stream into binary stream
    C. To write data onto output object
    D. All of the above
    A. Aspect Oriented Programming
    B. Any Object Programming
    C. Asset Oriented Programming
    D. Asset Oriented Protocol
    A. This scopes the bean definition to a single instance per Spring IoC container.
    B. This scopes the bean definition to a single instance per HTTP Request
    C. This scopes the bean definition to a single instance per HTTP Session
    D. This scopes the bean definition to a single instance per HTTP Application/ Global session
    A. singleton
    B. prototype
    C. request
    D. session
    A. Default setting which means no autowiring and you should use explicit bean reference for wiring
    B. Autowiring by property name. Spring tries to match and wire its properties with the beans defined by the same names in the configuration file.
    C. Spring first tries to wire using autowire by constructor, if it does not work, Spring tries to autowire by byType
    D. Similar to byType, but type applies to constructor arguments