Choose the best answer for each of the following statements.
Indicate your answer by writing the number and the word.
J2EE assumes that data values change
[ (1) infrequently ]
[ (2) very frequently ]
[ (3) somewhat frequently ].
(2) very frequently
J2EE assumes that the data structure changes
[ (1) infrequently ]
[ (2) very frequently ]
[ (3) somewhat frequently ].
(1) infrequently
J2EE assumes that data presentation change
[ (1) infrequently ]
[ (2) very frequently ]
[ (3) somewhat frequently ].
(3) somewhat frequently
Java Server Pages should have
[ (1) more Java ]
[ (2) less Java ].
(2) less Java
The JSP in homework 9 uses a
[ (1) page-centric design ]
[ (2) dispatcher design ].
(1) page-centric design
Does the student information example demoed in class use
a page-centric design,
a dispatcher design,
a mediator-view design, or
a model-view-controller design.
page-centric
Under what conditions will a JSP that you write be able to share
a Java bean object with a JSP one of your classmates wrote.
In one JSP ... <jsp:useBean id="info" scope="application" class="sueBean">
...
In another JSP ... <jsp:useBean id="info" scope="application" class="tomBean">
The Java bean id is the same and
scope is application.
(As I found last week and pointed out in lecture,
the name of the class is irrelevant.)