TestTaker WinForm Edition 08/14/2010

 

I have a downloadable TestTaker WinForm app.     You can input a txt file that consists of questions and answers and it will provide for you a test fixture to quiz you on these questions.  Here is a link to the .NET 4 app and setup.  Just unzip and run setup.exe.  Install in the folder of your choice. Enjoy.  WinForm-DISK1.zip (1.03 mb)        You must have .NET 4 fully installed.  It is the debug version.

 

The format is very straightforward.  I provided a full sample test in download.

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.