You run the following WLST script and it completes successfully. Which statement best describes
what the script created?
A.
A CMO named myserver with the listen address 192.168.1.102 and port 8008
B.
A Managed Server named myserver with the listen address 192.168.1.102 and port 7001
C.
A Managed Server named myserver with listen address 192.168.1.102 and port 8008
D.
An Administration Server named myserver with the listen address 092.168.1.102 and port 8008
Explanation:
A managed server (not a CMO, not an administration server) is created.
Port is 8008.
Note: Listing: Creating a Managed Serverconnect(“username”,”password”)
edit()
startEdit()
svr = cmo.createServer(“managedServer”)
svr.setListenPort(8001)
svr.setListenAddress(“my-address”)
save()
Reference: WebLogic Scripting Tool, Using WLST Online to Update an Existing Domain
C is correct