功能测试
首页 > 微软认证 > 正文

最新的70-528题库下载!(killtest题库网提供)

发布-admin | 查看- | 发表时间-2010-8-11

MCPD认证是Microsoft Certified Professional Developer的简称,翻译过来就是微软认证专业开发人员,在整个微软认证体系中属于中级证书,获得MCPD证书主要是按照易证宝学习方案的考试顺序来进行。根据IT认证考试资源网的介绍MCPD认证目前主要的技术平台分为.NET 2.0和.NET 3.5,至于选择什么样的开发平台也是值得深思的问题。MCPD侧重于特定的工作角色包括设计、项目管理、运营管理以及规划等,需重新认证以保持有效。

MCPD WEB开发(2005)认证需要通过的以下三门考试:70-536,70-528,70-547。
报考MCPD不限制考生的文凭,任何人都可以报考,只要你有基本的计算机应用能力,微软公司建议考生具有相应的软件使用和技术应用的经验,和开发并维护部门级应用程序、组件、Web或桌面系统客户端及后端数据服务领域一年以上实践经验。每门考试费用为50美金,考生可随时报名随时考试。
部分70-536题库分享如下:
1.You are writing a custom dictionary. The custom-dictionary class is named MyDictionary. You need to ensure that the dictionary is type safe. Which code segment should you use?
A. class MyDictionary : Dictionary<string, string>
B. class MyDictionary : HashTable
C. class MyDictionary : IDictionary
D. class MyDictionary { ... }
Dictionary<string, string> t = new Dictionary<string, string>();
MyDictionary dictionary = (MyDictionary)t;
Answer: A

2.You are creating a class named Age. You need to ensure that the Age class is written such that collections of Age objects can be sorted. Which code segment should you use?
A. public class Age { public int Value;
public object CompareTo(object obj)
{ if (obj is Age)
{ Age _age = (Age) obj;
return Value.CompareTo(obj); }
throw new ArgumentException("object not an Age"); } }
B. public class Age {
public int Value;
public object CompareTo(int iValue) {
try {
return Value.CompareTo(iValue); }
catch {
throw new ArgumentException ("object not an Age"); } } }
C. public class Age : IComparable {
public int Value;
public int CompareTo(object obj)
{ if (obj is Age) {
Age _age = (Age) obj;
return Value.CompareTo(_age.Value); }
throw new ArgumentException("object not an Age"); } }
D. public class Age : IComparable {
public int Value;
public int CompareTo(object obj) {
try {
return Value.CompareTo(((Age) obj).Value); }
catch {
return -1; } } }
Answer: C

3.You are creating a class to compare a specially-formatted string. The default collation comparisons do not apply. You need to implement the IComparable<string> interface. Which code segment should you use?
A. public class Person : IComparable<string>{ public int CompareTo(string other){ ... }}
B. public class Person : IComparable<string>{ public int CompareTo(object other){ ... }}
C. public class Person : IComparable<string>{ public bool CompareTo(string other){ ... }}
D. public class Person : IComparable<string>{ public bool CompareTo(object other){ ... }}
Answer: A

4.You are developing a custom-collection class. You need to create a method in your class. You need to ensure that the method you create in your class returns a type that is compatible with the Foreach statement. Which criterion should the method meet?
A. The method must return a type of either IEnumerator or IEnumerable.
B. The method must return a type of IComparable.
C. The method must explicitly contain a collection.
D. The method must be the only iterator in the class.
Answer: A

5.You are developing an application to assist the user in conducting electronic surveys. The survey consists of 25 true-or-false questions. You need to perform the following tasks: Initialize each answer to true.Minimize the amount of memory used by each survey. Which storage option should you choose?
A. BitVector32 answers = new BitVector32(1);
B. BitVector32 answers = new BitVector32(-1);
C. BitArray answers = new BitArray (1);
D. BitArray answers = new BitArray(-1);
Answer: B

6.You need to identify a type that meets the following criteriA. ?
Is always a number.?
Is not greater than 65,535.
Which type should you choose?
A. System.UInt16
B. int
C. System.String
D. System.IntPtr
Answer: A
你可以登录killtest题库网下载更多的题库!
 

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

最新文章
最近评论
Copyright 2010 killtest.com.cn Some Rights Reserved. 浙ICP备10016241号 | DESIGN BY Seanloo.cn