• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

ibm websphere test 157 for websphere studio application developer 4.0.3 for windows

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
When creating a Java Project, resources that can be added to the build path via the Libraries tab are:

A. Projects

B. Folders

C. Packages

D. JAR files

E. Classpath Variables



Select 3 answers.
Answer:: B,D,E
*************************************************************************************************
Team members are using different drive letters or directories for their Application Developer installations. In this situation, what is the MOST effective method of referring to external JAR files in the Build Path?

A. Move the JAR files to a specific location agreed to by the team.

B. Add the location to the Project References for each project using the JAR files.

C. Keep the JAR files in the repository and refer to them there.

D. Create a classpath variable containing the location of the Workspace, and use the variable when specifying the path to the JAR files.



Select the best answer.
Answer:: D
*************************************************************************************************
Due to strict coding standards imposed by a corporate standards book, import statements must be organized in a particular order. The MOST efficient way to do this would be to:

A. Use Organize Imports from the context menu, then reorder them in the Outline view. Application Developer "remembers" your ordering preferences as you set them.

B. Use Organize Imports from the context menu, after altering the order of the package types on the Order tab of the Project's Java Build Path.

C. Use Organize Imports from the context menu, after altering the order of the package types in the Window - > Preferences - > Java - > Organize Imports.

D. Use Format from the context menu, after altering the order of the package types on the Order tab of the Project's Java Build Path.

E. Use Format from the context menu, after altering the order of the package types in the Window - > Preferences - > Java - > Code Formatter.



Select the best answer.
Answer:: C
*************************************************************************************************
Execution is suspended at a method entry breakpoint to which a hit count has been applied. In this situation, a developer can:

A. Modify existing breakpoints in the Display view.

B. Examine the stack trace in the Log view.

C. Examine variable values from past iterations.

D. Re-enable the method entry breakpoint.



Select the best answer.
Answer :: D
*************************************************************************************************
Which of the following are Server preferences in the Workbench that can be turned on or off?

A. Run on Server action starts the server in debug mode.

B. Switch to the Server perspective when a server starts.

C. Save all open resources before starting servers.

D. Automatically publish before starting servers.

E. Only publish modified resources to the server.



Select 3 answers.
Answer A,B,D
*************************************************************************************************
Filters can be applied to a data connection for what purpose?

A. Restricting tables included in the generated data model

B. Restricting the data that is returned by any SQL statement executed against the connection

C. Setting limits on the maximum result set size returned via the connection

D. Setting limits on the number of concurrent queries that can be executed against the connection



Select the best answer.
Answer:: A
*************************************************************************************************
When using Application Developer as a remote debugging client, which of the following statements accurately reflect the debugging configuration?

A. The debugger is run on the remote machine.

B. The program is run on the local machine.

C. Program control is done from the local machine.

D. Internal program behavior is observed from the local machine.

E. The debugger daemon runs on the local machine
Select 2 answers.

Answer: D, E (Conflicting Answer) no resources Available (C , D)
*************************************************************************************************
Warning messages are added to the Tasks view while editing a web.xml file using the web.xml editor in Application Developer. This happens when the developer specifies:

A. A non-existent file in the < welcome-file-list >

B. A non-existent file in the < error-page >

C. A non-existent class in the < servlet-class > element

D. An invalid value for the < error-code > element



Select 2 answers.
Answer :: C & ? (incomplete) (suggested in the book B and D)
*************************************************************************************************
A web developer wants to ensure that HTML and JSP files contain no spelling errors. The web components are being developed in a language other than the default Application Developer installation. How would the developer configure Application Developer to use the correct language?

A. Use the Web Tools- >Dictionary option of the "Preferences" dialog to select the "Language" used in the files.

B. Use the Workbench- >Dictionary option of the "Preferences" dialog to select the appropriate "Dictionary" file for the language used in the files.

C. Set the "Dictionary" option in the "Properties" dialog of the Web project.

D. The correct dictionary language is automatically selected from the Operating System's "Locale" setting.



Select the best answer.
Answer : A
************************************************************************************************
While developing a web application, it is required that certain portions of a dynamic web page (a JSP) should be displayed only to persons with a certain role (for example, manager). Which of the following is the BEST way of implementing this requirement?

A. Write simple scriptlets that perform a check before displaying the section
<% if(userRole.equals("manager"))
{ %>
Total Sales = <%=salesNum%>
<% } %>

B. Use tag libraries to perform the check
<x:checkAccess role="manager">
Total Sales = <%=salesNum%>
</x:checkAccess>

C. Perform the verification in the controller and redirect accordingly
if(userRole.equals("manager"))
{
// Forward to JSP A
}
else
{
// Forward to JSP B
}

D. Create a small helper JSP that can be included in any JSP using jsp:include
<jsp:include
<jsp:include page="checkAccessPage.jsp"/>

E. Create a role called manager and configure access to the JSP using the Security features of the web.xml file



Select the best answer.
Answer : C (and by the author its E)
*************************************************************************************************

When applying Profiling Filters, which of the following are TRUE?

A. Default filters take precedence over an individual profiling agent's filter settings.

B. An individual profiling agent's filter settings take precedence over the Default filters.

C. To include a subset of classes, you must first specify the subset to be included, and only then specify the larger set to be excluded.

D. To include a subset of classes, you must first specify the larger set to be included, and only then specify the subset set to be excluded.



Select 2 answers.
Answer: (and by the author b, d) (incomplete)
*************************************************************************************************
After successfully searching for a reference to a method, the file containing the method is opened in a Java editor. There are errors in the method. In most situations, in order to determine the nature of the errors without switching from the Search view to the Tasks view, the developer could:

A. Hover over an Error icon.

B. Double-click on an Error icon.

C. Right-click on an Error icon and select Show Error.

D. Place the cursor in the line above an error and click the Go to Next Problem button on the toolbar. The error will be highlighted and hovering over it will give you the description.

E. Place the cursor in the line above an error and click the Go to Next Problem button on the toolbar. The error will be highlighted and the description will display in red in the status bar at the bottom.



Select 2 answers.
Answer :: A, E
*************************************************************************************************
A developer is ready to release code changes related to a new feature for the next product release. The current Stream contents have not yet been versioned, and bug fixes are still needed. Which of the following are necessary to avoid pollution of the development Stream?

A. Before releasing new changes, perform a Catch up operation with the current Stream.

B. Release to a new Stream.

C. Perform a three-way compare and merge the changes in the workspace; then Release to the Stream.

D. Version the Stream contents, then Release to the Stream.



Select 2 answers.
Answer :: B, D
*************************************************************************************************
The New Java Scrapbook Page wizard prompts the user to specify:

A. an existing Server Project

B. an existing Java or Web Project

C. a filename

D. dependent projects

E. the name of the Test Server



Select 2 answers.
Answer :: B , C
*************************************************************************************************
While creating the following simple Java class, which of the following constructs COULD content assist complete successfully?
public class ClassA {
boolean variable = false;
public void setCompleted(){
variable = true;
}
public boolean isCompleted() {
return variable;
}
}

A. public, void, true, false, variable

B. public, void, boolean, true, false

C. class, variable, return

D. boolean, void, variable

E. class, true, false, return



Select the best answer.

Answer :: D
*************************************************************************************************
A web developer creates a Web Project, and a Java Project as a Utility Project. During the early development stages when the code in both projects change frequently, what actions are necessary in order to make the Utility Project available to the Web Project in both the development and testing stages?

A. Select the Utility Project as a required project in Web Project properties.

B. Add the Utility Project into the classpath in the server instance configuration.

C. Modify the web.xml to include the utility project.

D. Modify the associated Enterprise Application Project to include the Utility Project as a module.



Select 2 answers.

Answer :: (according to the author A , C) and the other one is ( C, D)
*************************************************************************************************

While debugging a JSP, which of the following statements is TRUE about variable and stack information?

A. No variable or stack trace information is available.

B. Variable and stack trace information correspond to the generated HTML stream.

C. Variable and stack trace information correspond to generated Java servlet.

D. Variable and stack trace information correspond to the JSP source.



Select the best answer.

Answer :: D
*************************************************************************************************

A WebSphere Remote Server instance and configuration were created using the appropriate information about the remote WebSphere Application Server. During the creation process the FTP file transfer mechanism was selected. What is the sequence of steps that would successfully start the remote server from Application Developer?

A. Start the Agent Controller on the remote machine, start the FTP server on the remote machine, and start the remote server instance from Application Developer.

B. Start the Agent Controller on the remote machine, start the FTP server on the local machine, and start the remote server instance from Application Developer.

C. Start the FTP server on the local machine, start the remote server instance from Application Developer, and start the Agent Controller on the remote machine.

D. Start the FTP server on the local machine, start the Agent Controller on the local machine, and start the remote server instance from Application Developer.



Select the best answer.
Answer :: B
*************************************************************************************************
After entering Load Orders of 2,4 and 6 for three servlets using the web.xml editor, a developer observes that these values are not reflected in the web.xml file. A possible reason for this behavior is that:

A. The servlet classes could not be found.

B. The Load-On-Startup checkbox was not selected.

C. The web.xml file is marked read-only.

D. The numbering for the load orders is incorrect.



Select the best answer.
Answer :: B
*************************************************************************************************
How is the priority of a Task set?

A. Double-click a Task to launch the Tasks Property dialog and choose the priority from the "Priority" dropdown list.

B. Right-click a Task and select Properties to launch the Tasks Property dialog and choose the priority from the "Priority" dropdown list.

C. Right-click a Task and select Set Priority and then High, Normal, or Low.

D. Click the "!" column of a Task and select High, Normal, or Low from the dropdown list.



Select the best answer.
Answer :: D
*************************************************************************************************
A web developer wants to work with multiple Application Developer workspaces. The developer would like to start Application Developer by dragging a selected workspace folder on to the Application Developer desktop icon. How should the properties of the desktop shortcut be configured to support this behavior?

A. Configure the "Start in" entry to the folder containing the workspace.

B. Replace the default contents of the "Target" to point to the root directory containing the workspaces for your projects.

C. Add the "-data" parameter to the end of the default "Target" properties.

D. Associate the ".WAD" file extension with the wsappdev.exe executable file.



Select the best answer.

Answer :: C
*************************************************************************************************
A developer is attempting to collect performance data from an Enterprise Application that is running on a remote Application Server. What steps are required in order to properly setup the environment so this task can be performed?

A. Run Application Developer on the local machine.

B. Run Application Developer on the remote machine.

C. Run the IBM Agent Controller on the local machine.

D. Run the IBM Agent Controller on the remote machine.



Select 2 answers.
Answer:: (A , D By the author)

*************************************************************************************************
While stepping over a method call, a breakpoint is encountered and the debugger suspends execution. The following information about the current thread is displayed in the Debug view:
Thread [main] (Suspended)
---> ArrayIndexOutOfBoundsException.() line: 35
---> Stepping.testMethod() line: 11
---> Stepping.main(String[]) line: 4
What caused the breakpoint to trigger?

A. A Java exception breakpoint was set for "java.lang.ArrayIndexOutOfBoundsException" with the "Caught" option selected.

B. A Java exception breakpoint was set for "java.lang.ArrayIndexOutOfBoundsException" with the "Uncaught" option selected.

C. A method entry breakpoint was added to "java.lang.ArrayIndexOutOfBoundsException"

D. A line entry breakpoint was added to "java.lang.ArrayIndexOutOfBoundsException"



Select the best answer.

Answer :: B (according to the author) or D

*************************************************************************************************
While writing a scriptlet in a JSP, a web developer realizes that the same scriptlet is likely to be used frequently in other JSPs. The scriptlet contains many lines and is included inline in the JSPs. In this situation, a developer can leverage the Content Assist features of Application Developer by:

A. customizing the JSP scriptlet macro

B. using the Quick-Copy Feature to duplicate the scriptlet

C. creating a new macro with the required content

D. adding it to the Favorites Page in the Tasks View.



Select 2 answers.
Answer :: B and C

*************************************************************************************************
The primary purpose of performing a "Catch up" operation with the Stream is to:

A. load new resources from the local file system into the workspace

B. obtain versioned resources from the Stream

C. add changes from the Workspace to the Stream

D. obtain changes that others have made to the resources



Select the best answer.
Answer :: D
*************************************************************************************************
When editing the Properties dialog of a Java project, the purpose of setting the "Build output folder" field on the Source page of the Java Build Path section is to specify the:

A. default folder into which JAR files for that project will be exported

B. default folder into which an entire Java project will be exported

C. folder where the class files are placed when Java source code is compiled

D. folder where resources specified in the build path are kept within the tool before deployment



Select the best answer.

Answer :: C
*************************************************************************************************
Which file or property must be modified in order to create (or add) a new Java source file folder associated with a Web project?

A. application.xml

B. web.xml

C. Web Project properties

D. Web Project classpath



Select the best answer.
Answer :: B
*************************************************************************************************
Which of the following directory structures reflects the structure of a newly created Web project when the "Create CSS File" checkbox was checked?

A. /webApplication/source /webApplication/classes /webApplication/lib /webApplication/css

B. /source /webApplication/WEB-INF/classes /webApplication/WEB-INF/lib /webApplication/theme

C. /source /webApplication/WEB-INF/classes /webApplication/WEB-INF/lib /webApplication/css

D. /webApplication/source /webApplication/WEB-INF/classes /webApplication/lib /webApplication/WEB-INF/theme



Select the best answer.

Answer :: B
*************************************************************************************************
Which of the following are ways to export an EAR file?

A. Right-click an Enterprise Application in the Navigator view on ANY perspective and select Export EAR File.

B. Right-click an Enterprise Application associated with a specific server through the Server Configuration view and select Export EAR File.

C. Select File - > Export - > Ear File and choose the Enterprise Application from the dropdown list of enterprise applications.

D. Select an Enterprise Application in the J2EE view and click the Export EAR File button from the toolbar.

E. Right-click an Enterprise Application in the Repository view and select Export EAR File.



Select 2 answers.
Answer :: A , C
*************************************************************************************************
A developer wants to import image files to an enterprise application from an external file system. All the image files will be deployed to a J2EE application server. In Application Developer, where should the developer create the folder to hold the image files?

A. Under the root folder of the Web Project

B. Under the root folder of the Enterprise Application Project

C. Under the root folder of the Java Project

D. Under the webApplication folder in the Web Project



Select the best answer.

Answer :: D
*************************************************************************************************
Which of the following artifacts can be generated by the SQL to XML wizard against a SQL select statement?

A. XML

B. HTML

C. XML Schema

D. JSP

E. XSL

F. XSD



Select 4 answers.

Answer :: A, B, E, F
*************************************************************************************************
What is the purpose of defining a classpath variable?

A. To add libraries to the Workspace

B. To provide an easy method of adding the locations of JAR files to a project's Java Build Path

C. To define configuration information about the classpath such as order and preference

D. To use individual classes as libraries that are not packaged in JAR files



Select the best answer.
Answer :: B
*************************************************************************************************
A developer starts the test server in debug mode. In which cases will the Debugger be automatically triggered?

A. A "System.out.println" statement is executed.

B. A statement with a breakpoint is reached.

C. The program requires user input.

D. The program terminates without any runtime errors.



Select the best answer.
Answer :: B
*************************************************************************************************
If a Web Project references a JAR file that is located outside of Application Developer, which of the following actions will make the JAR file available to both the Web Project during development and the application server during testing?

A. Add this JAR file as an external JAR in Web Project properties.

B. Add a classpath variable pointing to the JAR file.

C. Import the JAR file into Application Developer workbench as a Java Project.

D. Import the JAR file into the Web Project webApplication/WEB-INF/lib folder.

E. Import the JAR file into an associated Enterprise Application Project.



Select the best answer.

Answer :: B
*************************************************************************************************
A developer finds no available versions when attempting to perform a Compare With - > Local History on a project file. What are the likely causes?

A. The date when file was last saved was before the number of days specified to maintain local history in the Local History Preferences.

B. The file has been edited more times than the maximum number specified in the Workbench Local History Preferences.

C. The maximum file size specified in the Workbench Local History Preferences has been exceeded.

D. A connection to the repository associated with the file's project cannot be established.

E. The file has been Synchronized with the Stream, and no subsequent saved changes have occurred.



Select 3 answers.
Answer :: A, B, C
*************************************************************************************************
Refactoring a class in the Outline view allows a developer to:

A. rename the class

B. rename the class and change the package it is in

C. change the package it is in and edit its import statements

D. change it from a public class to a private class and visa versa



Select the best answer.
Answer :: B
*************************************************************************************************
In Application Developer, a web developer uses the Page Designer Heading Editor tool to change the:

A. heading level only

B. heading text only

C. heading level and heading text

D. heading into another paragraph style



Select the best answer.

Answer :: A
*************************************************************************************************
The ONLY types of methods that can be "automatically generated" through the context menu or wizards within the Java perspective are:

A. Public methods

B. Private methods

C. "main" methods

D. Getters and setters

E. Inherited abstract methods



