100 Important IBM WebSphere Application Server 6.1 Interview Question Answer Part-2
QUESTION 11
An application server is using data source connections being managed thru connection pooling.How ever, the server is logging database errors resulting from lack of connections. In this context, what applies to tuning database connections?
QUESTION 12
Which set of parameters can a system administrator adjust to directly improve performance for the EJB container?
QUESTION 13
When altering the level of logging information, which level provides more detailed logging information than the default (info) level ?
QUESTION 14
A J2EE application needs to be configured as follows:
The EJB module and the utility JAR in the application must be loaded by the same Class loader. Web module WAR1 and the EJB module must use the same Class loader and Webmodule WAR2 must have its own Class loader.
What is the correct Web module Class loader configuration for this application?
QUESTION 15
Which Web module parameter adjustments would result in improved response time for Web clients ?
QUESTION 16
Which Web server plug-in setting is NOT configurable using the administrative console?
QUESTION 17
An application has 15 concurrent users and a connection pool size of 10. Each user users 3 prepared statements. For this application, what is the recommended prepared statement cache size?
QUESTION 18
What is the correct syntax when running the backup configuration of administrative server files when WebSphere Security is enabled?
QUESTION 19
When the application server is experiencing normal to heavy usage, which statement most accurately describes optimal pool usage?
QUESTION 20
When configuring a J2C connection factory, which setting can be configured using the administrative console ?
An application server is using data source connections being managed thru connection pooling.How ever, the server is logging database errors resulting from lack of connections. In this context, what applies to tuning database connections?
- Data sources are abstracted from the JDBC drivers to permit database upgrades without impacting the application logic. The administrator should decrease the connection timeout value.
- The connection pool is managed by the application server container, so in addition to increasing the connection setting, additional connections allowed must be configured on the database.
- The data sources are released at the end of the commit phase when using Type 4 JDBC drivers. New connections will be created upon the next database access.
- It is necessary to tune the applications before tuning WebSphere application server. Connections not returned to the pool are often caused by programs not closing connections properly.
QUESTION 12
Which set of parameters can a system administrator adjust to directly improve performance for the EJB container?
- Transaction lifetime and client inactivity timeout
- Cache size and cache cleanup interval
- Data source connection pool and server JVM size
- Session timeout and HTTP session object size
QUESTION 13
When altering the level of logging information, which level provides more detailed logging information than the default (info) level ?
- Fatal
- Warning
- Severe
- Config
QUESTION 14
A J2EE application needs to be configured as follows:
The EJB module and the utility JAR in the application must be loaded by the same Class loader. Web module WAR1 and the EJB module must use the same Class loader and Webmodule WAR2 must have its own Class loader.
What is the correct Web module Class loader configuration for this application?
- WAR1 – Module, WAR2 – Module
- WAR1 – Module, WAR2 – Application
- WAR1 – Application, WAR2 – Application
- WAR1 – Application, WAR2 – Module
QUESTION 15
Which Web module parameter adjustments would result in improved response time for Web clients ?
- Disable load on startup
- Enable pre-compile JSP option
- Set the distributable flag
- Set the reload interval to 20 seconds or less
QUESTION 16
Which Web server plug-in setting is NOT configurable using the administrative console?
- Load balancing option
- Retry interval
- Refresh configuration interval
- Minimum number of connections
QUESTION 17
An application has 15 concurrent users and a connection pool size of 10. Each user users 3 prepared statements. For this application, what is the recommended prepared statement cache size?
- 10
- 15
- 30
- 45
QUESTION 18
What is the correct syntax when running the backup configuration of administrative server files when WebSphere Security is enabled?
- backupConfig WebSphereConfig user <name> -password <password>
- backupConfig WebSphereConfig backup.zip nohalt user <name> -password <password>
- backupConfig WebSphereConfig –cell user <name> -password <password>
- backupConfig WebSphereConfig profilename=AppSrv01 user <name> -password <password>
QUESTION 19
When the application server is experiencing normal to heavy usage, which statement most accurately describes optimal pool usage?
- The pools will all show similar numerical values, indicating balanced workload is occurring throughout the application server.
- Pools used by the application should be released and rebuilt in conjunction with JVM garbage collection cycles ensuring that no state connections persist.
- The performance Management Interface (PMI) must be explicitly enabled on the application server to be monitored, since it requires CPU resources on the server being monitored.
- Pools used by the application should be nearly fully utilized, indicating that resources are being efficiently used.
QUESTION 20
When configuring a J2C connection factory, which setting can be configured using the administrative console ?
- Container-managed authentication alias
- Component-managed authentication alias
- Authentication preference
- Mapping configuration alias
Comments
Post a Comment