Built-in Packages
Menus
PL/SQL Libraries
Object Libraries
Form Module
第1题:
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?()
第2题:
Which object is added to a form module when you copy the reusable calender class?()
第3题:
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? ()
第4题:
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? ()
第5题:
What are three uses for record groups?()
第6题:
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? ()
第7题:
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?()
第8题:
Click 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.
Choose Tools -> Data Block Wizard, select Table as the data source type, and base the data block on the columns included in the procedure.
Select 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.
Select 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.
Launch the Data Block Wizard, select Stored Procedures as the data source type, and base the block on the procedure.
第9题:
Modify the Display Properties.
Modify the Taskbar and Start Menu Properties.
Switch to Classic View from Control Panel.
Change the desktop theme to Windows Classic.
第10题:
An object type is a user-defined composite data type.
The attributes of an object type can be those of other object types.
A PL/SQL table of records is an example of a nested object type.
An object type must be declared as a type before the actual object itself can be declared.
第11题:
Pass the object data in a hidden field.
Store the object instance in a session variable.
Use a cookie that contains the object data.
Encode the object data and pass it in a query string parameter.
第12题:
Choose the margin code in the object navigator and select file->import->image.
Choose the margin node in the object navigator and use the tool bar button.
Click the margin button in the layout model and select file->import->image.
Click the margin button in the layout model and use the tool bar button.
第13题:
Which three objects are components of a menu module?()
第14题:
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? ()
第15题:
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?()
第16题:
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?()
第17题:
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?()
第18题:
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?()
第19题:
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?()
第20题:
GET_RELATION_PROPERTY
SET_RELATION_PROPERTY
GET_BLOCK_PROPERTY
GET_FORM_PROPERTY
第21题:
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.
Use the Report Wizard to create a pop-up menu and attack the menu items to the canvas.
Alter the pop-up Menu Property value in the Property Palette of the canvas.
Use the Object Navigator to create a pop-up menu, assign commands to the menu items, and attack the menu to items or canvases.
第22题:
Programme units.
PL/SQL libraries.
Database object.
Built in packages.
第23题:
Built-in Packages
Menus
PL/SQL Libraries
Object Libraries
Form Module
第24题:
Change the connection string as follows:Data Source=DB01;Initial Catalog=Trades;UID=mhamm; PWD=password;
Create a login for Mia Hamm on DB01.
Create a database user object in Trades and map the object to the SQL Server 2005 Login of Mia Hamm.
Change the connection string as follows:Server=DB01;Database=Trades;UID=mhamm;PWD=password;