Home > news
Source : TestInsideClick : 222
 
Date:2010-1-13 15:32

Microsoft 70-536 Exam trainning materials

Microsoft  70-536 Exam trainning materials

Exam 70-536:
TS: Microsoft .NET Framework - Application Development Foundation

Published: March 21, 2008
Language(s): English, French, German, Japanese, Chinese (Simplified)
Audience(s): Developers
Technology: Microsoft Visual Studio 2005
Type: Proctored Exam

About this Exam
cExam 70-536

is designed to measure your knowledge of .NET development fundamentals and is not tied to a particular version of .NET. Since

the exam is now applicable to both Microsoft .NET Framework 2.0 and Microsoft .NET Framework 3.5 certification tracks, we

have changed the name of the exam. Formerly TS: Microsoft .NET Framework 2.0 – Application Development Foundation, Exam 70-

536 is now called TS: Microsoft .NET Framework, Application Development Foundation. If you are a .NET 2.0 developer, you do

not need to learn .NET 3.5 to pass Exam 70-536; conversely, if you are a .NET 3.5 developer, you do not need to review .NET

2.0 to pass the exam.
 
Audience Profile
Candidates for this exam work on a team in a medium-sized or large development environment that uses Microsoft Visual Studio

.NET 2003 Enterprise Developer, Microsoft Visual Studio 2005, or Microsoft Visual Studio 2008. Candidates should have at

least two to three years of experience developing Web-based, Windows-based, or distributed applications by using the

Microsoft .NET Framework 1.0, the .NET Framework 1.1, the .NET Framework 2.0, or the .NET Framework 3.5. Candidates should

have a working knowledge of Microsoft Visual Studio 2005 or Visual Studio 2008.
Credit Toward Certification
Exam 70-536: TS: Microsoft .NET Framework - Application Development Foundation: counts as credit toward the following

certification(s):
Microsoft Certified Technology Specialist (MCTS): .NET Framework 2.0 Web Applications
Microsoft Certified Technology Specialist (MCTS): .NET Framework 2.0 Windows Applications
Microsoft Certified Technology Specialist (MCTS): .NET Framework 2.0 Distributed Applications
Microsoft Certified Technology Specialist (MCTS): .NET Framework 3.5, Windows Presentation Foundation Applications
Microsoft Certified Technology Specialist (MCTS): .NET Framework 3.5, Windows Communication Foundation Applications
Microsoft Certified Technology Specialist (MCTS): .NET Framework 3.5, Windows Workflow Foundation Applications
Microsoft Certified Technology Specialist (MCTS): .NET Framework 3.5, Windows Forms Applications
Microsoft Certified Technology Specialist (MCTS): .NET Framework 3.5, ADO.NET Applications
Microsoft Certified Technology Specialist (MCTS): .NET Framework 3.5, ASP.NET Applications
 
Note This preparation guide is subject to change at any time without prior notice and at the sole discretion of Microsoft.

Microsoft exams might include adaptive testing technology and simulation items. Microsoft does not identify the format in

which exams are presented. Please use this preparation guide to prepare for the exam, regardless of its format. 


Microsoft 70-536 exam braindumps

1. You are working on a debug build of an application.

You need to find the line of code that caused an exception to be thrown.

Which property of the Exception class should you use to achieve this goal.

A. Data

B. Message

C. StackTrace

D. Source

Answer: C

2. You are working on a debug build of an application.

You need to find the line of code that caused an exception to be thrown.

Which property of the Exception class should you use to achieve this goal.

A. Data

B. Message

C. StackTrace

D. Source

Answer: C

3. You are working on a debug build of an application.

You need to find the line of code that caused an exception to be thrown.

Which property of the Exception class should you use to achieve this goal.

A. Data

B. Message

C. StackTrace

D. Source

Answer: C

4. You are writing a method that returns an ArrayList named al.

You need to ensure that changes to the ArrayList are performed in a thread-safe manner.

Which code segment should you use?

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. You are writing a method that returns an ArrayList named al.

You need to ensure that changes to the ArrayList are performed in a thread-safe manner.

Which code segment should you use?

A. ArrayList^ al = gcnew ArrayList();lock (al->SyncRoot){return al;}

B. ArrayList^ al = gcnew ArrayList();lock (al->SyncRoot.GetType()){return al;}

C. ArrayList^ al = gcnew ArrayList();Monitor::Enter(al);Monitor::Exit(al);return al;

D. ArrayList^ al = gcnew ArrayList();ArrayList^sync_al = ArrayList::Synchronized(al);return sync_al;

Answer: D

6. You are writing a method that returns an ArrayList named al.

You need to ensure that changes to the ArrayList are performed in a thread-safe manner.

Which code segment should you use?

A. Dim al As ArrayList = New ArrayList()

    SyncLock al.SyncRootreturn al

    End SyncLock

B. Dim al As ArrayList = New ArrayList()

    SyncLock al.SyncRoot.GetType()return al

    End SyncLock

C. Dim al As ArrayList = New ArrayList()

    Monitor.Enter(al)

    Monitor.Exit(al)

    return al

D. Dim al As ArrayList = New ArrayList()

    Dim sync_al as ArrayList = ArrayList.Synchronized(al)

    return sync_al

Answer: D

7. You need to create a method to clear a Queue named q.

Which code segment should you use

A. Dim e As Object

     For Each e In q

     q.Dequeue()

     Next

B. Dim e As Object

     For Each e In q

     q.Enqueue(Nothing)

     Next

C. q.Clear()

D. q.Dequeue()

Answer: C

8. 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

9. 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 ref class Person : public IComparable<String^>{

     public : virtual Int32 CompareTo(String^ other){

     ...

     }

     }

B. public ref class Person : public IComparable<String^>{

     public : virtual Int32 CompareTo(Object^ other){

     ...

     }

     }

C. public ref class Person : public IComparable<String^>{

     public : virtual Boolean CompareTo(String^ other){

     ...

     }

     }

D. public ref class Person : public IComparable<String^>{

     public : virtual Boolean CompareTo(Object^ other){

     ...

     }

     }

Answer: A

10. You are creating a class to compare a specially-formatted string.

The default collation comparisons do not apply.

You need to implement the IComparable(Of String) interface.Which code segment should you use?

A. Public Class Person

     Implements IComparable(Of String)

     Public Function CompareTo(ByVal other As String) As _

     Integer Implements IComparable(Of String).CompareTo

     ...

     End Function

     End Class

B. Public Class Person

     Implements IComparable(Of String)

    Public Function CompareTo(ByVal other As Object) As _

    Integer Implements IComparable(Of String).CompareTo

    ...

    End Function

    End Class

C. Public Class Person

    Implements IComparable(Of String)

    Public Function CompareTo(ByVal other As String) _

    As Boolean Implements IComparable(Of String).CompareTo

    ...

    End Function

    End Class

D. Public Class Person

    Implements IComparable(Of String)

    Public Function CompareTo(ByVal other As Object) _

    As Boolean Implements IComparable(Of String).CompareTo

    ...

    End Function

    End Class

Answer: A


Guarantee | Buying Process | F.A.Q. | Payment | Refundment Term | Semples | Testing Engine | privacy | Contact | Sitemap 1 2 3 4

Copyright©2006-2009 saletestinside Limited. All Rights Reserved

saletestinside materials do not contain actual questions and answers from Microsoft's Cisco's Certification Exams.