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 MVC Deep Dive Quiz

Quiz

Played 1 %Accuracy 44 Average time 01:05

About this activity

Challenging scenarios for Spring MVC pros

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 MVC Deep Dive Quiz
 

Spring MVC Deep Dive QuizOnline version

Challenging scenarios for Spring MVC pros

by Swati Nikam
1

Q1: In a typical Spring MVC app, is a bean defined in the root (parent) context visible to the web (child) context by default?

2

Q2: Which statement best describes how ViewResolver ordering works when multiple resolvers exist?

3

Q3: What is a key difference between Model, ModelMap, and ModelAndView in a controller method?

4

Q4: When using @SessionAttributes, when is stored data cleared from the session?

5

Q5: If you declare a bean with the same name in a child context, what happens?

6

Q7: Which statement about ModelAndView is true in a controller method returning String vs ModelAndView?

7

Q8: Assertion: The child WebApplicationContext initializes after the parent, and always delegates missing beans upward. Reason: Delegation happens only for bean lookups, not during initialization.

8

Q9: True/False: Data stored under @SessionAttributes persists across a redirect until explicitly cleared or the session ends. (Reason: Redirects do not clear the session.)

9

Q10: Given @SessionAttributes("user") and a controller method that adds 'user' to the model, what happens after a redirect?

Feedback

Root-to-child visibility is the default. Child can access parent beans unless overridden by a conflicting bean in the child.

Resolvers are evaluated in ascending order; first resolvable view is chosen.

Model/ModelMap add attributes; ModelAndView combines model with the view name.

Session attributes persist across multiple requests until explicitly cleared or session ends.

Child context can override parent definitions for the same bean name.

ModelAndView combines view and model; returning String only provides view name unless using Model parameter.

Initialization order follows parent first; delegation applies to lookups, not creation order.

Session attributes persist across redirects unless cleared or session ends.

Session attributes survive redirects; use SessionStatus to clear when done.

Are you sure you want to leave the page?

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