Sei sulla pagina 1di 11

Exam Title

: Microsoft 190-836 : IBM Lotus Notes Domino 8 Developing Web Applications

Version : R6.1

www.Prepking.com

Prepking - King of Computer Certification Important Information, Please Read Carefully


Other Prepking products A) Offline Testing engine Use the offline Testing engine product to practice the questions in an exam environment. B) Study Guide (not available for all exams) Build a foundation of knowledge which will be useful also after passing the exam. Latest Version We are constantly reviewing our products. New material is added and old material is updated. Free updates are available for 90 days after the purchase. You should check your member zone at Prepking and update 3-4 days before the scheduled exam date. Here is the procedure to get the latest version: 1.Go towww.Prepking.com 2.Click on Member zone/Log in (right side) 3. Then click My Account 4.The latest versions of all purchased products are downloadable from here. Just click the links. For most updates,it is enough just to print the new questions at the end of the new version, not the whole document. Feedback If you spot a possible improvement then please let us know. We always interested in improving product quality. Feedback should be send to feedback@Prepking.com. You should include the following: Exam number, version, page number, question number, and your login ID. Our experts will answer your mail promptly. Copyright Each PDF file contains a unique serial number associated with your particular name and contact information for security purposes. So if we find out that a particular PDF file is being distributed by you, Prepking reserves the right to take legal action against you according to the International Copyright Laws. Explanations This product does not include explanations at the moment. If you are interested in providing explanations for this exam, please contact feedback@Prepking.com.

www.Prepking.com

1. Which of the following server tasks must be enabled in order for a Domino application to be accessed from a Web browser? A. WEB B. HTTP C. HTML D. DOMINO Answer: B 2. Hank is investigating navigation options for his Web application, and wants to come up with something that is flexible and easy to use. Which of the following provides this in Domino? A. A Web navigator B. A custom Java applet C. HTML views embedded onto pages D. An outline embedded onto a page Answer: D 3. Which one of the following programming languages or language combinations can be used to build an agent that retrieves data from non-Domino servers over the Internet? A. Java B. XML, WSDL C. LotusScript in combination with C D. This is not possible in a Web agent. Answer: A 4. A system administrator needs to give Web users access to databases on DomServer1/Acme. Presently, only Notes clients are allowed to access the database via TCP/IP. What should the system administrator do? A. Add HTTP access to the DomServer1/Acme Domino Directory. B. Add WebService access to the DomServer1/Acme Domino Directory. C. Add HTTP to the list of server tasks in the DomServer1/Acme Notes.ini file. D. Add WebService to the list of server tasks in the DomServer1/Acme Notes.ini file. Answer: C 5. Candy created a Domino based Web site with the following site rule defined: Type of rule: Substitution Incoming URL pattern: /projects/*/*.html Replacement pattern: /projects/*.nsf/*?OpenPage Which of the following describes the destination URL that is generated by Domino when the user enters */projects/cio/index.html as the URL?

www.Prepking.com

A. /projects/cio.nsf/index?OpenPage B. /projects/index.nsf/cio?OpenPage C. /projects/projects.nsf/cio?OpenPage D. /projects/cio.nsf/index.html Answer: A 6. Maggie wants to display the authenticated user's name on her Web site's welcome page. How can she do this? A. Use the JavaScript document.userName property. B. Display the name using the USER_NAME CGI field. C. Write a JavaScript function that gets the name from the session cookie. D. Create computed text on the page that computes to the current user's name. Answer: D 7. Sara's application needs to use the same graphic in several forms. When she designed the application, she pasted the graphic into each form. However, when she views documents that were created with these forms, the browser reacts very slowly. What should Sara do to correct this problem? A. Remove the graphics from the forms. B. Convert the graphic format to a TIFF and paste it back into the forms. C. Place the graphic in the database as an image resource and reference the image resource in all related forms. D. Compress the graphics into a single ZIP file and place the file in the database as an image resource. Answer: C 8. Serge wants to store some user preferences in a database, so that each user can set custom settings and have those settings available the next time they use the database. What kind of special Notes design element should he use? A. User Form B. Preference Form C. Profile Document D. Settings Document Answer: C 9. Jane created a cascading style sheet that she is trying to add to her Domino database. When she clicks the "New Style Sheet Resource" button and navigates to the proper directory, she does not see the style sheet file. What can she do to correct this? A. Cut and paste the style-sheet file into the database. B. Make sure that the style-sheet file extension is .css. C. Add the cascading style-sheet as a File Resource first, then import it from there.

www.Prepking.com

D. Put the style code into a Page element, then save the element to include it as part of the application. Answer: B 10. Logan has a servlet that he wants to deploy as part of his Domino-based Web application. What does he need to do to accomplish this? A. Deploy the servlet to a J2EE application server. B. Domino does not support the use of servlets. C. Create a Web Configuration Settings document and change the Configuration Type to "Servlet Support". D. Enable servlet support for the Domino server by modifying the Java Servlet Support section of the Server Document. Answer: D 11. Melissa has created a default outline in her application, and wants to display specific outline entries to Web users. How can she do this? A. Create a separate outline for Web users. B. Use Hide-when formulas on the page where the outline is embedded. C. Surround outline entries with HTML tags to make them visible to Web users. D. Select or deselect the "Hide entry from Web browsers" checkbox for the Outline entry. Answer: D 12. Martin just moved his Domino Web application to a new server. Now, when a Web user calls an agent, a new security error occurs that did not occur on the old server. What is a possible cause for this? A. Martin needs to rewrite his Script Libraries to utilize JavaScript. B. Martin is using outdated Java code that cannot run on the new server. C. Martin needs to register his Web application in the catalog.nsf database. D. Martin needs to be added to the Server Document's "Sign script libraries to run on behalf of someone else" field. Answer: D 13. Which of the following can be used to create an anchor link in a Notes database form? A. A link hotspot B. A button using Java C. A formula pop-up hotspot D. An action hotspot that uses LotusScript Answer: A 14. Marc is creating a Web application. He wants to let Web users with "No Access" view specific pages created with forms. How can he accomplish this? A. Create a form with a Readers field, and give the field a computed value of "$PublicAccess". Create a view with "$PublicAccess" in the access list.

www.Prepking.com

B. Create a form with a $PublicAccess field. Set the "Available to public access users" form property. Create a view with "$PublicAccess" in the access list. C. Create a form with a $PublicAccess field. Set the "Available to public access users" form property. Create a view with the "Available to public access users" property set. D. Create a form with a $PublicAccess field. Set a Readers field to "Available to public access users". Create a view with the "Available to public access users" property set. Answer: C 15. Web users using Robert's Domino-based site are able to submit formatted text. How does he accomplish this on his form? A. Display a text field as an editor applet. B. Display a rich text field as an editor applet. C. Display a rich text field within an HTML text area. D. Display a rich text lite field within an HTML text area. Answer: B 16. Chris is creating a Web service consumer in Domino. He has a URL that he has used from a Web browser to browse the WSDL for the web service he will consume. He does not have a copy of the WSDL file on his computer. When he selected the option to import the WSDL, he was presented with a window prompting him to enter a file name. How can Chris get the WSDL imported into his Web service consumer? A. Chris cannot enter a WSDL URL here. He must save the WSDL file to his local machine first. B. Enter the URL of the WSDL as the file name, and click the Open button. Domino will then import the WSDL. C. Change the http:// part of the WSDL URL to file://, and enter that as the file name. After you click the Open button, Domino will import the WSDL. D. Select the "Retrieve WSDL from Web" option. A window displays prompting for the "WSDL Web address". Enter the URL of the WSDL as the Web address, and click the Open button. Domino will then import the WSDL. Answer: B 17. Gary would like to modify a view so that links on his Web site are displayed in the second column rather than the first column. How can he accomplish this? A. Add another "Web" column to the view. B. Modify the view property "Column number for Web links". C. Select the column property "Show values in the column as links" in the second column, and deselect the same property for the first column. D. Use pass-thru HTML to achieve this effect, as there is no column or view property available. Answer: C

www.Prepking.com

18. Shawn is allowing another Web application to call his LotusScript agent via URL. Instead of seeing a formatted Web page, the other user only sees the text "Agent done". What can Shawn do provide better feedback from his agent? A. Use a form instead with a WebQuerySave agent. B. This is a Domino feature and cannot be changed. C. Use the Print method within the agent to output text. D. Use the WebPrint method within the agent to output text. Answer: C 19. Henry has an executable file stored as a file resource in his database. He wants to make this file available for use via a Web browser, using the URL syntax: http://server/db.nsf/filename?OpenFileResource What additional things does he need to do? A. He needs to enable the "Use File Resources on the Web" database property. B. An executable file cannot be made available to Web browsers as a File Resource. C. He does not need to do anything else. The file will be available to users as-is. D. He needs to update the MIME type property in the File Resource properties box to "application/executable". Answer: C 20. Pierre wants to add a company logo to the top of all the views in his database when they are displayed on the Web. He knows he can create a special form that defines how all the views are displayed by Domino. What does he need to name this special form? A. $$ViewTemplate B. $$ViewTemplateDefault C. $$DominoViewTemplate D. $$WebViewTemplate Answer: B 21. Jack cannot get two buttons on his web form to appear when using a Web browser. What is the most likely cause for this? A. Multiple buttons on a form must be coded using JavaScript. B. The form property, "Web Access: Show buttons" must be selected. C. Only the Submit button appears for Web clients. D. The database preference "Web access: use JavaScript when generating pages" is not selected. Answer: D 22. Billy wrote some JavaScript code for validating user-entered field values on his Web forms. What should he do to make that code available to all forms in his application?

www.Prepking.com

A. Attach a JS file to a page and embed the page into each form. B. Create a page named validate.js and embed it into each form. C. Create a JavaScript Library and insert it into the JS Header event on each form. D. Create a Shared Field called $$JSHeader with the JavaScript code and include the shared field in every form. Answer: C 23. Bill has a Java agent named Process Sales that will process the sales data for all documents created with the Sales form. He would like to have Web users launch the agent via the web browser. How can he do this? A. Embed a Java applet on the form to call the agent. B. Set the OnBrowserOpen event on the Sales form to run the Process Sales agent. C. Create a view action in the Sales view and use the @ToolsRunAgent function to launch the agent. D. Create a view action in the Sales view and use the @Command([RunAgent]) function to launch the agent. Answer: D 24. Jane wants to reference the form object in her JavaScript code. Which one of the following lines of code will allow her to do this? A. doc.form B. doc.forms[0] C. document.form D. document.forms[0] Answer: D 25. Which JavaScript event should Bill use to run code in the Web client before saving a form? A. onSave B. onFocus C. onSubmit D. onUnload Answer: C 26. Tony would like to use cookies in his Web application. What @Formula language functions can he use to read and set cookies? A. @HTTPHeader B. @GetCookie and @SetCookie C. @GetHTTPHeader and @SetHTTPHeader D. @GetEnvironment and @SetEnvironment Answer: C

www.Prepking.com

27. Marge wants to track user preference information while users navigate through her Web site, but does not want to require users to authenticate when accessing the site. Which of the following should she use to track the user information? A. Cookies B. Servlets C. User Profile Documents D. The users must authenticate Answer: A 28. What is the purpose of using XSLT in a Domino Web application? A. To define what DXL should be available for export. B. To allow a Web service to interact with a Java agent. C. To display a view as HTML without using a Java applet. D. To transform XML documents to HTML or even to another XML document. Answer: D 29. Abe wants a quick way to see the DXL representation of his form. What is the best way to do this? A. Select "View DXL" in the design element properties. B. Preview the form as DXL from within Domino Designer. C. Preview the form on the Web with the ?ReadDXL URL command D. Use the View option in the DXL Utilities menu in Domino Designer. Answer: D 30. Jackie has created a form for her Web application. She has also created a "Thank you" page that tells the user that their form was successfully received and provide links to other parts of her application. However, when the form is submitted, a page displays "Form processed". What should she do to have her "Thank you" page displayed instead? A. Create a WebQuerySave agent that writes the message to the browser. B. Add a $$Return field to her form that directs users to the "Thank you" page. C. Use JavaScript in the onUnload form event that will create the message. D. Populate a WebReturn field with the location of the "Thank you" page. Answer: B 31. Deb has a Web application that needs to retrieve data from a lookup table when a new document is being saved. She would like to use LotusScript to write the agent to accomplish this. Where would Deb call the LotusScript agent so that the Web application could use it? A. onSubmit Form event B. QuerySave Form event C. WebPostSave Form event

www.Prepking.com

D. WebQuerySave Form event Answer: D 32. Marco has been asked to create a blog for one of the executives at his company, and to include an RSS feed from the blog. Marco is considering modifying an existing database template for this purpose, but is hoping there is an easier way. What other options does he have? A. Create a new database from the dominoblog.ntf template. Standard blogging features, including RSS, are already included. B. Create a new database from the discsw7.ntf template. Enable the "Launch as Blog" option on the Launch tab of the database properties. RSS is automatically enabled along with other standard blog features. C. Create a new database from the dominoblog.ntf template. Standard blogging features are already included. To activate RSS, Marco will need a database created from the rss_generator.ntf template, then configure the feed in the RSS Feed Definitions view. D. Create a new database from the discsw7.ntf template. Enable the "Launch as Blog" option on the Launch tab of the database properties. To activate RSS, Marco will need a database created from the rss_generator.ntf template, then configure the feed in the RSS Feed Definitions view. Answer: A 33. Which of the following can Napolean use to validate the contents of the approvals checkbox on his contact Web form? A. if( document.contact_form.approvals.checked = 0 ) {alert('Approvals must be checked.') ; } B. if( document.contact_form.approvals.checked = false ) {alert('Approvals must be checked.') ; } C. if( document.contact_form.approvals.checked == false ) {alert('Approvals must be checked.') ;} D. if( document.contact_form.approvals.true == false ) {alert('Approvals must be checked.') ; }} Answer: C 34. Joe wants to decode a URL into a regular text string. Which of the following should he use? A. @Text B. @Decode C. @URLDecode D. @URLToText Answer: C 35. A richtext field on the main form of Paki's Domino application is often populated with multiple sections, and the users sometimes type multiple spaces to separate portions of text. Paki would like to ensure that all sections are expanded automatically when displayed on the Web, and he needs to ensure that displayed text includes the multiple consecutive spaces that users may have typed. How can he do this? A. Create a Computed for Display text field named $$HTMLOptions on the form. Set the field to be

www.Prepking.com

100% Pass Guaranteed or Full Refund Word to Word Real Exam Questions from Real Test Buy full version of exam from this link below http://www.prepking.com/190-836.htm

Potrebbero piacerti anche