IBM C9510-401 Online Practice
Questions and Exam Preparation
C9510-401 Exam Details
Exam Code
:C9510-401
Exam Name
:IBM WebSphere Application Server Network Deployment V8.5.5 and Liberty Profile System Administration
Certification
:IBM Certifications
Vendor
:IBM
Total Questions
:73 Q&As
Last Updated
:Jul 08, 2026
IBM C9510-401 Online Questions &
Answers
Question 31:
A system administrator runs a Jython script that creates and configures several servers and realize that the script fails before completing. Although many tasks succeeded, they are rolled back when the script fails. Before running the script again, what can the administrator add to the script after each task so the completed tasks are committed even if other tasks fail?
A. AdminApp.update() B. AdminConfig.save() C. AdminControl.invoke(server, `sync') D. AdminTask.backupJobManager(`server')
B. AdminConfig.save()
AdminConfig.save()to save changes after script execution.
Question 32:
An organization updated their LDAP directories and modified user roles. The roles that were configured to have access to a highly secured enterprise application were deleted and new roles with new names were created. The application then had security related exceptions.
How can a system administrator resolve the exceptions and restore security for the application?
A. Modify the mapping of security roles of the application to the new LDAP roles. B. Modify the application and remove all security constraints and redeploy the application. C. Modify the application to have a runAs role for each new LDAP role and redeploy the application. D. Create an administrative authorization group with administrator privileges scoped for the application with an administrative group role for the new LDAP roles.
A. Modify the mapping of security roles of the application to the new LDAP roles.
Question 33:
A system administrator runs a Python script that creates and configures several servers and realizes that the script fails before completing. Although many tasks succeeded, they are rolled back when the script fails. Before running the script again, what can the administrator add to the script after each task so the completed tasks are committed even if other tasks fail?
A. AdminApp.update () B. AdminConfig.save() C. AdminControl.invoke(server, 'sync') D. AdminTask.backupJobManager('server')
B. AdminConfig.save()
Question 34:
A system administrator has installed WebSphere Application Server Network Deployment V8.5.5 using the silent installation process and needs the verify that the installation completed successfully. What does the administrator need to do to verify a successful installation?
A. Launch the Installation Manager GUI, verify the installation by going to File -> View Installed Packages. B. Run the command IBMIM listInstalledPackages and check that the appropriate WebSphere Application Server package is listed. C. Check for INSTCONFSUCCESS message at the end of the log.txt file. D. Use the installver command to compare the checksum of the product file to the correct checksum value in the bill-of-materials file and make sure that the checksums match.
A. Launch the Installation Manager GUI, verify the installation by going to File -> View Installed Packages.
You can verify successful installation of the product using the capabilities of IBM Installation Manager.
To verify installation of the product, you can use Installation Manager to find the product in the list of installed packages. Perform one of the following actions:
*
Launch the Installation Manager GUI, and verify the installation by going to File -> View Installed Packages. Or
*
Change the directory to the eclipse/tools subdirectory of the Installation Manager binaries location and run this command:
This will display a list indicating which packages this Installation Manager has installed. For example:
com.ibm.websphere.ND.v85_8.5.0.20110203_0234
Question 35:
A system administrator has created a wsadmin script with several steps to install and configure an application and some resources in a WebSphere Application Server process. The script executed but the application was not installed successfully. The administrator suspects that the script has problems.
How can the administrator test and debug the script?
A. In WebSphere Application Server Developer Tools for Eclipse, right click on the script file and select Validate from context menu. B. Execute the script using the wsadmin with the option -conntype NONE and monitor the commandAssistanceJythonCommands.log file. C. Use WebSphere Application Server Developer Tools for Eclipse in the debug perspective connected to the server and execute the script step by step. D. Run the script using wsadmin with these parameters: -lang jython -javaoption "-Xdebug" and then execute the logViewer command with the option -listInstances
C. Use WebSphere Application Server Developer Tools for Eclipse in the debug perspective connected to the server and execute the script step by step.
Question 36:
A newly deployed application has authorization errors when invoking EJB methods from a servlet. An additional review indicates that users are authenticated, but do not have the correct authorization. How can a system administrator fix the issue ensuring only authorized access?
A. Using the Integrated Solutions Console (ISC), map all security roles to the special subject Everyone. B. Using the Integrated Solutions Console (ISC), map the security roles that are still not mapped to groups in the correct user registry. C. Edit the application using an assembly tool to add a security constraint for the servlet and reinstall the application. D. Edit the application using an assembly tool to remove the security constraint defined for the servlet and reinstall the application.
B. Using the Integrated Solutions Console (ISC), map the security roles that are still not mapped to groups in the correct user registry.
Question 37:
A system administrator is asked by a development team to monitor the performance of a newly deployed EJB application. The administrator noticed that the heap size of the application server is growing.
What should the administrator do to fix the problem using ORB settings?
A. Use J2EE managed object MBeans. B. Enable the pass by reference option. C. Disable the application scoped resources in the application deployment descriptor. D. Ensure that Process embedded configurations is not selected when exporting the EAR.
B. Enable the pass by reference option.
The Object Request Broker (ORB) pass by reference option determines if pass by reference or pass by value semantics should be used when handling parameter objects involved in an EJB request. This option can be found in the administrative console by navigating to Servers => Application Servers => server_name => Object Request Broker (ORB). By default, this option is disabled and a copy of each parameter object is made and passed to the invoked EJB method. This is considerably more expensive than passing a simple reference to the existing parameter object.
A system administrator has deployed web applications to a clustered environment where database session persistence is configured. The administrator needs to improve the response time and the throughput. How can the system administrator do this?
A. Disable server affinity. B. Configure dynamic caching. C. Configure a load balancer to spread work between existing web servers. D. Tune the database session persistence to optimize for failover.
B. Configure dynamic caching.
The dynamic cache service improves performance by caching the output of servlets, commands, and JavaServer Pages (JSP) files. WebSphere Application Server consolidates several caching activities, including servlets, web services, and WebSphere commands, into one service called the dynamic cache. These caching activities work together to improve application performance and share many configuration parameters that are set in an application server's dynamic cache service.
References: WebSphere Application Server V8.5 Administration and Configuration Guide for the Full Profile (July 2013), page 512
Question 39:
A system administrator suspects that the slow performance of an application might be caused by lock contention. To debug this further, what can the administrator do using IBM Support Assistant?
A. Analyze the running server using IBM Monitoring and Diagnostic Tools for Java ?Health Center. B. Collect a javacore and analyze it using IBM Monitoring and Diagnostic Tools for Java ?Health Center. C. Collect three thread dumps at equal time intervals and analyze them using IBM Monitoring and Diagnostic Tools for Java ?Dump Analyzer. D. Collect three system dumps at equal time intervals and analyze them using IBM Monitoring and Diagnostic Tools for Java ?Memory Analyzer.
A. Analyze the running server using IBM Monitoring and Diagnostic Tools for Java ?Health Center.
The IBM Monitoring and Diagnostic Tools for Java - Health Center is a lightweight tool that monitors active IBM Virtual Machines for Java with minimal performance overhead. The Health Center suggests live tuning recommendations for
Garbage Collection, profiles methods including call stacks, and highlights contended locks. This information can help you optimize performance, improve stability and optimize system resource usage.
A system administrator wants to learn some of the Python scripting commands for the administration of the environment.
Which product feature should the administrator use?
A. The wsadmin.properties file to load a profile. B. The AdminTask object to generate wsadmin scripts. C. The guided activities panel from the Integrated Solutions Console (ISC). D. The "Log command assistance commands" option in the Integrated Solutions Console (ISC).
D. The "Log command assistance commands" option in the Integrated Solutions Console (ISC).
Nowadays, the certification exams become more and more important and required by more and more
enterprises when applying for a job. But how to prepare for the exam effectively? How to prepare
for the exam in a short time with less efforts? How to get a ideal result and how to find the
most reliable resources? Here on Vcedump.com, you will find all the answers.
Vcedump.com provide not only IBM exam questions,
answers and explanations but also complete assistance on your exam preparation and certification
application. If you are confused on your C9510-401 exam preparations
and IBM certification application, do not hesitate to visit our
Vcedump.com to find your solutions here.