微软认证考试 70-562考试复习题



《微软认证考试 70-562考试复习题》由会员分享,可在线阅读,更多相关《微软认证考试 70-562考试复习题(63页珍藏版)》请在装配图网上搜索。
1、Microsoft_CertifyMe_70-562_v2010-08-02_95q_by-Anika Number: 70-562 Passing Score: 700 Time Limit: 120 min File Version: 2010-08-02 Exam 70-562 QUESTION 1 You create a Microsoft ASP.NET application by using the Microsoft .NET Framework version 3.5. You create a Web page that conta
2、ins the following two XML fragments. (Line numbers are included for reference only.)
01
04 3、t="server"
11 Text='<%# Eval("LineTotal") %>' />
12
10
13
4、greater than seven characters, the column is displayed in red color. What should you do? A. Insert the following code segment at line 06. OnItemDataBound="FmtClr" Insert the following code segment at line 02. protected void FmtClr (object sender, ListViewItemEventArgs e) { Label LineTotal =
5、(Label) e.Item.FindControl("LineTotalLabel"); if ( LineTotal.Text.Length > 7) { LineTotal.ForeColor = Color.Red; } else { LineTotal.ForeColor = Color.Black; } } B. Insert the following code segment at line 06. OnItemDataBound="FmtClr" Insert the following code segment at line 02.
6、protected void FmtClr (object sender, ListViewItemEventArgs e) { Label LineTotal = (Label) e.Item.FindControl("LineTotal"); if ( LineTotal.Text.Length > 7) {LineTotal.ForeColor = Color.Red; } else {LineTotal.ForeColor = Color.Black; } } C. Insert the following code segment at line 06.
7、 OnDataBinding="FmtClr" Insert the following code segment at line 02. protected void FmtClr(object sender, EventArgs e) { Label LineTotal = new Label(); LineTotal.ID = "LineTotal"; if ( LineTotal.Text.Length > 7) {LineTotal.ForeColor = Color.Red; } else { LineTotal.ForeColor = Color.Blac
8、k; } } D. Insert the following code segment at line 06. OnDataBound="FmtClr" Insert the following code segment at line 02. protected void FmtClr(object sender, EventArgs e) { Label LineTotal = new Label(); LineTotal.ID = "LineTotalLabel"; if ( LineTotal.Text.Length > 7) {LineTotal.ForeC
9、olor = Color.Red; } else {LineTotal.ForeColor = Color.Black; } } Answer: A Section: (none) Explanation/Reference: QUESTION 2 You create a Microsoft ASP.NET application by using the Microsoft .NET Framework version 3.5. You create a Web form and add the following code fragment.
10、
11、he Quantity column values from a table named Products. You write the following code segment to create the rptData_ItemDataBound event handler. (Line numbers are included for reference only.) 01 protected void rptData_ItemDataBound(object sender, 02 RepeaterItemEventArgs e) 03 { 04 05 if(
12、lbl != null) 06 if(int.Parse(lbl.Text) < 10) 07 lbl.ForeColor = Color.Red; 08 } You need to retrieve a reference to the lblQuantity Label control into a variable named lbl. Which code segment should you insert at line 04? A. Label lbl = Page.FindControl("lblQuantity") as Label; B. Lab
13、el lbl = e.Item.FindControl("lblQuantity") as Label; C. Label lbl = rptData.FindControl("lblQuantity") as Label; D. Label lbl = e.Item.Parent.FindControl("lblQuantity") as Label; Answer: B Section: (none) Explanation/Reference: QUESTION 3 You create a Microsoft ASP.NET application
14、 by using the Microsoft .NET Framework version 3.5. Your application has a user control named UserCtrl.ascx. You write the following code fragment to create a Web page named Default.aspx. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> ...
15、
You need to dynamically add the UserCtrl.ascx control between the lblHeader and lblFooter Label co16、ntrols. What should you do? A. Write the following code segment in the Init event of the Default.aspx Web page. Control ctrl = LoadControl("UserCtrl.ascx"); this.Controls.AddAt(1, ctrl); B. Write the following code segment in the Init event of the Default.aspx Web page. Control ctrl = LoadC
17、ontrol("UserCtrl.ascx"); lblHeader.Controls.Add(ctrl); C. Add a Literal control named Ltrl between the lblHeader and lblFooter label controls. Write the following code segment in the Init event of the Default.aspx Web page. Control ctrl = LoadControl("UserCtrl.ascx"); D. Add a PlaceHolder cont
18、rol named PlHldr between the lblHeader and lblFooter label controls. Write the following code segment in the Init event of the Default.aspx Web page. Control ctrl = LoadControl("UserCtrl.ascx"); PlHldr.Controls.Add(ctrl); Answer: D Section: (none) Explanation/Reference: QUESTION 4 Y
19、ou create a Microsoft ASP.NET application by using the Microsoft .NET Framework version 3.5.
You create two user controls named UserCtrlA.ascx and UserCtrlB.ascx. The user controls postback to the server.
You create a new Web page that has the following ASPX code.
21、 Control c; if ((bool)ViewState["CtrlA"] == true) { c = LoadControl("UserCtrlA.ascx"); } else { c = LoadControl("UserCtrlB.ascx"); } c.ID = "Ctrl"; PlHolder.Controls.Add(c); } } protected void Chk_CheckedChanged(object sender, EventArgs e) { Vi
22、ewState["CtrlA"] = Chk.Checked; PlHolder.Controls.Clear(); LoadControls(); } You need to ensure that the user control that is displayed meets the following requirements: It is recreated during postback It retains its state. Which method should you add to the Web page? A. protected override
23、 object SaveViewState() { LoadControls(); return base.SaveViewState(); } B. protected override void Render(HtmlTextWriter writer) { LoadControls(); base.Render(writer); } C. protected override void OnLoadComplete(EventArgs e) { base.OnLoadComplete(e); LoadControls(); } D. protected override
24、 void LoadViewState(object savedState) { base.LoadViewState(savedState); LoadControls(); } Answer: D Section: (none) Explanation/Reference: QUESTION 5 You create a Microsoft ASP.NET application by using the Microsoft .NET Framework version 3.5. You create the following controls: A
25、composite custom control named MyControl. A templated custom control named OrderFormData. You write the following code segment to override the method named CreateChildControls() in the MyControl class. (Line numbers are included for reference only.) 01 protected override void 02 CreateChildCon
26、trols() { 03 Controls.Clear(); 04 OrderFormData oFData = new 05 OrderFormData("OrderForm"); 06 07 } You need to add the OrderFormData control to the MyControl control. Which code segment should you insert at line 06? A. Template.InstantiateIn(this); this.Controls.Add(oFData); B. T
27、emplate.InstantiateIn(oFData); Controls.Add(oFData); C. this.TemplateControl = (TemplateControl)Template; -Can't Remember All-??? oFData.TemplateControl = (TemplateControl)Template; Controls.Add(oFData); D. this.TemplateControl = (TemplateControl)oFData; -Can't Remember All-??? Controls.Ad
28、d(oFData); Answer: B Section: (none) Explanation/Reference: QUESTION 6 You create a Microsoft ASP.NET application by using the Microsoft .NET Framework version 3.5. You create a composite custom control named MyControl. You need to add an instance of the OrderFormData control to the
29、 MyControl control. Which code segment should you use? A. protected override void CreateChildControls() { Controls.Clear(); OrderFormData oFData = new OrderFormData("OrderForm"); Controls.Add(oFData); } B. protected override void RenderContents(HtmlTextWriter writer) { OrderFormData
30、 oFData = new OrderFormData("OrderForm"); oFData.RenderControl(writer); } C. protected override void EnsureChildControls() { Controls.Clear(); OrderFormData oFData = new OrderFormData("OrderForm"); oFData.EnsureChildControls(); if (!ChildControlsCreated) CreateChildControls(); } D.
31、 protected override ControlCollection CreateControlCollection() { ControlCollection controls = new ControlCollection(this); OrderFormData oFData = new OrderFormData("OrderForm"); controls.Add(oFData); return controls; } Answer: A Section: (none) Explanation/Reference: QUESTIO
32、N 7 You create a Microsoft ASP.NET application by using the Microsoft .NET Framework version 3.5. You create a custom control named OrderForm. You write the following code segment. public delegate void CheckOrderFormEventHandler(EventArgs e); private static readonly object CheckOrderFormKey = ne
33、w object(); public event CheckOrderFormEventHandler CheckOrderForm { add { Events.AddHandler(CheckOrderFormKey, value); } remove { Events.RemoveHandler(CheckOrderFormKey, value); } } You need to provide a method that enables the OrderForm control to raise the CheckOrderForm event. Which c
34、ode segment should you use? A. protected virtual void OnCheckOrderForm(EventArgs e) { CheckOrderFormEventHandler checkOrderForm = (CheckOrderFormEventHandler)Events[ typeof(CheckOrderFormEventHandler)]; if (checkOrderForm != null) checkOrderForm(e); } B. protected virtual void OnCheckOrder
35、Form(EventArgs e) { CheckOrderFormEventHandler checkOrderForm = Events[CheckOrderFormKey] as CheckOrderFormEventHandler; if (checkOrderForm != null) checkOrderForm(e); } C. CheckOrderFormEventHandler checkOrderForm = new CheckOrderFormEventHandler(checkOrderFormCallBack); protected virtual v
36、oid OnCheckOrderForm(EventArgs e) { if (checkOrderForm != null) checkOrderForm(e); } D. CheckOrderFormEventHandler checkOrderForm = new CheckOrderFormEventHandler(checkOrderFormCallBack); protected virtual void OnCheckOrderForm(EventArgs e) { if (checkOrderForm != null) RaiseBubbleEvent(ch
37、eckOrderForm, e); } Answer: B Section: (none) Explanation/Reference: QUESTION 8 You create a Microsoft ASP.NET application by using the Microsoft .NET Framework version 3.5. You add a TextBox control named TextBox1. You write the following code segment for validation. protected
38、 void CustomValidator1_ServerValidate( object source, ServerValidateEventArgs args) { DateTime dt = String.IsNullOrEmpty(args.Value) DateTime.Now : Convert.ToDateTime(args.Value); args.IsValid = (DateTime.Now - dt).Days < 10; } You need to validate the value of TextBox1. Whic
39、h code fragment should you add to the Web page?
A.
41、stomValidator>
44、ue="<%= DateTime.Now; %>" > 45、alidation logic for the control is implemented in the Validate method in the following manner.
protected static bool Validate(string value) { ...
} You need to override the method that validates the value of the related control.
Which override method should you use?
A.
protected override bool 46、 EvaluateIsValid() { string value = GetControlValidationValue( this.Attributes["AssociatedControl"]); bool isValid = Validate(value); return isValid; }
B.
protected override bool ControlPropertiesValid() { string value = GetControlValidationValue(this.ValidationGroup); bool isValid = Validate(valu 47、e); return isValid; }
C.
protected override bool EvaluateIsValid() { string value = GetControlValidationValue(this.ControlToValidate); bool isValid = Validate(value); return isValid; }
D.
protected override bool ControlPropertiesValid() { string value = GetControlValidationValue( this.Attributes 48、["ControlToValidate"]); bool isValid = Validate(value); this.PropertiesValid = isValid; return true; }
Answer: C
Section: (none)
QUESTION 10
You create a Microsoft ASP.NET application by using the Microsoft .NET Framework version 3.5.
You add an XmlDataSource control named XmlDataSource 49、1 to the Web page.
XmlDataSource1 is bound to an XML document with the following structure.
50、 file of the Web page.
protected void BulletedList1_Click( ?object sender, BulletedListEventArgs e) { //...
}
You need to add a BulletedList control named BulletedList1 to the Web page that is bound to XmlDataSource1.
Which code fragment should you use?
A.
52、ember="ID" onclick="BulletedList1_Click"> 54、 Microsoft .NET Framework version 3.5.
You write the following code fragment.
56、i); }
}
B.
foreach (ListItem li in ListBox1.Items) { if (li.Selected) { li.Selected = false; ListBox2.Items.Add(li); ListBox1.Items.Remove(li); }
}
C.
foreach (ListItem li in ListBox1.Items) { if (li.Selected) { li.Selected = false; ListBox2.Items.Add(li); }
}
D.
foreach (ListItem li in Lis 57、tBox2.Items) { if (ListBox1.Items.Contains(li)) ListBox1.Items.Remove(li); }
E.
foreach (ListItem li in ListBox1.Items) { if (li.Selected) { ListBox1.Items.Remove(li); }
}
F.
foreach (ListItem li in ListBox1.Items) { if (ListBox2.Items.Contains(li)) ListBox1.Items.Remove(li); }
Answer: CD
S 58、ection: (none)
Explanation/Reference:
QUESTION 12
You create a Microsoft ASP.NET application by using the Microsoft .NET Framework version 3.5.
You write the following code fragment.
60、t the View controls by using the DropDownList1 DropDownList control.
Which code segment should you use?
A.
int idx = DropDownList1.SelectedIndex; MultiView1.ActiveViewIndex = idx;
B.
int idx = DropDownList1.SelectedIndex; MultiView1.Views[idx].Visible = true;
C.
int idx = int.Parse(DropDown 61、List1.SelectedValue); MultiView1.ActiveViewIndex = idx;
D.
int idx = int.Parse(DropDownList1.SelectedValue); MultiView1.Views[idx].Visible = true;
Answer: A
Section: (none)
Explanation/Reference:
ActiveViewIndex is Zero base Index.
QUESTION 13
You create a Microsoft ASP.NET applicati 62、on by using the Microsoft .NET Framework version 3.5.
To add a Calendar server control to a Web page, you write the following code fragment.
63、hould you do?
A.
Add the following code segment to the Calendar1 DayRender event handler.
if (e.Day.IsWeekend) {
Day.IsSelectable = false;
}
B.
Add the following code segment to the Calendar1 DayRender event handler.
if (e.Day.IsWeekend) {
if (Calendar1.SelectedDates.Contains(e.Day.Dat 64、e))
Calendar1.SelectedDates.Remove(e.Day.Date);
}
C.
Add the following code segment to the Calendar1 SelectionChanged event handler.
List 65、Week == DayOfWeek.Sunday) {
list.Add(st);
}
}
foreach (DateTime dt in list) {
(sender as Calendar).SelectedDates.Remove(dt);
}
D.
Add the following code segment to the Calendar1 DataBinding event handler.
List 66、ender as Calendar).SelectedDates) {
if (st.DayOfWeek == DayOfWeek.Saturday || st.DayOfWeek == DayOfWeek.Sunday) {
list.Add(st);
}
}
foreach (DateTime dt in list) {
(sender as Calendar).SelectedDates.Remove(dt);
}
Answer: A
Section: (none)
Explanation/Reference:
QUESTION 14
You create a Microsoft ASP.NET application by using the Microsoft .NET Framework version 3.5.
You define the following class.
public class Product {
public decimal Price { get; set;
- 温馨提示:
1: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
2: 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
3.本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 装配图网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 专题党课讲稿:以高质量党建保障国有企业高质量发展
- 廉政党课讲稿材料:坚决打好反腐败斗争攻坚战持久战总体战涵养风清气正的政治生态
- 在新录用选调生公务员座谈会上和基层单位调研座谈会上的发言材料
- 总工会关于2025年维护劳动领域政治安全的工作汇报材料
- 基层党建工作交流研讨会上的讲话发言材料
- 粮食和物资储备学习教育工作部署会上的讲话发言材料
- 市工业园区、市直机关单位、市纪委监委2025年工作计划
- 检察院政治部关于2025年工作计划
- 办公室主任2025年现实表现材料
- 2025年~村农村保洁员规范管理工作方案
- 在深入贯彻中央8项规定精神学习教育工作部署会议上的讲话发言材料4篇
- 开展深入贯彻规定精神学习教育动员部署会上的讲话发言材料3篇
- 在司法党组中心学习组学习会上的发言材料
- 国企党委关于推动基层党建与生产经营深度融合工作情况的报告材料
- 副书记在2025年工作务虚会上的发言材料2篇