2016年微软认证考试试题库及答案

来源:文书网 3.02W

create a Microsoft application by using the Microsoft Framework version 3.5.

2016年微软认证考试试题库及答案

You create a Web form in the application by using the following code fragment. (Line numbers are included for reference only.)

01

07

08

09 runat="server" />

10

11

12 UpdateMode="Conditional" runat="server">

13

14

15

16 Text="Submit" OnClick="Button_Handler" />

17

18

19

You plan to create a client-side script code by using AJAX.

You need to ensure that while a request is being processed, any subsequent Click events on the btnSubmit Button control are suppressed.

Which code fragment should you insert at line 10?

A.

B.

C.

D.

Answer: C

create a Microsoft application by using the Microsoft Framework version 3.5.

You write the following code segment to create a JavaScript file named .

function divide(a, b) {

if (b == 0) {

var errorMsg = deByZero;

alert(errorMsg); return null;

}

return a/b;

}

You embed the file as a resource in a Class Library project.

The namespace for this project is urces.

The JavaScript function retrieves messages from a resource file named by using the JavaScript Messages object.

You add an AJAX Web form in the application. You reference the Class Library in the application.

You add an AJAX ScriptReference element to the AJAX Web form.

You need to ensure that the JavaScript function can access the error messages that are defined in the resource file.

Which code segment should you add in the file?

A.

[assembly: ScriptResource ("CalculatorScript", "MessageResources", "Messages")]

B.

[assembly: ScriptResource ("", "", "Messages")]

C.

[assembly: ScriptResource ("", "ageResources", "Messages")]

D.

[assembly: ScriptResource ("ulatorScript", "", "Messages")]

Answer: C

create a Microsoft application by using the Microsoft Framework version 3.5.

You create an AJAX-enabled Web form by using the following code fragment.

...

When the updFirstPanel UpdatePanel control is updated, a dynamic client script is registered.

You write the following code segment in the code-behind file of the Web form. (Line numbers are included for reference only.)

01 protected void Page_Load(object sender, EventArgs e)

02 {

03 if(IsPostBack)

04 {

05 string generatedScript = rateScript();

06

07 }

08 }

You need to ensure that the client-script code is registered only when an asynchronous postback is issued on the updFirstPanel UpdatePanel control.

Which code segment should you insert at line 06?

A.

sterClientScriptBlock(typeof(TextBox), "txtInfo_Script", generatedScript);

B.

sterClientScriptBlock(this, typeof(Page), "txtInfo_Script", generatedScript, false);

C.

sterClientScriptBlock(typeof(Page), "txtInfo_Script", generatedScript);

D.

sterClientScriptBlock(txtInfo, typeof(TextBox), "txtInfo_Script", generatedScript, false);

Answer: D

create a Microsoft application by using the Microsoft Framework version 3.5.

The application contains the following code segment.

public class CapabilityEvaluator {

public static bool ChkScreenSize( leCapabilities cap, String arg) {

int screenSize = enCharactersWidth * enCharactersHeight;

return screenSize < e(arg);

}

}

You add the following device filter element to the ig file.

You need to write a code segment to verify whether the size of the device display is less than 80 characters.

Which code segment should you use?

A.

MobileCapabilities currentMobile; currentMobile = ser as MobileCapabilities;

if(apability("FltrScreenSize","80")) {

}

B.

MobileCapabilities currentMobile; currentMobile = ser as MobileCapabilities;

if(apability( "FltrScreenSize","")ring()=="80") {

}

C.

MobileCapabilities currentMobile; currentMobile = ser as MobileCapabilities;

if (apability( "creenSize", "80")) {

}

D.

MobileCapabilities currentMobile; currentMobile = ser as MobileCapabilities;

if (apability( "creenSize", "")ring()=="80") {

}

Answer: A

create a Microsoft application by using the Microsoft Framework version 3.5. The application has a mobile Web form that contains the following ObjectList control.

You create an event handler named ObjectListCtrl_ItemCommand.

You need to ensure that the ObjectListCtrl_ItemCommand handler detects the selection of the CmdDisplayDetails item.

Which code segment should you write?

A.

public void ObjectListCtrl_ItemCommand( object sender, ObjectListCommandEventArgs e) {

if (andName == "CmdDisplayDetails") {

} }

B.

public void ObjectListCtrl_ItemCommand( object sender, ObjectListCommandEventArgs e) {

if (ring() == "CmdDisplayDetails") {

} }

C.

public void ObjectListCtrl_ItemCommand( object sender, ObjectListCommandEventArgs e) {

ObjectListCommand cmd = sender as ObjectListCommand;

if ( == "CmdDisplayDetails") {

} }

D.

public void ObjectListCtrl_ItemCommand( object sender, ObjectListCommandEventArgs e) {

ObjectListCommand cmd = andSource as ObjectListCommand;

if ( == "CmdDisplayDetails") {

} }

Answer: A

热门标签