单选题How can you modify the application to return more meaningful error messages to the user?()ACreate a custom messages table. Include the necessary error handling code in the form modules to display the meaningful custom message instead of the ORA- error message. BProvide users with a form in the application to query the ORA- error, that will return a custom message to replace the ORA- message. CEliminate constraints where possible, thereby limiting the number of error messages returned. DCreate a procedure to include the RETRIEVE_MESSAGE built-in that automatically translates common server errors into meaningful messages for use in Forms.

单选题
How can you modify the application to return more meaningful error messages to the user?()
A

Create a custom messages table. Include the necessary error handling code in the form modules to display the meaningful custom message instead of the ORA- error message. 

B

Provide users with a form in the application to query the ORA- error, that will return a custom message to replace the ORA- message. 

C

Eliminate constraints where possible, thereby limiting the number of error messages returned. 

D

Create a procedure to include the RETRIEVE_MESSAGE built-in that automatically translates common server errors into meaningful messages for use in Forms.


参考解析

解析: 暂无解析

相关考题:

●The error messages given by a C compiler show the message text,the most common cause of the error,and a suggestion for (73) the error.(73) A.upfsyingB.fixingC.changingD.Editing

You create a Web application. The Web application enables users to change fields in their personal profiles. Some of the changes are not persisting in the database. You need to raise a custom event to track each change that is made to a user profile so that you can locate the error.Which event should you use? ()A. WebAuditEventB. WebEventManagerC. WebBaseEventD. WebRequestEvent

The error messages given by a C compiler show the message text,the most common(68) of the error,and a suggestion for fixing the error.A.consequenceB.causeC.informationD.result

You want to customize access to the corporate network so that agentiess users are instructed to obtain a certificatebefore accessing the network.Which two configurations solve this problem? () A. Create a custom sign-in page with specific instructions in the Instructions field.B. Create a custom sign-in page with specific Missing Certificate messages in the Custom error messages field.C. Create a custom sign-in policy with specific instructions in the Instructions field.D. Create a custom sign-in notification and assign it to the Pre-Auth Sign-in Notification in the sign-in policy.

During cluster fallover testing,the administrator determines that additional work is required to stop existing test applications on the standby node,prior to starting the production applications on the surviving node.  To manage this type of requirement,which step should be performed first?()  A、 Create a custom pre/post event.B、 Add a custom user defined event.C、 Define custom error notification.D、 Modify the test application server.

What is the default message level configured for IBM Tivoli Federated Identity Manager?()A、error messages onlyB、disable all messagesC、error and warning messages onlyD、info, error and warning messages

You are creating an error page that provides a user-friendly screen whenever a server exception occurs.You want to hide the stack trace, but you do want to provide the exception’s error message to the user sothe user can provide it to the customer service agent at your company.  Which EL code snippet inserts thiserror message into the error page?()A、Message: b${exception.message}/bB、Message: b${exception.errorMessage}/bC、Message: b${request.exception.message}/bD、Message: b${pageContext.exception.message}/bE、Message: b${request.exception.errorMessage}/b

How can you modify the application to return more meaningful error messages to the user?()A、Create a custom messages table. Include the necessary error handling code in the form modules to display the meaningful custom message instead of the ORA- error message. B、Provide users with a form in the application to query the ORA- error, that will return a custom message to replace the ORA- message. C、Eliminate constraints where possible, thereby limiting the number of error messages returned. D、Create a procedure to include the RETRIEVE_MESSAGE built-in that automatically translates common server errors into meaningful messages for use in Forms.

You create a Microsoft ASP.NET AJAX application by using the Microsoft .NET Framework version 3.5.  A JavaScript code segment in the AJAX application does not exhibit the desired behavior. Microsoft Internet Explorer displays an error icon in the status bar but does not prompt you to debug the script.  You need to configure the Internet Explorer to prompt you to debug the script.  Which two actions should you perform?()A、Clear the Disable Script Debugging (Other) check box. B、Clear the Disable Script Debugging (Internet Explorer) check box. C、Select the Show friendly HTTP error messages check box. D、Select the Enable third-party browser extensions check box. E、Select the Display a notification about every script error check box.

You need to use the Event Viewer window to review the event logs for only critical and error events. You also need the maximum amount of detail for each of these events. What should you do? ()A、Edit the filter for the Administrative Events view.B、Create a custom view. Enable the Critical, Error, and Information level events. Select all logs.C、Create a custom view. Select the Critical checkbox, Error checkbox, and Verbose checkbox. Select all logs.D、Search for the Critical or Error string by using the Find option of the Administrative Events view.

You create a Web Form. The Web Form allows users to calculate values and display the results in a label named lblResults. You need to capture all unhandled exceptions on the Web Form through the Error event. The Error event must capture each unhandled exception and display it on the Web Form. Which code segment should you use?()A、protected void Page_Error(object sender, EventArgs e) { lblResults.Text = e.ToString(); e=null;}B、protected void Page_Error(object sender, EventArgs e) { lblResults.Text = Server.GetLastError().ToString(); Server.ClearError();}C、protected void Page_Error(object sender, EventArgs e) Response.Write(e.ToString()); e=null;}D、protected void Page_Error(object sender, EventArgs e) Response.Write(Server.GetLastError().ToString()); Server.ClearError();}

You have 15 computers that run Windows 7. You need to implement a monitoring solution that meets thefollowing requirements. Sends an e-mail notification when an application error is logged in the event log  Runs a script to restart the computer if an application error occurs between 17:00 and 07:00 Minimizes the administrative effort required to monitor applications. What should you do?()A、On all the computers, configure a custom view. Configure a custom task for the application error events.B、On a computer, configure a custom view to display the application errors. Configure a custom task forthe application error events.C、On a central computer, configure an event subscription. On all of the computers, configure a customtask in the Forwarded Events log.D、On all the computers, configure an event subscription to a central computer. On the central computer,configure a custom task in the Forwarded Events log.

You create a Web Form. The Web Form allows users to calculate values and display the results in a label named lblResults. You need to capture all unhandled exceptions on the Web Form through the Error event. The Error event must capture each unhandled exception and display it on the Web Form. Which code segment should you use? ()A、Protected Sub Page_Error(ByVal sender As Object, _ ByVal e As System.EventArgs) Handles Me.Error lblResults.Text = e.ToString() e = NothingEnd SubB、Protected Sub Page_Error(ByVal sender As Object, _ ByVal e As System.EventArgs) Handles Me.Error lblResults.Text = Server.GetLastError().ToString() Server.ClearError()End SubC、Protected Sub Page_Error(ByVal sender As Object, _ ByVal e As System.EventArgs) Handles Me.Error Response.Write(e.ToString()) e = NothingEnd SubD、Protected Sub Page_Error(ByVal sender As Object, _ ByVal e As System.EventArgs) Handles Me.Error Response.Write(Server.GetLastError().ToString()) Server.ClearError()End Sub

You create a Web application. The Web application enables users to change fields in their personal profiles. Some of the changes are not persisting in the database. You need to raise a custom event to track each change that is made to a user profile so that you can locate the error. Which event should you use?()A、WebAuditEventB、WebEventManagerC、WebBaseEventD、WebRequestEvent

An application has been migrated to the Windows Azure platform.  The application references a native x86 DLL.  The DLL source code is not available.   The application displays an error when loading the DLL.   You need to recommend an approach for ensuring that the application can load the DLL.  What should you recommend?()A、 Create a 32bit application to host the DLL.B、 Modify the application to allow unsafe code.C、 Modify the application to call methods in the DLL.D、 Modify the application to target the x86 platform.

You have 15 computers that run Windows 7. You need to implement a monitoring solution that meets the following requirements.Sends an e-mail notification when an application error is logged in the event log .Runs a script to restart the computer if an application error occurs between 17.00 and 07.00 .Minimizes the administrative effort required to monitor applications. What should you do?()A、On all the computers,configure a custom view. Configure a custom task for the application error events.B、On a computer,configure a custom view to display the application errors. Configure a custom task for the application error events.C、On a central computer, configure an event subscription. On all of the computers, configure a custom task in the Forwarded Events log.D、On all the computers,configure an event subscription to a central computer. On the central computer,configure a custom task in the Forwarded Events log.

单选题What is the default message level configured for IBM Tivoli Federated Identity Manager?()Aerror messages onlyBdisable all messagesCerror and warning messages onlyDinfo, error and warning messages

单选题You have 15 computers that run Windows 7. You need to implement a monitoring solution that meets the following requirements.Sends an e-mail notification when an application error is logged in the event log .Runs a script to restart the computer if an application error occurs between 17.00 and 07.00 .Minimizes the administrative effort required to monitor applications. What should you do?()AOn all the computers,configure a custom view. Configure a custom task for the application error events.BOn a computer,configure a custom view to display the application errors. Configure a custom task for the application error events.COn a central computer, configure an event subscription. On all of the computers, configure a custom task in the Forwarded Events log.DOn all the computers,configure an event subscription to a central computer. On the central computer,configure a custom task in the Forwarded Events log.

