71.What is the user of “weblogic-application.xml” deployment descriptor file?
Using weblogic-application.xml, you can configure:

We can configure enterprise wide WLS-specific features with the weblogic-application.xml deployment descriptor:

72.What is the user of Weblogic shared java EE Libraries?
A Shared Java EE library:

73.Explain about deployment methods in Weblogic?

74.How many ways we can deploy an application to Weblogic servers?
Several methods are available to deploy the Oracle WebLogic Server applications and shared libraries, including:

75.Explain about auto deployment in Weblogic?
If Production Mode is OFF:

76.Explain about FastSwap and On-Demand Deployment in Weblogic?

Excerpt from weblogic.xml:
<fast-swap>true</fast-swap>

77.While deploying an application to Weblogic, what is the difference between Development and Production Mode?

78.Explain about console deployment method?
Deploying with the console allows full administrator control:

79.Explain about command line deployment?

weblogic.Deployer Syntax:
% java weblogic.Deployer [options]
[-deploy|-undeploy|-redeploy|-start|-stop|-listapps] [file(s)]
Prepare and deploy a new application:
java weblogic.Deployer -adminurl t3://adminserver:7001
   -username myuser –password mypass –name HRServices
   -source /usr/HRServices.ear -targets serverA –deploy
Redeploy an application:
java weblogic.Deployer -adminurl t3://adminserver:7001
   -username myuser –password mypass –name HRServices
   –redeploy
Undeploy an application:
java weblogic.Deployer -adminurl t3://adminserver:7001
   -username myuser –password mypass –name HRServices
   –undeploy
List all applications:
java weblogic.Deployer -adminurl t3://adminserver:7001
   -username myuser –password mypass -listapps

80.What is JNDI?