aiotestking uk

70-483 Exam Questions - Online Test


70-483 Premium VCE File

Learn More 100% Pass Guarantee - Dumps Verified - Instant Download
150 Lectures, 20 Hours

Q1. - (Topic 1) 

You are developing an application by using C#. 

The application includes an object that performs a long running process. 

You need to ensure that the garbage collector does not release the object's resources until 

the process completes. 

Which garbage collector method should you use? 

A. WaitForFullGCComplete() 

B. WaitForFullGCApproach() 

C. KeepAlive() 

D. WaitForPendingFinalizers() 

Answer:

Explanation: The GC.KeepAlive method references the specified object, which makes it ineligible for garbage collection from the start of the current routine to the point where this method is called. The purpose of the KeepAlive method is to ensure the existence of a reference to an object that is at risk of being prematurely reclaimed by the garbage collector. The KeepAlive method performs no operation and produces no side effects other than extending the lifetime of the object passed in as a parameter. 

Q2. - (Topic 2) 

You need to write a console application that meets the following requirements: 

. If the application is compiled in Debug mode, the console output must display Entering debug mode. . If the application is compiled in Release mode, the console output must display Entering release mode. 

Which code should you use? 

A. Option A 

B. Option B 

C. Option C 

D. Option D 

Answer:

Explanation: #elif lets you create a compound conditional directive. The #elif expression will be evaluated if neither the preceding #if (C# Reference) nor any preceding, optional, #elif directive expressions evaluate to true. If a #elif expression evaluates to true, the compiler evaluates all the code between the #elif and the next conditional directive. For example: #define VC7 //... #if debug Console.Writeline("Debug build"); #elif VC7 Console.Writeline("Visual Studio 7"); #endif 

Incorrect: Not B: 

* System.Reflection.Assembly.GetExecutingAssembly Method Gets the assembly that contains the code that is currently executing.* Assembly.IsDefined Method Indicates whether or not a specified attribute has been applied to the assembly. 

* System.Dignostics.Debugger Class Enables communication with a debugger. 

Property: IsAttached 

Gets a value that indicates whether a debugger is attached to the process. 

Q3. - (Topic 1) 

You use the Task.Run() method to launch a long-running data processing operation. The data processing operation often fails in times of heavy network congestion. 

If the data processing operation fails, a second operation must clean up any results of the first operation. 

You need to ensure that the second operation is invoked only if the data processing operation throws an unhandled exception. 

What should you do? 

A. Create a TaskCompletionSource<T> object and call the TrySetException() method of the object. 

B. Create a task by calling the Task.ContinueWith() method. 

C. Examine the Task.Status property immediately after the call to the Task.Run() method. 

D. Create a task inside the existing Task.Run() method by using the AttachedToParent option. 

Answer:

Q4. - (Topic 1) 

You are creating an application that manages information about your company's products. The application includes a class named Product and a method named Save. 

The Save() method must be strongly typed. It must allow only types inherited from the Product class that use a constructor that accepts no parameters. 

You need to implement the Save() method. Which code segment should you use? 

A. Option A 

B. Option B 

C. Option C 

D. Option D 

Answer:

Explanation: 

When you define a generic class, you can apply restrictions to the kinds of types that client 

code can use for type arguments when it instantiates your class. If client code tries to instantiate your class by using a type that is not allowed by a constraint, the result is a compile-time error. These restrictions are called constraints. Constraints are specified by using the where contextual keyword. http://msdn.microsoft.com/en-us/library/d5x73970.aspx 

Q5. - (Topic 2) 

You are developing an application. 

You need to declare a delegate for a method that accepts an integer as a parameter, and then returns an integer. 

Which type of delegate should you use? 

A. Action<int> 

B. Action<int, int> 

C. Func<int, int> 

D. Func<int> 

Answer:

Q6. DRAG DROP - (Topic 1) 

You are developing an application that will include a method named GetData. The 

GetData() method will retrieve several lines of data from a web service by using a 

System.IO.StreamReader object. 

You have the following requirements: 

. The GetData() method must return a string value that contains the first line of the response from the web service. . The application must remain responsive while the GetData() method runs. 

You need to implement the GetData() method. 

How should you complete the relevant code? (To answer, drag the appropriate objects to the correct locations in the answer area. Each object may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.) 

Answer:  

Q7. DRAG DROP - (Topic 2) 

You are developing an application that implements a set of custom exception types. You declare the custom exception types by using the following code segments: 

The application includes a function named DoWork that throws .NET Framework exceptions and custom exceptions. The application contains only the following logging methods: 

The application must meet the following requirements: 

. When ContosoValidationException exceptions are caught, log the information by using the static void Log (ContosoValidationException ex) method. . When ContosoDbException or other ContosoException exceptions are caught, log the information by using the static void Log(ContosoException ex) method. 

You need to meet the requirements. 

You have the following code: Which code segments should you include in Target 1, Target 2 and Target 3 to complete the code? (To answer, drag the appropriate code segments to the correct targets in the answer area. Each code segment may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.) 

Answer:  

Q8. - (Topic 2) 

You are troubleshooting an application that uses a class named FullName. The class is decorated with the DataContractAttribute attribute. The application includes the following code. (Line numbers are included for reference only.) 

You need to ensure that the entire FullName object is serialized to the memory stream object. 

Which code segment should you insert at line 09? 

A. binary.WriteEndElement(); 

B. binary.NriteEndDocument(); 

C. ms.Close() ; 

D. binary.Flush(); 

Answer:

Explanation: * DataContractSerializer.WriteEndObject Method (XmlDictionaryWriter) Writes the closing XML element using an XmlDictionaryWriter. 

* Note on line 07: DataContractSerializer.WriteObject Method Writes all the object data (starting XML element, content, and closing element) to an XML document or stream. 

XmlDictionaryWriter 

Q9. - (Topic 2) 

You are creating an application that reads from a database. 

You need to use different databases during the development phase and the testing phase by using conditional compilation techniques. 

What should you do? 

A. Configure the Define TRACE constant setting in Microsoft Visual Studio. 

B. Decorate the code by using the [DebuggerDisplay("Mydebug")] attribute. 

C. Configure the Define DEBUG constant setting in Microsoft Visual Studio. 

D. Disable the strong-name bypass feature of Microsoft .NET Framework in the registry. 

Answer:

Explanation: Use one debug version to connect to the development database, and a standard version to connect to the live database. 

Q10. HOTSPOT - (Topic 2) 

A developer designs an interface that contains the following code: 

For each of the following statements, select Yes if the statement is true. Otherwise, select No. 

Answer: