<dfn id="w48us"></dfn><ul id="w48us"></ul>
  • <ul id="w48us"></ul>
  • <del id="w48us"></del>
    <ul id="w48us"></ul>
  • 微軟認證考試試題庫及答案

    時間:2024-08-25 19:08:00 微軟認證 我要投稿
    • 相關推薦

    2016年微軟認證考試試題庫及答案

      1.You create a Microsoft ASP.NET application by using the Microsoft .NET 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 ASP.NET 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

      2.You create a Microsoft ASP.NET application by using the Microsoft .NET Framework version 3.5.

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

      function divide(a, b) {

      if (b == 0) {

      var errorMsg = Messages.DivideByZero;

      alert(errorMsg); return null;

      }

      return a/b;

      }

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

      The namespace for this project is Calculator.Resources.

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

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

      You add an ASP.NET 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 AssemblyInfo.cs file?

      A.

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

      B.

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

      C.

      [assembly: ScriptResource ("Calculator.Resources.CalculatorScript.js", "Calculator.Resources.MessageResources", "Messages")]

      D.

      [assembly: ScriptResource ("Calculator.Resources.CalculatorScript", "Calculator.Resources.MessageResources.resx", "Messages")]

      Answer: C

      3.You create a Microsoft ASP.NET application by using the Microsoft .NET 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 = ScriptGenerator.GenerateScript();

      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.

      ClientScript.RegisterClientScriptBlock(typeof(TextBox), "txtInfo_Script", generatedScript);

      B.

      ScriptManager.RegisterClientScriptBlock(this, typeof(Page), "txtInfo_Script", generatedScript, false);

      C.

      ClientScript.RegisterClientScriptBlock(typeof(Page), "txtInfo_Script", generatedScript);

      D.

      ScriptManager.RegisterClientScriptBlock(txtInfo, typeof(TextBox), "txtInfo_Script", generatedScript, false);

      Answer: D

      4.You create a Microsoft ASP.NET application by using the Microsoft .NET Framework version 3.5.

      The application contains the following code segment.

      public class CapabilityEvaluator {

      public static bool ChkScreenSize( System.Web.Mobile.MobileCapabilities cap, String arg) {

      int screenSize = cap.ScreenCharactersWidth * cap.ScreenCharactersHeight;

      return screenSize < int.Parse(arg);

      }

      }

      You add the following device filter element to the Web.config 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 = Request.Browser as MobileCapabilities;

      if(currentMobile.HasCapability("FltrScreenSize","80")) {

      }

      B.

      MobileCapabilities currentMobile; currentMobile = Request.Browser as MobileCapabilities;

      if(currentMobile.HasCapability( "FltrScreenSize","").ToString()=="80") {

      }

      C.

      MobileCapabilities currentMobile; currentMobile = Request.Browser as MobileCapabilities;

      if (currentMobile.HasCapability( "CapabilityEvaluator.ChkScreenSize", "80")) {

      }

      D.

      MobileCapabilities currentMobile; currentMobile = Request.Browser as MobileCapabilities;

      if (currentMobile.HasCapability( "CapabilityEvaluator.ChkScreenSize", "").ToString()=="80") {

      }

      Answer: A

      5.You create a Microsoft ASP.NET application by using the Microsoft .NET 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 (e.CommandName == "CmdDisplayDetails") {

      } }

      B.

      public void ObjectListCtrl_ItemCommand( object sender, ObjectListCommandEventArgs e) {

      if (e.CommandArgument.ToString() == "CmdDisplayDetails") {

      } }

      C.

      public void ObjectListCtrl_ItemCommand( object sender, ObjectListCommandEventArgs e) {

      ObjectListCommand cmd = sender as ObjectListCommand;

      if (cmd.Name == "CmdDisplayDetails") {

      } }

      D.

      public void ObjectListCtrl_ItemCommand( object sender, ObjectListCommandEventArgs e) {

      ObjectListCommand cmd = e.CommandSource as ObjectListCommand;

      if (cmd.Name == "CmdDisplayDetails") {

      } }

      Answer: A

    【微軟認證考試試題庫及答案】相關文章:

    2017微軟認證考試flash習題及答案10-23

    微軟認證考試試題及答案「經典版」08-21

    微軟認證經典習題及答案10-25

    微軟認證考試最新認證07-11

    2017微軟認證考試aspnet模擬練習及答案08-11

    2017微軟認證考試復習題及答案09-19

    2016年微軟認證考試試題及答案09-23

    2017年微軟認證考試試題及答案10-17

    微軟認證考試的流程10-06

    微軟認證考試技巧10-22

    主站蜘蛛池模板: 国产精品青草久久久久婷婷| 国产精品一区12p| 91人妻人人澡人人爽人人精品| 亚洲精品无码久久久久AV麻豆| 国产亚洲精品a在线观看app| 亚洲精品无码专区2| 国产精品无码v在线观看| 国产精品v欧美精品v日韩精品| 亚洲一区精品无码| 国产亚洲精品无码拍拍拍色欲| 久久97精品久久久久久久不卡| 久久久久国产精品熟女影院 | 亚洲国模精品一区| 国产精品美女久久久久AV福利| 999精品在线| 精品无码人妻一区二区三区| 一本一本久久A久久综合精品 | 国99精品无码一区二区三区| 中文字幕日韩精品在线| 久久久久亚洲精品无码网址| 99热都是精品久久久久久| 国产精品麻豆高清在线观看| 精品久久久久久无码中文字幕一区| 在线亚洲欧美中文精品| 久久久久一级精品亚洲国产成人综合AV区 | 欧美精品一区二区三区免费观看 | 99精品视频在线| 精品无码人妻夜人多侵犯18| 亚洲av午夜福利精品一区 | 国产精品1024在线永久免费| 欧美777精品久久久久网| 国产精品日本欧美一区二区| 99久久久精品免费观看国产| 国产伦精品一区二区三区| 久久久久久国产精品免费无码| 婷婷国产成人精品视频 | 老年人精品视频在线| 久久久久无码精品| 无码8090精品久久一区| 欧美 日韩 精品 另类视频| 欧美日韩精品一区二区视频|