Select 3 answers.
Answers :: C, D, E
*************************************************************************************************
When using the Insert Bean option to insert a < jsp:useBean > tag in order to declare a JavaBean from within Application Developer Page Designer, the default value of the Scope attribute is "(Default)". This default value represents:

A. request

B. page

C. session

D. application



Select the best answer.
Answer :: B
*************************************************************************************************
If a JavaBean contains a particular user's information and will be used by multiple servlets and JSPs, under which context should the JavaBean be placed?

A. Application

B. Page

C. Session

D. Request

E. Response



Select the best answer.
Answer :: C
*************************************************************************************************
During a local debugging session, a developer makes changes to an application and the test environment. Which of the following will require a restart of the WebSphere Application Server?

A. Modifying the servlet to use a different Data Source object

B. Modifying the JNDI name of the Data Source object used for connection pooling

C. Modifying the usebean tag in a JSP to use a different Java class

D. Changing Session Tracking from URL Rewrite to Cookies

E. Changing the mechanism for storing user information from the HttpSession object to the database



Select 2 answers.
Answers :: D, E
*************************************************************************************************
After opening the Type Hierarchy of the LoginServlet, which extends SimpleServlet(which extends HttpServlet), the doPost() method is selected. The best way to determine whether the LoginServlet's doPost() overrides any of the superclasses' doPost() methods is for the developer to click:

A. Show Inherited Members

B. Show Overridden Methods

C. Show Supertype Hierarchy

D. Lock View and Show Members in Hierarchy



Select 2 answers.
Answer :: C , D
*************************************************************************************************
A web application uses a customized logging class to perform status tracing. Tracing can be turned on or off using this class. This class uses "System.out.println" statements to output status messages. While the web application is running under Application Developer's WebSphere Test Environment, where would these status messages be logged?

A. .log

B. stderr.txt

C. trace.log

D. stdout.txt

E. LogingUtil.log



Select the best answer.
Answer :: D
*************************************************************************************************
It is required that the content listing for a directory on the web server can never be viewed through the browser. It is also required that whenever a requested file is not found, a generic error page (called error.jsp) be displayed to the user.
Which of the following actions must the web developer perform to fulfill these requirements?

A. Set the directoryBrowsingEnabled attribute to false in the ibm-web-ext.xmi file.

B. Set the fileServingEnabled attribute to false in the ibm-web-ext.xmi file.

C. Add the following entry to the web.xml file
<error-page>
<error-code>404</error-code>
<location>/error.jsp</location>
</error-page>

D. Add the following entry to the web.xml
<error-page>
<exception-type>java.io.FileNotFoundException</exception-type>
<location>/error.jsp</location>
</error-page>



Select 2 answers.
Answer :: C, D
*************************************************************************************************
After completing a Java search to find the occurrences of the constructor of a given class, several matches are listed in the Search view. Possible ways to view where the constructor is being used are:

A. Use the Show Previous Match and Show Next Match buttons on the Search View toolbar.

B. Use the Show Previous and Show Next buttons on the Workbench toolbar.

C. Open the file to the method listed in the Location column.

D. Right-click on a match and select Go To File.

E. Double-click on the match.



Select 3 answers.
Answer :: A, D, E
*************************************************************************************************
Which of the following views BEST supports understanding the structure of an Enterprise Application?

A. Navigator

B. Package

C. J2EE

D. Data

E. Application



Select the best answer.
Answer :: C
*************************************************************************************************
Which of the following patterns of Java classes are created as a result of using the Create Database Web Pages Wizard?

A. Front Controller - Class that invokes calls on the model, and displays an appropriate view

B. View Helper - wrapper Classes that provide more control over how data is displayed

C. Factory - Classes that create the necessary JavaBeans given the type

D. Singleton - Class for which only a single instance exists and provides access to the database



Select 2 answers.
Answer :: A, B
*************************************************************************************************
A developer needs to deploy the web pages from a Web project to a local web server (not to an application server). The BEST way to deploy these files directly to the web server is to:

A. configure the web server in the Server perspective, associate the Web project with the server instance, then publish to the server

B. use the WAR Export utility to export the Web project to the web server

C. use the FTP Export utility to export the webApplication folder to the web server

D. use the File system Export utility to export the webApplication folder to the web server



Select the best answer.
Answer :: A
*************************************************************************************************
Which of the following CAN be hidden from view in the Outline view of the Java perspective?

A. Private methods

B. Public fields

C. Public methods

D. Import Statements



