70-536ChineseC++ Exam
TS:MS.NET Framework 2.0-Application Develop Foundation
- Exam Number/Code : 70-536ChineseC++
- Exam Name : TS:MS.NET Framework 2.0-Application Develop Foundation
- Questions and Answers : 64 Q&As
- Update Time: 2011-02-02
- Price:
$ 119.00$ 69.00
Free 70-536ChineseC++ Demo Download
TestInside offers free demo for TS 70-536ChineseC++ 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.
Microsoft TS 70-536ChineseC++ exam braindumps questions and answers
¡¡
Exam : Microsoft 70-536ChineseC++
Title : TS:MS.NET Framework 2.0-Application Develop Foundation
1. ÄúÕýÔÚ¿ª·¢Ò»¸öÐÖúÓû§½øÐеç×Óµ÷²éµÄÓ¦ÓóÌÐò¡£µ÷²éÓÉ 25 ¸ö¶Ô´íÅжÏÌâ×é³É¡£
ÄúÐèÒªÖ´ÐÐÏÂÁÐÈÎÎñ£º
¡¤½«Ã¿¸ö´ð°¸Ô¤ÖÃΪÊÇ¡£
¡¤×î´ó³Ì¶ÈµØ¼õÉÙÿ´Îµ÷²éʹÓõÄÄÚ´æÁ¿¡£
ÄúÓ¦¸ÃÑ¡ÔñÄĸö´æ´¢Ñ¡Ï
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
2. ÄúÐèÒª±àдһ¸ö½ÓÊÜ DateTime ²ÎÊýµÄ¶à·¹ã²¥Î¯ÍС£
ÄúÓ¦¸ÃʹÓÃÄĸö´úÂë¶Î£¿
A. public delegate int PowerDeviceOn(bool result,
DateTime autoPowerOff);
B. public delegate bool PowerDeviceOn(object sender,
EventArgs autoPowerOff);
C. public delegate void PowerDeviceOn(DateTime autoPowerOff);
D. public delegate bool PowerDeviceOn(DateTime autoPowerOff);
Answer: C
3. ÄúÕýÔÚʹÓÃÓ¦ÓóÌÐòµÄµ÷ÊÔ°æ±¾¡£
ÄúÐèÒªÕÒ³öµ¼ÖÂÒì³£Å׳öµÄ´úÂëÐС£
ÄúӦʹÓà Exception ÀàµÄÄĸöÊôÐÔÀ´´ïµ½´ËÄ¿µÄ£¿
A. Data
B. Message
C. StackTrace
D. Source
Answer: C
4. ÄúÕýÔÚ±àдһ¸ö·½·¨£¬¸Ã·½·¨·µ»ØÃûΪ al µÄ ArrayList¡£
ÄúÐèҪȷ±£ÒÔḬ̈߳²È«µÄ·½Ê½¶Ô ArrayList Ö´Ðиü¸Ä¡£
ÄúÓ¦¸ÃʹÓÃÄĸö´úÂë¶Î£¿
A. ArrayList al = new ArrayList();
lock (al.SyncRoot)
{
return al;
}
B. ArrayList al = new ArrayList();
lock (al.SyncRoot.GetType())
{
return al;
}
C. ArrayList al = new ArrayList();
Monitor.Enter(al);
Monitor.Exit(al);
return al;
D. ArrayList al = new ArrayList();
ArrayList sync_al = ArrayList.Synchronized(al);
return sync_al;
Answer: D
5. Äú¿ª·¢Ò»¸öÃûΪ FileService µÄ·þÎñÓ¦ÓóÌÐò¡£Äú½«¸Ã·þÎñÓ¦ÓóÌÐò²¿Êðµ½ÍøÂçÉϵĶą̀·þÎñÆ÷¡£
ÄúÖ´ÐÐÒÔÏ´úÂë¶Î¡££¨°üÀ¨µÄÐкŽö¹©²Î¿¼¡££©
01 public void StartService(string serverName){
02 ServiceController crtl = new
03 ServiceController("FileService");
04 if (crtl.Status == ServiceControllerStatus.Stopped){
05 }
06 }
ÄúÐèÒª¿ª·¢Ò»¸öÀý³Ì£¬Èç¹û FileService Í£Ö¹£¬¸ÃÀý³Ì½«Æô¶¯Ëü¡£¸ÃÀý³Ì±ØÐëÔÚÓÉ serverName ÊäÈë²ÎÊýÈ·¶¨µÄ·þÎñÆ÷ÉÏÆô¶¯ FileService¡£
ÄúÓ¦¸Ã½«ÄÄÁ½ÐдúÂëÌí¼Óµ½´úÂë¶Î£¿£¨Ã¿¸öÕýÈ·´ð°¸¶¼½ö¸ø³öÁ˲¿·Ö½â¾ö·½°¸¡£ÇëÑ¡ÔñÁ½¸ö´ð°¸¡££©
A. ÔÚ 03 ÐÐºÍ 04 ÐÐÖ®¼ä²åÈëÒÔÏ´úÂëÐУº
crtl.ServiceName = serverName;
B. ÔÚ 03 ÐÐºÍ 04 ÐÐÖ®¼ä²åÈëÒÔÏ´úÂëÐУº
crtl.MachineName = serverName;
C. ÔÚ 03 ÐÐºÍ 04 ÐÐÖ®¼ä²åÈëÒÔÏ´úÂëÐУº
crtl.Site.Name = serverName;
D. ÔÚ 04 ÐÐºÍ 05 ÐÐÖ®¼ä²åÈëÒÔÏ´úÂëÐУº
crtl.Continue();
E. ÔÚ 04 ÐÐºÍ 05 ÐÐÖ®¼ä²åÈëÒÔÏ´úÂëÐУº
crtl.Start();
F. ÔÚ 04 ÐÐºÍ 05 ÐÐÖ®¼ä²åÈëÒÔÏ´úÂëÐУº
crtl.ExecuteCommand(0);
Answer: BE
6. ÄúÕýÔÚ¿ª·¢Ò»¸öÓÃÓÚÖ´ÐÐÊýѧ¼ÆËãµÄÓ¦ÓóÌÐò¡£Äú¿ª·¢ÃûΪ CalculationValues µÄÀà¡£Äú±àдһ¸öÃûΪ PerformCalculation µÄ¹ý³Ì£¬¸Ã¹ý³ÌÔÚÀàµÄʵÀýÉϽøÐвÙ×÷¡£
ÄúÐèҪȷ±£Ó¦ÓóÌÐòµÄÓû§½çÃæÔÚ¼ÆËãÕýÔÚÖ´ÐÐʱÄܱ£³ÖÏìÓ¦¡£ÄúÐèÒª±àдһ¸öµ÷Óà PerformCalculation ¹ý³ÌµÄ´úÂë¶ÎÀ´´ïµ½´ËÄ¿µÄ¡£
ÄúÓ¦¸ÃʹÓÃÄĸö´úÂë¶Î£¿
A. private void PerformCalculation() {
...
}
private void DoWork(){
CalculationValues myValues = new CalculationValues();
Thread newThread = new Thread(
new ThreadStart(PerformCalculation));
newThread.Start(myValues);
}
B. private void PerformCalculation() {
...
}
private void DoWork(){
CalculationValues myValues = new CalculationValues();
ThreadStart delStart = new
ThreadStart(PerformCalculation);
Thread newThread = new Thread(delStart);
if (newThread.IsAlive) {
newThread.Start(myValues);
}
}
C. private void PerformCalculation (CalculationValues values) {
...
}
private void DoWork(){
CalculationValues myValues = new CalculationValues();
Application.DoEvents();
PerformCalculation(myValues);
Application.DoEvents();
}
D. private void PerformCalculation(object values) {
...
}
private void DoWork(){
CalculationValues myValues = new CalculationValues();
Thread newThread = new Thread(
new ParameterizedThreadStart(PerformCalculation));
newThread.Start(myValues);
}
Answer: D
7. ÄúÕýÔÚ±àд×Ô¶¨Òå×ֵ䡣¸Ã×Ô¶¨Òå×ÖµäÀàÃûΪ MyDictionary¡£
ÄúÐèҪȷ±£¸Ã×ÖµäÊÇÀàÐͰ²È«µÄ×ֵ䡣
ÄúÓ¦¸ÃʹÓÃÄĸö´úÂë¶Î£¿
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
8. ÄúÕýÔÚ´´½¨Ò»¸öÀ࣬ÓÃÓڱȽϾ¹ýÌØÊâ¸ñʽÉèÖõÄ×Ö·û´®¡£Ä¬ÈϵÄÅÅÐò¹æÔò±È½Ï²»ÊÊÓá£
ÄúÐèҪʵÏÖ IComparable<string> ½Ó¿Ú¡£
ÄúÓ¦¸ÃʹÓÃÄĸö´úÂë¶Î£¿
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
9. ÄúÕýÔÚ´´½¨ÃûΪ Age µÄÀà¡£
ÄúÐèҪȷ±£±àдµÄ Age ÀàµÄ¶ÔÏóËù¹¹³ÉµÄ¼¯ºÏÄܹ»±»ÅÅÐò¡£
ÄúÓ¦¸ÃʹÓÃÄĸö´úÂë¶Î£¿
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
10. Äú±àдÒÔÏ´úÂë¡£
public delegate void FaxDocs(object sender, FaxArgs args);
ÄúÐèÒª´´½¨Ò»¸ö½«µ÷Óà FaxDocs µÄʼþ¡£
ÄúÓ¦¸ÃʹÓÃÄĸö´úÂë¶Î£¿
A. public static event FaxDocs Fax;
B. public static event Fax FaxDocs;
C. public class FaxArgs :EventArgs {
private string coverPageInfo;
public FaxArgs(string coverInfo) {
this.coverPageInfo = coverPageInfo;
}
public string CoverPageInformation {
get {return this.coverPageInfo;}
}
}
D. public class FaxArgs :EventArgs {
private string coverPageInfo;
public string CoverPageInformation {
get {return this.coverPageInfo;}
}
}
Answer: A
Click Online chat to talk with us , get more informations about Cisco CCNP 642-892 practice exam study guides questions and answers
Exam Description
It is well known that 70-536ChineseC++ exam test is the hot exam of Microsoft certification. TestInside offer you all the Q&A of the 70-536ChineseC++ real test . It is the examination of the perfect combination and it will help you pass 70-536ChineseC++ exam at the first time!
Why choose TestInside 70-536ChineseC++ braindumps
Quality and Value for the 70-536ChineseC++ Exam
100% Guarantee to Pass Your 70-536ChineseC++ Exam
Downloadable, Interactive 70-536ChineseC++ Testing engines
Verified Answers Researched by Industry Experts
Drag and Drop questions as experienced in the Actual Exams
Practice Test Questions accompanied by exhibits
Our Practice Test Questions are backed by our 100% MONEY BACK GUARANTEE.
TestInside 70-536ChineseC++ Exam Features
Quality and Value for the 70-536ChineseC++ Exam
TestInside Practice Exams for Microsoft 70-536ChineseC++ are written to the highest standards of technical accuracy, using only certified subject matter experts and published authors for development.
100% Guarantee to Pass Your 70-536ChineseC++ Exam
If you prepare for the exam using our TestInside testing engine, we guarantee your success in the first attempt. If you do not pass the TS 70-536ChineseC++ exam (ProCurve Secure WAN) on your first attempt we will give you a FULL REFUND of your purchasing fee AND send you another same value product for free.
Microsoft 70-536ChineseC++ Downloadable, Printable Exams (in PDF format)
Our Exam 70-536ChineseC++ Preparation Material provides you everything you will need to take your 70-536ChineseC++ Exam. The 70-536ChineseC++ Exam details are researched and produced by Professional Certification Experts who are constantly using industry experience to produce precise, and logical. You may get questions from different web sites or books, but logic is the key. Our Product will help you not only pass in the first try, but also save your valuable time.
70-536ChineseC++ Downloadable, Interactive Testing engines
We are all well aware that a major problem in the IT industry is that there is a lack of quality study materials. Our Exam Preparation Material provides you everything you will need to take a certification examination. Like actual certification exams, our Practice Tests are in multiple-choice (MCQs) Our Microsoft 70-536ChineseC++ Exam will provide you with free 70-536ChineseC++ dumps questions with verified answers that reflect the actual exam. These questions and answers provide you with the experience of taking the actual test. High quality and Value for the 70-536ChineseC++ Exam:100% Guarantee to Pass Your TS exam and get your TS Certification.
TestInside 70-536ChineseC++ practice exam preparation workTestInside 70-536ChineseC++ braindumps examination test
TestInside 70-536ChineseC++ pdf exam history test questions
TestInside 70-536ChineseC++ video
TestInside 70-536ChineseC++ certification professionals
TestInside 70-536ChineseC++ actual
TestInside 70-536ChineseC++ braindumps notes
TestInside 70-536ChineseC++ study guide questions
TestInside 70-536ChineseC++ practice exam guide
TestInside 70-536ChineseC++ examination guide
TestInside 70-536ChineseC++ certificate file
TestInside 70-536ChineseC++ certification practice tests
TestInside 70-536ChineseC++ preparation work
TestInside 70-536ChineseC++ certified certification
TestInside 70-536ChineseC++ sample certification
TestInside 70-536ChineseC++ braindumps
http://www.saletestinside.com/70-536ChineseC++-exam.html The safer.easier way to get TS Certification.

