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. DRAG DROP - (Topic 1) 

You develop an application that displays information from log files when errors occur. The application will prompt the user to create an error report that sends details about the error and the session to the administrator. 

When a user opens a log file by using the application, the application throws an exception and closes. 

The application must preserve the original stack trace information when an exception occurs during this process. 

You need to implement the method that reads the log files. 

How should you complete the relevant code? (To answer, drag the appropriate code segments to the correct locations 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:  

Q2. - (Topic 1) 

You are developing an application that uses several objects. The application includes the following code segment. (Line numbers are included for reference only.) 

You need to evaluate whether an object is null. Which code segment should you insert at line 03? 

A. Option A 

B. Option B 

C. Option C 

D. Option D 

Answer:

Explanation: Use the == operator to compare values and in this case also use the null literal. 

Q3. - (Topic 2) 

You are modifying an existing application. 

The application includes a Loan class and a Customer class. The following code segment defines the classes. 

You populate a collection named customer-Collection with Customer and Loan objects by using the following code segment: 

You create a largeCustomerLoans collection to store the Loan objects by using the following code segment: 

Collection<Loan> largeCustomerLoans = new Collection<Loan>(); 

All loans with an Amount value greater than or equal to 4000 must be tracked. 

You need to populate the largeCustomerLoans collection with Loan objects. 

Which code segment should you use? 

A. Option A 

B. Option B 

C. Option C 

D. Option D 

Answer:

Explanation: Must add to the largeCustomerLoans collection, not the customerLoanCollection. 

We iterate through each customer in customerCollection and check each loan belonging to this customer. 

Q4. DRAG DROP - (Topic 2) 

An application serializes and deserializes XML from streams. The XML streams are in the following format: 

The application reads the XML streams by using a DataContractSerializer object that is declared by the following code segment: 

You need to ensure that the application preserves the element ordering as provided in the XML stream. 

You have the following code: 

Which attributes should you include in Target 1, Target 2 and Target 3 to complete the code? (To answer, drag the appropriate attributes to the correct targets in the answer area. Each attribute 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:  

Q5. - (Topic 2) 

You are developing an application that includes the following code segment: 

You need to implement the Open() method of each interface in a derived class named UseResources and call the Open() method of each interface. 

Which two code segments should you use? (Each correct answer presents part of the solution. Choose two.) 

A. Option A 

B. Option B 

C. Option C 

D. Option D 

Answer: A,C 

Explanation: 

* An interface contains only the signatures of methods, properties, events or indexers. A class or struct that implements the interface must implement the members of the interface that are specified in the interface definition. 

* Example: interface ISampleInterface { void SampleMethod(); } 

class ImplementationClass : ISampleInterface 

// Explicit interface member implementation: 

void ISampleInterface.SampleMethod() 

// Method implementation. 

static void Main() 

// Declare an interface instance. 

ISampleInterface obj = new ImplementationClass(); 

// Call the member. 

obj.SampleMethod(); 

Q6. - (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 

Q7. - (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:

Q8. HOTSPOT - (Topic 2) 

You have the following code: 

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

Answer:  

Q9. - (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. ReRegisterForFinalize() 

B. SuppressFinalize() 

C. Collect() 

D. WaitForFullGCApproach() 

Answer:

Q10. - (Topic 1) 

You are developing an application that uses structured exception handling. The application includes a class named ExceptionLogger. 

The ExceptionLogger class implements a method named LogException by using the following code segment: 

public static void LogException(Exception ex) 

You have the following requirements: . Log all exceptions by using the LogException() method of the ExceptionLogger class. . Rethrow the original exception, including the entire exception stack. You need to meet the requirements. 

Which code segment should you use? 

A. Option A 

B. Option B 

C. Option C 

D. Option D 

Answer:

Explanation: 

Once an exception is thrown, part of the information it carries is the stack trace. The stack trace is a list of the method call hierarchy that starts with the method that throws the exception and ends with the method that catches the exception. If an exception is re-thrown by specifying the exception in the throw statement, the stack trace is restarted at the current method and the list of method calls between the original method that threw the exception and the current method is lost. To keep the original stack trace information with the exception, use the throw statement without specifying the exception. 

http://msdn.microsoft.com/en-us/library/ms182363(v=vs.110).aspx