★ Pass on Your First TRY ★ 100% Money Back Guarantee ★ Realistic Practice Exam Questions

Free Instant Download NEW 98-361 Exam Dumps (PDF & VCE):
Available on: https://www.certleader.com/98-361-dumps.html


Depending on excellent engineering, better support for purchasers. Ucertify provide Round-the-clock customer support regarding Microsoft examinee and you can obtain what you would like know whenever you want. The fulfillment of our 98-361 is actually the support purpose, their joint advancement along with consumers is actually the persistent pursuit in a large number. Thus do not think twice to get hold of us if you have any queries of 98-361 examination.

2021 Jul mta 98-361 book:

Q1. You are developing a C# program. You write the following code: 

int x = 10 

int y = ++x 

int x = y++; 

What will be the variable z after all the above statements are executed? 

A. 10 

B. 11 

C. 12 

D. 13 

Answer: B 


Q2. You are developing a C# program that needs to perform 5 iterations. You write the following code: 

01: int count = 0; 

02: while (count <= 5) 

03: { 

04: Console.WriteLine("The value of count = {0}", count); 

05: count++; 

06: } 

When you run the program, you notice that the loop does not iterate five times. What should you do to make sure that the loop is executed exactly five times? 

A. Change the code in line 01 to int count = 1; 

B. Change the code in line 02 to: while (count == 5) 

C. Change the code in line 02 to while (count >= 5) 

D. Change the code in line 05 to ++count; 

Answer: A 


Q3. You have created a new Web service that provides mapping data. You are working in a Visual Studio environment and use C# as your programming language. You need to test the Web service to ensure that it is returning correct results. What is the easiest way to test your new Web service? 

A. Copy and paste the Web service code into ASP.NET Web Applications. Run the Web application to see theresults. 

B. Invoke the Web service from an ASP.NET client. Run the Web application to see the results. 

C. Run the Web services project from within Visual Studio and use the test page that is displayed in the Webbrowser. 

D. Have a large number of beta testers usetheWeb service and check for incorrect results. 

Answer: C 


Q4. You are developing a C# program. You write the following code line: 

int x = 6 + 4 * 4 / 2 - 1; 

What will be the value of the variable x after this statement is executed? 

A. 19 

B. 13 

C. 20 

D. 14 

Answer: B 


Q5. You are writing a C# program that iterates through a collection such as arrays and lists. You need to make sure that you process each item in the collection once. You also need to ensure that your code is easy to read and debug. Which of the following C# statements provide the best solution for this requirement? 

A. while 

B. for 

C. foreach 

D. do-while 

Answer: C 


98-361 test questions

Refresh software development fundamentals exam 98-361 pdf:

Q6. You are developing a C# program. You write the following code: 

int i = 6; 

do 

if (i == 3) 

break; 

Console.WriteLine("The value of i = {0}", i); 

i++; 

while (i <= 5); 

How many times will the control enter the while loop? 

A. 0 

B. 1 

C. 2 

D. 3 

Answer: B 


Q7. You are developing an ASP.NET application that uses a Web service created by one of your large customers. This Web service provides you with the Order object, which has several properties. The developer of the Web service has informed you that a new property named Priority has added to the Order object. What should you do to be able to use the Priority property in your code with minimum effort? 

A. Create a new ASP.NET application and add a Web reference to the Web service in the new application. 

B. Delete and re-create the Web reference in the existing ASP.NET application. 

C. Update the Web reference in the existing ASP.NET application. 

D. Ask the developer of the Web service forthe updatedDLL file of the Web service. Add a reference to theDLL in your ASP.NET project. 

Answer: C 


Q8. You are designing a database for your company. You are reviewing the normalization for the database tables. 

You review the following Orders table: 


Which of the following statement is true for the Orders table? 

A. It meets the requirements for the first normal form. 

B. It meets the requirements for the second normal form. 

C. It meets the requirements for the third normal form. 

D. It meets the requirements for the fourth normal form. 

Answer: A 


Q9. You are reviewing a C# program. The program contains the following class: 

public struct Rectangle { public double Length {get; set;} public double Width { get; set; } } 

The program executes the following code as part of the Main method: 

Rectangle r1, r2; 

r1 = new Rectangle { Length = 10.0, Width = 20.0 }; 

r2 = r1; 

r2.Length = 30; 

Console.WriteLine(r1.Length); 

What will be the output when this code is executed? 

A. 10 

B. 20 

C. 30 

D. 40 

Answer: A 


Q10. You are C# developer who is developing a Windows application. You develop a new class that must be accessible to all the code packaged in the same assembly. Even the classes that are in the same assembly but do not directly or indirectly inherit from this class must be able to access the code. Any code outside the assembly should not be able to access the new class. Which access modifier should you use to declare the new class? 

A. public 

B. protected 

C. private 

D. internal 

Answer: C