Design
Source
Properties
Controls
第1题:
A.Design
B.Source
C.Properties
D.Controls
第2题:
第3题:
You work as an application developer at Certkiller .com. You are developing an application that makes use of a Queue class object named MyQueue. This Queue class object will be used to store messages sent by the user during application run time.You would like to access the message at the beginning of the queue, prior to processing the user messages, without removing it. What should you do?()
第4题:
Where should a Developer go to freely manipulate inline style coding for an object?()
第5题:
Which three will compile and run without exception?()
第6题:
Flash动画的背景颜色(BackgroundColor)可以在软件的()对话框中设置。
第7题:
You work as a Web Developer at Certkiller.com. You are in the process of creating a Webapplication using Microsoft ASP.NET 3.5. A third-party assembly contains custom server controls. This assembly does not contain a strongname and it’s not part of the application’s Microsoft Visual Studio 2008 solution. You have to makesure that the other users are able to use the custom controls. You decide to configure theapplications project. What should you do?()
第8题:
protected void Page_Load(object sender, EventArgs e) { Control userControl=Page.LoadControl(TestUserControl.ascx); Page.Form.Controls.Add(userControl); }
protected void Page_Load(object sender, EventArgs e) { Control userControl = Page.FindControl(TestUserControl.ascx); Page.Form.Controls.Load(userControl); }
protected void Page_PreInit(object sender, EventArgs e) { Control userControl =Page.LoadControl(TestUserControl.ascx);Page.Form.Controls.Add(userControl); }
protected void Page_PreInit(object sender, EventArgs e) { Control userControl = Page.FindControl(TestUserControl.ascx); Page.Form.Controls.Load(userControl); }
第9题:
Device Manager
System Properties
Membership Manager
Network and Dial Up Connections
第10题:
Create a bound connection by using the sp_getbindtoken and the sp_bindsession stored procedures.
Create an exception handler for the connection-busy exception that is thrown on using a single SqlConnection object.
Run the two SqlDataReader objects by using a single SqlCommand object.
Enable Multiple Active Result Sets (MARS) in the connection string of the application.
第11题:
Use the Enqueue method of the MyQueue object.
Use the Clear method of the MyQueue object.
Use the Dequeue method of the MyQueue object.
Use the TrimToSize method of the MyQueue object.
第12题:
Use the Enqueue method of the MyQueue object.
Use the Contains method of the MyQueue object.
Use the Dequeue method of the MyQueue object.
Use the Peek method of the MyQueue object.
第13题:
Each program module is compiled separately and the resulting ______ files are linked to make an executable application.
A.assembler
B.source
C.library
D.object
第14题:
Which of the following are properties that can be set for Custom Controls?()
第15题:
In Windows 2000, where should you go to join a workgroup or domain?()
第16题:
When open for an XPage, Standard views in the Domino Designer include all of the following EXCEPT?()
第17题:
You want to provide a tool that allows users quick access to form modules, by listing them in an Explorer-style interface. Which reusable component do you use?()
第18题:
You create a Web page named TestPage.aspx and a user control named contained in a file named TestUserControl.ascx.You need to dynamically add TestUserControl.ascx to TestPage.aspx. Which code segment should you use?()
第19题:
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 database on the Microsoft SQL Server 2005 database has two tables that are displayed by using two SqlConnection objects in two different GridView controls. You want the tables to be displayed at the same time with the use a single SqlConnection object. What should you do?()
第20题:
ActiveX controls
Calendar Class
Standard Object Library
Picklist Class
Wizard Class
Navigator Class
第21题:
private synchronized Object o;
void go() {synchronized() { /* code here */ }
public synchronized void go() { /* code here */ }
private synchronized(this) void go() { /* code here */ }
void go() {synchronized(Object.class) { /* code here */ }
void go() {Object o = new Object();synchronized(o) { /* code here */ }
第22题:
Design
Source
Properties
Controls
第23题:
Do not attach the cord to anything but throw it overboard with the raft container
Attach the cord to a fixed object on the ship
You should stand on the cord
Attach the cord to the special pad eye on the raft davit launcher
第24题:
You should add a project reference to the project.
You should add a Web reference to the project.
You should add a service reference to the project.
You should add an assembly reference to the project.