Which four statements are true about WLST?
A.
You can create a domain with WLST.
B.
WLST commands are case-insensitive.
C.
You can shut down servers with WLST.
D.
All WLST commands include parentheses.
E.
WLST is based on the Perl scripting language.
F.
You can connect to any server through WLST.
G.
The Administration Server needs to be running to use WLST.
Explanation:
A: WLST enables you to create a new domain or update an existing domain without
connecting to a running WebLogic Server (that is, using WLST offline)—supporting the same
functionality as the Configuration Wizard.
B: WLST command names and arguments are case sensitive.
C: The WLST shutdown command Gracefully shuts down a running server instance or a cluster.
The shutdown command waits for all the in-process work to be completed before shutting down
the server or cluster.
You shut down a server to which WLST is connected by entering the shutdown command without
any arguments.
D: All WLST commands include parentheses.
Example: exit(),startApplication(appName, [options])
Reference: Documentation Home > BEA WebLogic Server 9.2 Documentation > WebLogic
Scripting Tool > WLST Command and Variable Reference
ACDF
From http://docs.oracle.com/cd/E15051_01/wls/docs103/config_scripting/using_WLST.html
Syntax for WLST Commands
Follow this syntax when entering WLST commands or writing them in a script:
Command names and arguments are case sensitive.
ACDF
The correct answer is
A , C , D , F
A, B, C, F because “print” command does not include parentheses.
The correct answer is:
ACDF
As discripted in Oracle Official website of WLST document online , WLST Command names and arguments are case sensitive, not case-insensitive.So answer B is wrong.The right answer is ACDF.
Reference:
https://docs.oracle.com/cd/E13222_01/wls/docs90/config_scripting/using_WLST.html.