QUESTION 101
You are developing an application.
The application contains the following code segment (line numbers are included for reference only):
When you run the code, you receive the following error message: “Cannot implicitly convert type ‘object” to ‘int’. An explicit conversion exists (are you missing a cast?).”
You need to ensure that the code can be compiled. Which code should you use to replace line 05?
A. |
var2 = arra1[0] is int; |
B. |
var2 = ( (List<int>)array1) [0]; |
C. |
var2 = array1[0].Equals(typeof(int)); |
D. |
var2 = (int) array1 [0]; |
Correct Answer: D
Explanation:
Make a list of integers of the array with = ( (List<int>)array1) then select the first item in the list with [0].
QUESTION 102
You need to write a method that retrieves data from a Microsoft Access 2013 database. The method must meet the following requirements:
Be able to use the data before the entire data set is retrieved.
Minimize the amount of system overhead and the amount of memory usage.
Which type of object should you use in the method?
A. |
SqlDataAdapter |
B. |
DataContext |
C. |
DbDataAdapter |
D. |
OleDbDataReader |
Correct Answer: D
Explanation:
OleDbDataReader Class
Provides a way of reading a forward-only stream of data rows from a data source.
Example:
OleDbConnection cn = new OleDbConnection();
OleDbCommand cmd = new OleDbCommand();
DataTable schemaTable;
OleDbDataReader myReader;
//Open a connection to the SQL Server Northwind database. cn.ConnectionString = “Provider=SQLOLEDB;Data Source=server;User ID=login; Password=password;Initial Catalog=Northwind”;
QUESTION 103
You have the following code:
You need to retrieve all of the numbers from the items variable that are greater than 80.
Which code should you use?
A. |
Option A |
B. |
Option B |
C. |
Option C |
D. |
Option D |
Correct Answer: A
QUESTION 104
DRAG DROP
You are creating a method that will split a single input file into two smaller output files.
The method must perform the following actions:
Create a file named header.dat that contains the first 20 bytes of the input file.
Create a file named body.dat that contains the remainder of the input file.
You need to create the method.
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.)
Correct Answer:
QUESTION 105
DRAG DROP
You are adding a function to a membership tracking application- The function uses an integer named memberCode as an input parameter and returns the membership type as a string.
The function must meet the following requirements:
Return “Non-Member” if the memberCode is 0.
Return “Member” if the memberCode is 1.
Return “Invalid” if the memberCode is any value other than 0 or 1.
You need to implement the function to meet the requirements.
How should you complete the relevant code? (To answer, drag the appropriate statements to the correct locations in the answer area. Each statement 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.)
Correct Answer:
QUESTION 106
HOTSPOT
You are developing the following classes named:
All of the classes will be part of a single assembly named Assembly.dll. Assembly.dll will be used by multiple applications.
All of the classes will implement the following interface, which is also part ofAssembly.dll:
public interface Interface1
{
void Method1(decimal amount);
void Method2(decimal amount);
}
You need to ensure that the Method2 method for the Class3 class can be executed only when instances of the class are accessed through the Interface1 interface. The solution must ensure that calls to the Method1 method can be made either through the interface or through an instance of the class.
Which signature should you use for each method? (To answer, select the appropriate signature for each method in the answer area.)
Correct Answer:
QUESTION 107
You are implementing a method named ProcessReports that performs a long-running task. The ProcessReports() method has the following method signature:
public void ProcessReports(List<decimal> values,CancellationTokenSource cts, CancellationToken ct)
If the calling code requests cancellation, the method must perform the following actions:
Set the task status to TaskStatus.Canceled.
You need to ensure that the ProcessReports() method performs the required actions. Which code segment should you use in the method body?
A. |
if (ct.IsCancellationRequested) return; |
B. |
ct.ThrowIfCancellationRequested() ; |
C. |
cts.Cancel(); |
D. |
throw new AggregateException(); |
Correct Answer: B
QUESTION 108
You are developing an application that will be deployed to multiple computers. You set the assembly name. You need to create a unique identity for the application assembly. Which two assembly identity attributes should you include in the source code? (Each correct answer presents part of the solution. Choose two.)
A. |
AssemblyTitleAttribute |
B. |
AssemblyCultureAttribute |
C. |
AssemblyVersionAttribute |
D. |
AssemblyKeyNameAttribute |
E. |
AssemblyFileVersion |
Correct Answer: BC
Explanation:
The AssemblyName object contains information about an assembly, which you can use to bind to that assembly. An assembly’s identity consists of the following:
Simple name.
Version number.
Cryptographic key pair.
Supported culture.
B: AssemblyCultureAttribute
Specifies which culture the assembly supports.
The attribute is used by compilers to distinguish between a main assembly and a satellite assembly. A main assembly contains code and the neutral culture’s
resources. A satellite assembly contains only resources for a particular culture, as in [assembly:AssemblyCultureAttribute(“de”)]
C: AssemblyVersionAttribute
Specifies the version of the assembly being attributed. The assembly version number is part of an assembly’s identity and plays a key part in binding to the assembly and in version policy.
QUESTION 109
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> |
Correct Answer: C
QUESTION 110
You are writing the following method (line numbers are included for reference only):
You need to ensure that CreateObject compiles successfully.
What should you do?
A. |
Insert the following code at line 02: where T : new() |
B. |
Replace line 01 with the following code: public void CreateObject<T>() |
C. |
Replace line 01 with the following code: public Object CreateObject<T>() |
D. |
Insert the following code at line 02: where T : Object |
Correct Answer: A
Free VCE & PDF File for Microsoft 70-483 Real Exam
Instant Access to Free VCE Files: MCSE|MCSA|MCITP…
Instant Access to Free PDF Files: MCSE|MCSA|MCITP…
70-410 Dumps VCE PDF
70-411 Dumps VCE PDF
70-412 Dumps VCE PDF
70-413 Dumps VCE PDF
70-414 Dumps VCE PDF
70-417 Dumps VCE PDF
70-461 Dumps VCE PDF
70-462 Dumps VCE PDF
70-463 Dumps VCE PDF
70-464 Dumps VCE PDF
70-465 Dumps VCE PDF
70-480 Dumps VCE PDF
70-483 Dumps VCE PDF
70-486 Dumps VCE PDF
70-487 Dumps VCE PDF