QUESTION 1
Your employer asks you to rename the custom folder for your WDK application to "datasink." Which XML entry represents the correct means of changing the custom folder’s name?
A. <custom>
<application>
<application-name>AppFolderName</param-name>
<application-value>datasink</param-value>
</application>
…
B. <config>
<app-param>
<param-name>AppFolderName</param-name>
<param-value extends="webtop/custom">datasink</param-value> </app-param>
…
C. <web-inf>
<context-param>
<param-name>AppFolderName</param-name>
<param-value inherits="webtop/custom">datasink</param-value> </context-param>
…
D. <web-app>
<context-param>
<param-name>AppFolderName</param-name>
<param-value>datasink</param-value>
</context-param>
…
Answer: D