please response to me [message #216436] |
Sat, 27 January 2007 13:40  |
m_arafa
Messages: 36 Registered: June 2006
|
Member |
|
|
in exams :
1-
consider the following scenario :
In a multiform application , the user started in form A.
1-from form A , the user invoked form B using CALL_FORM
2-from form B , the user invoked form C using OPEN_FORM
3-from form C , the user invoked form D using OPEN_FORM
4-from form B , the user invoked form E using CALL_FORM
form E contains a button with a when-button-pressed trigger.
which trigger code will close the form and navigate successfully?
A.
close_form('FormA');
go_form('FormD');
B.
close_form('FormA');
go_form('FormC');
C.
close_form('FormB');
go_form('FormC');
D.
close_form('FormC');
go_form('FormB');
E.
close_form('FormC');
go_form('FormD');
F.
close_form('FormD');
go_form('FormA');
Answer : E
====================================================
i don't understand this result , please explain it.
====================================================
thanx in advance,
|
|
|
|