The latest Microsoft 70-536 from exam4actual

Product Description

Exam Number/Code: 70-536
Exam Name: TS:MS.NET Framework 2.0-Application Develop Foundation
"MCTS MCPD ", also known as 70-536 exam, is a Microsoft certification.
Preparing for the 70-536 exam? Searching 70-536 Test Questions, 70-536 Practice Exam, 70-536 Dumps?
With the complete collection of questions and answers, Exam4actual has assembled to take you through 168 Q&A to your 70-536 Exam preparation. In the70-536 exam resources, you will cover every field and category in MCTS MCPD helping to ready you for your successful Microsoft Certification.

Free 70-536 Demo Download

Exam4actual offers free demo for MCTS MCPD 70-536 exam (TS:MS.NET Framework 2.0-Application Develop Foundation). You can check out the interface, question quality and usability of our practice exams before you decide to buy it. We are the only one site can offer demo for almost all products.

1.
You are writing a custom dictionary. The customdictionary
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 speciallyformatted
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 customcollection
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 trueorfalse
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

exam4actual will help you to pass any it exams.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值