单选题You need to change the text of a pop-up menu that appears when a user right clicks the mouse in the EMP_DATA data block. Where could you find the node for the pop-up menu in the Object Navigator?()ABuilt-in Packages BMenus CPL/SQL Libraries DObject Libraries EForm Module

单选题
You need to change the text of a pop-up menu that appears when a user right clicks the mouse in the EMP_DATA data block. Where could you find the node for the pop-up menu in the Object Navigator?()
A

Built-in Packages 

B

Menus 

C

PL/SQL Libraries 

D

Object Libraries 

E

Form Module


参考解析

解析: 暂无解析

相关考题:

●When you choose a command name that is followed by"…"on menu,a (72) box appears in which you provide more information.(72) A.dialogB.listC.checkD.text

You create a Web site that stores users‘ active themes in user profile objects. You need to apply users‘ preferred themes when they log on to the Web site.What should you do? () A. In the InitComplete event handler, set the Theme property of the Page object based on the user profile.B. In the PreLoad event handler, set the Theme property of the Page object based on the user profile.C. In the OnLoad event handler, set the Theme property of the Page object based on the user profile.D. In the PreInit event handler, set the Theme property of the Page object based on the user profile.

When you choose a command name that is followed by "…" on menu, a(72)box appears in which you provide more information.A.dialogB.listC.checkD.text

When you choose a command name that is followed by "..." on menu, a(13)box appears in which you provide more information.A.textB.dialogC.listD.check

The CALC function is used several times within the sales report. To simplify maintenance you want to store the function in one place and call it from within your PL/SQL trigger code. Which node would you use in object navigator to create a report level programme unit to store the function?()A、Programme units. B、PL/SQL libraries. C、Database object. D、Built in packages.

Which three objects are components of a menu module?()A、Menus B、Canvases C、Object libraries D、Visual attributes E、Attached libraries

Which object is added to a form module when you copy the reusable calender class?()A、List icon B、Object group C、PL/SQL library D、Key-Listval trigger

You created a custom menu for the Order Entry application. The shipping administrator has requested an additional submenu containing four items to invoke various reports. Which command type must you use to identify the parent menu item as a submenu? ()A、Menu B、Plus C、MacroD、PL/SQL

You want to make use of the object features available in the database for the form module you are developing. Which three statements about object types are true? ()A、An object type is a user-defined composite data type. B、The attributes of an object type can be those of other object types. C、A PL/SQL table of records is an example of a nested object type. D、An object type must be declared as a type before the actual object itself can be declared.

You are creating a sales data template and need to add a picture to the margin. What is the best way to add this margin?()A、Choose the margin code in the object navigator and select file-import-image. B、Choose the margin node in the object navigator and use the tool bar button. C、Click the margin button in the layout model and select file-import-image. D、Click the margin button in the layout model and use the tool bar button.

You need to allow the user to toggle between automatic query and no automatic query using a pop-up menu. Which built-in would you use in the menu item command to obtain the relationship name? ()A、GET_RELATION_PROPERTY B、SET_RELATION_PROPERTY C、GET_BLOCK_PROPERTY D、GET_FORM_PROPERTY

You need to change the text of a pop-up menu that appears when a user right clicks the mouse in the EMP_DATA data block. Where could you find the node for the pop-up menu in the Object Navigator?()A、Built-in Packages B、Menus C、PL/SQL Libraries D、Object Libraries E、Form Module

What are three uses for record groups?()A、To pass data to a pop-up menu. B、To populate a base table block. C、To pass data to other form modules. D、To pass data to other Oracle products. E、To dynamically construct SELECT statements. F、To server as the source for a FROM clause query.

You need to add a pop-up menu to the CV_EMP canvas to display when a user right-clicks the mouse within the canvas. How could you create the pop-up menu?()A、Use the Layout Editor to create a pop-up menu, assign commands to the menu in the Menu Editor, and attack the menu items to the canvas. B、Use the Report Wizard to create a pop-up menu and attack the menu items to the canvas.  C、Alter the pop-up Menu Property value in the Property Palette of the canvas. D、Use the Object Navigator to create a pop-up menu, assign commands to the menu items, and attack the menu to items or canvases.

You work as an application developer at Contoso.com. You use Microsoft .NET Framework 3.5 and Microsoft ADO.NET to develop an application. The Contoso.com network contains a Microsoft SQL Server 2005 server named DB01. Your application retrieve records from a  database named Trades that resides on DB01. The application connects to Trades by using an instance of the SqlConnection class with the following connection string.   "Data Source=DB01;UID=’mhamm’;PWD=’password’;"   When the application calls the Open method of the SqlConnection object, it displays the following: "Cannot open user default database. Login failed. Login failed for user ’mhamm’".  You need to make sure that you can connect to Trades when the user account for the connection is mhamm.   What should you do? ()A、 Change the connection string as follows:Data Source=DB01;Initial Catalog=Trades;UID=mhamm; PWD=password;"B、 Create a login for Mia Hamm on DB01.C、 Create a database user object in Trades and map the object to the SQL Server 2005 Login of Mia Hamm.D、 Change the connection string as follows:"Server=DB01;Database=Trades;UID=mhamm;PWD=password;"

You are developing an ASP.NET Web application. The application must pass an object that contains user-specific data between multiple pages. The object ismore than 100 KB in size when serialized.You need to minimize the amount of data is sent to the user. What should you do?()A、Pass the object data in a hidden field.B、Store the object instance in a session variable.C、Use a cookie that contains the object data.D、Encode the object data and pass it in a query string parameter.