Select 2 answers.
Answer :: A, B
*************************************************************************************************
The execute operation on a .sql file in Application Developer allows a developer to apply a DDL script to which of the following entities?

A. A remote database

B. A local database

C. Imported tables within Application Developer

D. A database or schema model within Application Developer



Select the best answer.
Answer :: C or D most probably C
*************************************************************************************************
The principal use of the Object References view of the Profiler in Application Developer is to determine:

A. possible problems with concurrency

B. possible problems with memory leaks

C. the calling sequence between classes and methods

D. the timing relationships between classes and methods



Select the best answer.
Answer : B
*************************************************************************************************
A developer who is just beginning to use Application Developer wants to learn how to use the tool to develop and test servlets. What is the BEST help view to use for retrieving this information?

A. Tasks view

B. By feature view

C. J2EE View

D. Search view

E. By type view



Select the best answer.
Answer :: B
*************************************************************************************************
How can a developer who has set up multiple repositories in Application Developer ensure that, prior to synchronizing with the Stream, the correct Stream will be used?

A. Select Team-- >Show in Resource History to display Stream information for the selected project.

B. Select the Team page of the associated Project Properties, and change the stream if necessary.

C. Select the Team page of the associated Resource Properties, and change the stream if necessary.

D. Highlight the appropriate Stream in the Repositories pane just prior to starting the synchronization.



Select the best answer.
Answer :: B
***************************************************************************************************
A web application is stress tested and found to have very poor performance when persistent sessions are enabled. The MOST likely cause of this behavior is:

A. having many direct references stored in the HttpSession

B. mapping an HttpSession to a single database row

C. disabling the session cache

D. having large object graphs stored in the HttpSession



Select the best answer.
Answer :: D
********************************************************************************************************
When Action Sets are added to a perspective from the Perspective - > Customize menu item, they may be visible as:

A. Workbench level menu items

B. Workbench level toolbar buttons

C. View specific menu items

D. Editor specific toolbar buttons



Select 2 answers.
Answer :: A, B
********************************************************************************************************
At which level may workspace resources be explicitly versioned?

A. file

B. folder

C. project

D. workspace

E. any level



Select the best answer.
Answer :: C
********************************************************************************************************
A web application with extensive connectivity to back-end relational data is performing very poorly. Which of the following application architecture changes will MOST likely lead to the best throughput improvement?

A. Use JDBC 2.0 DataSource(s) to access connection pooling services from the web container.

B. Use EJBs instead of JDBC to access the relational data.

C. Use more distinct servlets to control access to the relational data.

D. Use fewer distinct servlets to control access to relational data.



Select the best answer.
Answer :: A
********************************************************************************************************
When adding a JAR file to a Web Project's manifest classpath via the Edit Module Dependencies context menu, which of the following statements are TRUE?

A. The dependent JAR file must be in the Web Project's associated Enterprise Application Project.

B. The dependent JAR file must be in the Web Project.

C. The dependent JAR file is included in EAR file.

D. A Java Project can be directly added as a dependency module.



Select 2 answers.
Answer :: A , C ( according to the author)
********************************************************************************************************
EXAM: IBM WebSphere Studio Application Developer for Windows, V4.0.3
NUMBER: 157

PASSING SCORE: 57% (33 out of 58) YOUR SCORE: 66% (38 out of 58) GRADE: Pass


The following shows the percentage weighting of each section/category and your related score.
Section / Category % of Test Your Score
1. 1. Workbench Basics 10%67%

2. 2. Application Development
Best Practices5%100%
3. 3. Java Development19%82%

4. 4. Web Development24% 50%
5. 5. Running Applications 7%75%

6. 6. Debugging14%50%

7. 7. Profiling Applications5%67%

8. 8. Data 5%67%

9. 9. Team10%67%
=========
100%
this is my Test Report i have made lots of mistake in this exams please can anybody rectify these mistakes and send me the correct the answer
please provide help regarding this test if anybody has done it and where can i find the Corret Answer.
One thing also i have not put the number because in the Pre asessment test the paper question are randomly selected. please keep this in mind. ok in anticipation and eagerly awaiting your respond

Amitabh
 
Ranch Hand
Posts: 2378
MySQL Database Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Is it a free offer? I mean after passing this sample test, will one get the free voucher for this exam from IBM?
 
I was born with webbed fish toes. This tiny ad is my only friend:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic