TestTaker Silverlight Edition 08/30/2010

I have a live Silverlight TestTaker app on my web site.   Remember you must have Silverlight 4 and .NET 4 installed.

Remember you will need silverlight 4 and .NET 4. Click Here to download .NET 4.0.  Click Here to download Silverlight 4.0

I have provided sample tests you may download before the TestTaker.    70-536 70-536.txt (659.45 kb)   70-502 70-502.txt (71.67 kb)

Download a test file and save it on your PC or MAC. 

To Run TestTaker Silverlight Edition click Here

 

 

A sample test appears as below.

 

Microsoft 70-536           is the start of header

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

Microsoft 70-536: Practice Exam

QUESTION NO: 1          is the start of a  question

You work as the application developer at CertKiller.com. CertKiller.com uses Visual Studio.NET
2005 as its application development platform.

You are in the process of storing numerical values up to 2,100,000,000 into a variable and may
require storing negative values using a .NET Framework 2.0 application. You are required to
optimize memory usage

What should you do?   

A. Int32
B. UInt16
C. UInt32
D. Int16
Answer: A                     is the answer ( A but put A,B if multiple answers)

Explanation:                 is the start of description to answer                                                                                       

The Int32 type should be used in the scenario as it can be used to store positive and negative
numerical values from -2,147,483,648 to +2,147,483,647.

Incorrect Answers:

B: The UINT32 and UInt16 type should not be used in the scenario because they are used to store
only unsigned positive numbers.
Reference types
C: The UINT32 and UInt16 type should not be used in the scenario because they are used to store
only unsigned positive numbers.
Attributes
D: The Int16 type should not be used as you will only be allowed to store values from -32768 to
+32768.