New game
Download
Get Academic Plan
Share game
Integrate it into your platform

You can integrate the game into an LMS compatible with LTI 1.1 or LTI 1.3 such as Canvas, Moodle, or Blackboard. This way, the scores will be automatically saved into the platform’s gradebook.
Download
You have exceeded the maximum number of games you can integrate into Google Classroom with your current Plan.

To integrate as many games as you want in Google Classroom, you need an Academic Plan or a Commercial Plan.

You have exceeded the maximum number of games you can integrate into Microsoft Teams with your current Plan.

To integrate as many games as you want in Microsoft Teams, you need an Academic Plan or a Commercial Plan.

Downloading games is an exclusive feature for users with an Academic Plan or a Commercial Plan.

Get your Academic Plan or your Commercial Plan now and start integrating your games into your LMS, website or blog.

If you wish, you can download a demo game here and test its integration:

Spring_Essentials_Day_1

Quiz

(2)
Played 66

About this activity

Spring Core

Created by

India

Download the paper version to play

Make your own free game from our game creator
Compete against your friends to see who gets the best score in this game

Top Games

%
Anonymous
Anonymous
%
%
%
You have exceeded the maximum number of games you can print with your current Plan.

To print as many games as you want, you need an Academic Plan or a Commercial Plan.

Print your game
Spring_Essentials_Day_1
 

Spring_Essentials_Day_1Online version

Spring Core

by Birendra Singh
1

In Spring, IoC means that the container creates and injects dependencies for objects.

2

Which design problem does IoC primarily address in Spring?

3

Which module provides the core IoC functionality in Spring?

4

Which container feature supports lazy initialization by default?

5

Which container handles internationalization and event handling?

6

Dependency Injection in Spring is achieved using which of the following?

7

Setter injection uses which XML tag?

8

What is the primary use of in Spring XML?

9

What does primary="true" indicate in Spring bean definitions?

10

What is the default scope of a Spring bean?

11

Autowiring byName matches:

12

matches:

13

Which tag is used for key-value string pairs?

14

Which modules belong to Spring Core Container?

15

class Engine { public void start() { System.out.println("Engine Started"); } } class Car { private Engine engine = new Engine(); public void drive() { engine.start(); } } Which statement is correct regarding the above design?

16

BeanFactory factory = new XmlBeanFactory(new ClassPathResource("beans.xml")); System.out.println("Container Loaded"); When is emp object created?

17

Employee e1 = context.getBean(Employee.class); Employee e2 = context.getBean(Employee.class); System.out.println(e1 == e2); What will be output of the above Java statement?

18

@Component class Engine { } @Component class Car { @Autowired private Engine engine; } Injection happens using:

19

@Component class PetrolEngine implements Engine { } @Component class DieselEngine implements Engine { } @Component class Car { @Autowired private Engine engine; } What happens?

20

What is required for successful injection?

Are you sure you want to leave the page?

If you leave, you will lose the game in progress.