单选题You are creating an error page that provides a user-friendly screen whenever a server exception occurs.You want to hide the stack trace, but you do want to provide the exception’s error message to the user sothe user can provide it to the customer service agent at your company.  Which EL code snippet inserts thiserror message into the error page?()AMessage: b${exception.message}/bBMessage: b${exception.errorMessage}/bCMessage: b${request.exception.message}/bDMessage: b${pageContext.exception.message}/bEMessage: b${request.exception.errorMessage}/b

单选题You create a Web Form. The Web Form allows users to calculate values and display the results in a label named lblResults. You need to capture all unhandled exceptions on the Web Form through the Error event. The Error event must capture each unhandled exception and display it on the Web Form. Which code segment should you use?()Aprotected void Page_Error(object sender, EventArgs e) { lblResults.Text = e.ToString(); e=null;}Bprotected void Page_Error(object sender, EventArgs e) { lblResults.Text = Server.GetLastError().ToString(); Server.ClearError();}Cprotected void Page_Error(object sender, EventArgs e) Response.Write(e.ToString()); e=null;}Dprotected void Page_Error(object sender, EventArgs e) Response.Write(Server.GetLastError().ToString()); Server.ClearError();}

单选题You create a Web application. The Web application enables users to change fields in their personal profiles. Some of the changes are not persisting in the database. You need to raise a custom event to track each change that is made to a user profile so that you can locate the error. Which event should you use? ()AWebAuditEventBWebEventManagerCWebBaseEventDWebRequestEvent

单选题During cluster fallover testing,the administrator determines that additional work is required to stop existing test applications on the standby node,prior to starting the production applications on the surviving node.  To manage this type of requirement,which step should be performed first?()A Create a custom pre/post event.B Add a custom user defined event.C Define custom error notification.D Modify the test application server.

单选题You create a Web Form. The Web Form allows users to calculate values and display the results in a label named lblResults. You need to capture all unhandled exceptions on the Web Form through the Error event. The Error event must capture each unhandled exception and display it on the Web Form. Which code segment should you use? ()AProtected Sub Page_Error(ByVal sender As Object, _ ByVal e As System.EventArgs) Handles Me.Error lblResults.Text = e.ToString() e = NothingEnd SubBProtected Sub Page_Error(ByVal sender As Object, _ ByVal e As System.EventArgs) Handles Me.Error lblResults.Text = Server.GetLastError().ToString() Server.ClearError()End SubCProtected Sub Page_Error(ByVal sender As Object, _ ByVal e As System.EventArgs) Handles Me.Error Response.Write(e.ToString()) e = NothingEnd SubDProtected Sub Page_Error(ByVal sender As Object, _ ByVal e As System.EventArgs) Handles Me.Error Response.Write(Server.GetLastError().ToString()) Server.ClearError()End Sub

单选题You create a Microsoft ASP.NET application by using the Microsoft .NET Framework version 3.5. You create a Web page to display photos and captions. The caption of each photo in the database can be modified by using the application. You write the following code fragment:         ’ runat="server"/             ’ runat="server" /             When you access the Web page, the application throws an error.  You need to ensure that the application successfully updates each caption and stores it in the database.  What should you do?()AAdd the ID attribute to the Label control. BAdd the ID attribute to the TextBox control. CUse the Bind function for the Label control instead of the Eval function. DUse the Eval function for the TextBox control instead of the Bind function.

单选题You have 15 computers that run Windows 7. You need to implement a monitoring solution that meets thefollowing requirements. Sends an e-mail notification when an application error is logged in the event log  Runs a script to restart the computer if an application error occurs between 17:00 and 07:00 Minimizes the administrative effort required to monitor applications. What should you do?()AOn all the computers, configure a custom view. Configure a custom task for the application error events.BOn a computer, configure a custom view to display the application errors. Configure a custom task forthe application error events.COn a central computer, configure an event subscription. On all of the computers, configure a customtask in the Forwarded Events log.DOn all the computers, configure an event subscription to a central computer. On the central computer,configure a custom task in the Forwarded Events log.

多选题You want to customize access to the corporate network so that agentiess users are instructed to obtain a certificatebefore accessing the network.Which two configurations solve this problem? ()ACreate a custom sign-in page with specific instructions in the Instructions field.BCreate a custom sign-in page with specific Missing Certificate messages in the Custom error messages field.CCreate a custom sign-in policy with specific instructions in the Instructions field.DCreate a custom sign-in notification and assign it to the Pre-Auth Sign-in Notification in the sign-in policy.

单选题An application has been migrated to the Windows Azure platform.  The application references a native x86 DLL.  The DLL source code is not available.   The application displays an error when loading the DLL.   You need to recommend an approach for ensuring that the application can load the DLL.  What should you recommend?()A Create a 32bit application to host the DLL.B Modify the application to allow unsafe code.C Modify the application to call methods in the DLL.D Modify the application to target the x86 platform.