You are the administrator of a Windows 2000 network. You purchase 25 new portable computers that have a preinstalled version of Windows 98. You upgrade the 25 new computers to Windows 2000 Professional. You want to remove the Logoff option from the start menu on the 25 new computers. Which two methods can you use to accomplish this goal?()A、 On the advanced tab of the task bar and start menu dialog box, clear the Display log off  option.B、 On the advanced tab of the task bar and start menu dialog box, clear the administrative tools  option. C、On the general tab of the task bar and start menu dialog box, clear the personalized menus  option. Log off and then log on to the computers.D、 Use a local computer policy that will not include the logoff option on the start menu.E、 Use the user profiles tab within the properties of my computer to change the profile from the  local profile to a roaming user profile.

You have a computer that runs Windows XP Professional. You need to ensure that the Administrative Tools menu appears on the Start menu. What should you do?() A、Modify the Display Properties. B、Modify the Taskbar and Start Menu Properties.C、Switch to Classic View from Control Panel.D、Change the desktop theme to Windows Classic.

单选题You are creating the SAL_INFO data block on the EMP_QUERY form. The SALARY field should only be populated if the logged-on user is a manager. Since this query could potentially return a large amount of records, you have created a stored procedure which uses a ref cursor on which to base the data block. How would you create the data block?()AClick the Data Blocks node in the Object Navigator and click the create button. Choose to build the data block manually. Enter the procedure name in the Query Data Source Columns property and the procedure code in the Query Data Source Arguments property. BChoose Tools - Data Block Wizard, select Table as the data source type, and base the data block on the columns included in the procedure. CSelect the Data Blocks node in the Object Navigator and click the Create button. Choose to build the data block manually, alter the Query Data Source Type property to 'Ref cursor', and enter the name of the procedure in the Query Data Source Name property. DSelect the Data Blocks node in the Object Navigator and click the Create button. Alter the Query Data Source Name, Query Data Source Columns, and Query Data Source Arguments properties to create a stored procedure that uses a ref cursor. ELaunch the Data Block Wizard, select Stored Procedures as the data source type, and base the block on the procedure.

单选题You need to allow the user to toggle between automatic query and no automatic query using a pop-up menu. Which built-in would you use in the menu item command to obtain the relationship name? ()AGET_RELATION_PROPERTY BSET_RELATION_PROPERTY CGET_BLOCK_PROPERTY DGET_FORM_PROPERTY

单选题You have a computer that runs Windows XP Professional. You need to ensure that the Administrative Tools menu appears on the Start menu. What should you do?()AModify the Display Properties. BModify the Taskbar and Start Menu Properties.CSwitch to Classic View from Control Panel.DChange the desktop theme to Windows Classic.

单选题You need to add a pop-up menu to the CV_EMP canvas to display when a user right-clicks the mouse within the canvas. How could you create the pop-up menu?()AUse the Layout Editor to create a pop-up menu, assign commands to the menu in the Menu Editor, and attack the menu items to the canvas. BUse the Report Wizard to create a pop-up menu and attack the menu items to the canvas.  CAlter the pop-up Menu Property value in the Property Palette of the canvas. DUse the Object Navigator to create a pop-up menu, assign commands to the menu items, and attack the menu to items or canvases.

多选题You want to make use of the object features available in the database for the form module you are developing. Which three statements about object types are true? ()AAn object type is a user-defined composite data type.BThe attributes of an object type can be those of other object types.CA PL/SQL table of records is an example of a nested object type.DAn object type must be declared as a type before the actual object itself can be declared.

单选题The CALC function is used several times within the sales report. To simplify maintenance you want to store the function in one place and call it from within your PL/SQL trigger code. Which node would you use in object navigator to create a report level programme unit to store the function?()AProgramme units. BPL/SQL libraries. CDatabase object. DBuilt in packages.

单选题You are developing an ASP.NET Web application. The application must pass an object that contains user-specific data between multiple pages. The object ismore than 100 KB in size when serialized.You need to minimize the amount of data is sent to the user. What should you do?()APass the object data in a hidden field.BStore the object instance in a session variable.CUse a cookie that contains the object data.DEncode the object data and pass it in a query string parameter.

单选题You need to change the text of a pop-up menu that appears when a user right clicks the mouse in the EMP_DATA data block. Where could you find the node for the pop-up menu in the Object Navigator?()ABuilt-in Packages BMenus CPL/SQL Libraries DObject Libraries EForm Module

单选题You are creating a sales data template and need to add a picture to the margin. What is the best way to add this margin?()AChoose the margin code in the object navigator and select file-import-image. BChoose the margin node in the object navigator and use the tool bar button. CClick the margin button in the layout model and select file-import-image. DClick the margin button in the layout model and use the tool bar button.

单选题You work as an application developer at Contoso.com. You use Microsoft .NET Framework 3.5 and Microsoft ADO.NET to develop an application. The Contoso.com network contains a Microsoft SQL Server 2005 server named DB01. Your application retrieve records from a  database named Trades that resides on DB01. The application connects to Trades by using an instance of the SqlConnection class with the following connection string.   "Data Source=DB01;UID=’mhamm’;PWD=’password’;"   When the application calls the Open method of the SqlConnection object, it displays the following: "Cannot open user default database. Login failed. Login failed for user ’mhamm’".  You need to make sure that you can connect to Trades when the user account for the connection is mhamm.   What should you do? ()A Change the connection string as follows:Data Source=DB01;Initial Catalog=Trades;UID=mhamm; PWD=password;B Create a login for Mia Hamm on DB01.C Create a database user object in Trades and map the object to the SQL Server 2005 Login of Mia Hamm.D Change the connection string as follows:Server=DB01;Database=Trades;UID=mhamm;PWD=password;