為大家收集整理了《2013微軟認(rèn)證考試練習(xí)題及答案(22)》供大家參考,希望對(duì)大家有所幫助!!!
QUESTION 26
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
QUESTION 27
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
QUESTION 28
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
QUESTION 29
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
QUESTION 30
You create a Microsoft ASP.NET application by using the Microsoft .NET Framework version 3.5.
All the content pages in the application use a single master page. The master page uses a static navigation menu to browse the site.
You need to ensure that the content pages can optionally replace the static navigation menu with their own menu controls.
What should you do?
A.Add the following code fragment to the master page
QUESTION 26
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
QUESTION 27
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
QUESTION 28
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
QUESTION 29
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
QUESTION 30
You create a Microsoft ASP.NET application by using the Microsoft .NET Framework version 3.5.
All the content pages in the application use a single master page. The master page uses a static navigation menu to browse the site.
You need to ensure that the content pages can optionally replace the static navigation menu with their own menu controls.
What should you do?
A.Add the following code fragment to the master page
- 購(gòu)五金合同(優(yōu)秀18篇)
- 保健品工作心得體會(huì)(匯總23篇)
- 募捐衣服倡議書(shū)(通用17篇)
- 化裝舞會(huì)教案(模板21篇)
- s店銷(xiāo)售主管年終總結(jié)參考(專業(yè)17篇)
- 體育教學(xué)論體育教學(xué)計(jì)劃(精選20篇)
- 古詩(shī)黃鶴樓送孟浩然之廣陵說(shuō)課稿范文(14篇)
- 中學(xué)生日記體(優(yōu)秀13篇)
- 個(gè)人法人委托書(shū)范文(21篇)
- 初中語(yǔ)文送杜少府之任蜀州教案(優(yōu)秀19篇)
- 新職工座談會(huì)發(fā)言稿(優(yōu)質(zhì)13篇)
- 計(jì)算機(jī)上機(jī)暑期實(shí)踐總結(jié)計(jì)算機(jī)暑假大全(17篇)
- 銀行信貸人員年度總結(jié)(通用15篇)
- 八年級(jí)語(yǔ)文藤野先生教案(模板15篇)
- 校園欺凌學(xué)生演講稿(實(shí)用19篇)
- 幼兒園教育學(xué)期工作總結(jié)(模板21篇)
- 放飛中國(guó)夢(mèng)活動(dòng)方案(通用16篇)
- 學(xué)生主席競(jìng)聘演講稿(模板17篇)
- 軍訓(xùn)閉幕式上的講話稿(實(shí)用12篇)
- 開(kāi)展年終工作總結(jié)的通知大全(17篇)
- 訂婚喜帖祝福語(yǔ)(10篇)
- 三年級(jí)小學(xué)生日記300字左右(10篇)
- 我的家鄉(xiāng)400字作文四年級(jí)下冊(cè)(精選10篇)
- 中國(guó)證券業(yè)協(xié)會(huì):2024年6月證券從業(yè)資格考試成績(jī)查詢?nèi)肟谝验_(kāi)通
- 北京2024年6月證券從業(yè)資格考試成績(jī)查詢?nèi)肟谝验_(kāi)通
- 給爸爸的父親節(jié)微信祝福句子(精選10篇)
- 天津2024年6月證券從業(yè)資格考試成績(jī)查詢?nèi)肟谝验_(kāi)通
- 2024年四川巴中巴州區(qū)赴高校公開(kāi)考試(考核)招聘高中教師25名(6月13日起報(bào)名)
- 工作自我鑒定簡(jiǎn)短(10篇)
- 畢業(yè)快樂(lè)的祝福語(yǔ)(10篇)
- 煤礦安全生產(chǎn)心得體會(huì)(通用10篇)
- 轉(zhuǎn)正自我評(píng)價(jià)怎么寫(xiě)
- 溫馨端午節(jié)問(wèn)候句子大全10篇
- 有關(guān)放風(fēng)箏的英語(yǔ)日記(10篇)
- 2024年中共西寧市委黨校面向社會(huì)公開(kāi)考核招聘教師公告(青海)
- 2024年四川廣元中考時(shí)間:6月13日-15日(總分920分)
- 安全警示教育心得體會(huì)(精選10篇)
- 2024年湖南衡陽(yáng)衡東縣公開(kāi)招聘教師(專業(yè)人員)61人(6月16日至19日?qǐng)?bào)名)
- 寶寶睡前聽(tīng)的故事(精選10篇)
- 2024年湖南高考錄取時(shí)間及錄取結(jié)果查詢?nèi)肟冢?月8日起)

