★ 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


Cause all that matters here is passing the Microsoft 98-361 exam. Cause all that you need is a high score of 98-361 Microsoft MTA Software Development Fundamentals exam. The only one thing you need to do is downloading Testking 98-361 exam study guides now. We will not let you down with our money-back guarantee.

2021 Dec passing 98-361:

Q61. You are writing a method named PrintReport that doesn't return a value to the calling code. Which keyword should you use in your method declaration to indicate this fact? 

A. void 

B. private 

C. int 

D. string 

Answer:


Q62. You need to display specific messages to users when their browser is not running JavaScript. Which of the following code segment should you use? 

A. <script runat="server"> ... </script> 

B. <script> ... </script> 

C. <% ... %> 

D. <noscript> ... </noscript> 

Answer:


Q63. You are planning to develop a new software system for your organization. You need to review the system’s technical blueprint. Which of the following participants is responsible for providing the technical blueprint? 

A. user interface designer 

B. developer 

C. architect 

D. technical writer 

Answer:


Q64. You need an application that updates the inventory every morning when you log in to the workstation. If an error occurs during update, the application needs to log messages to a text file. The application doesn’t need any user interaction. You want to automate the process that launches the application. You want to minimize the efforts for developing, installing, and updating the application. Which type of application should you create? 

A. Windows Service 

B. Windows Form 

C. Web Form 

D. console application 

Answer:


Q65. You are writing a C# program that needs to manipulate very large integer values that may exceed 12 digits. 

The values can be positive or negative. Which data type should you use to store a variable like this? 

A. int 

B. float 

C. double 

D. long 

Answer:


Improve certificacion mta 98-361:

Q66. You have completed developing several major features of a new software application. You plan to provide an early look at the product to important customers to gather some early feedback. Your application still misses features and you haven’t yet optimized the application for performance and security. Which kind of testing should you perform with a limited number of important customers? 

A. white-box testing 

B. black-box testing 

C. alpha testing 

D. beta testing 

Answer:


Q67. You are developing a new Web page. You need to create hyperlinks that point to other pages on the World Wide Web. Which of the following methods should you use to create these hyperlinks on your Web page? 

A. the SRC attribute of the <IMG> tag 

B. the HREF attribute of the <A> tag 

C. the HREF attribute of the <LINK> tag 

D. the XMLNS attribute of the <HTML> tag 

Answer:


Q68. In your application, you are using a stack data structure to manipulate information. You need to find which data item will be processed next, but you don’t want to actually process that data item yet. Which of the following queue operations will you use? A. pop 

B. push 

C. peek 

D. contains 

Answer:


Q69. You need to provide complex multi-way branching in your C# program. You need to make sure that your code is easy to read and understand. Which of the following C# statements should you use? 

A. case 

B. break 

C. if-else 

D. switch 

Answer:


Q70. You need to develop a C# program that exports the contents of the Customers table to an XML file. The exported data must be in the following format: 

<Customer CustomerID="ALFKI" ContactName="Maria Anders" Phone="030-007-4321" /> 

<Customer CustomerID="ANATR" ContactName="Ana Trujillo" Phone="(5) 555-4729" /> 

Which of the following code segments should you use to export the Customers table to the specified XML format? 

A. foreach(DataColumn c in dataset1.tables["Customers"].Columns) 

B. ColumnMapping = MappingType.Attribute; 

dataSet1.WriteXml("Customers.xml"); 

C. foreach(DataColumn c in dataset1.tables["Customers"].Columns) 

D. ColumnMapping = MappingType.Element; 

dataSet1.WriteXml("Customers.xml"); 

E. foreach(DataColumn c in dataset1.tables["Customers"].Columns) 

F. ColumnMapping = MappingType.Attribute; 

dataSet1.WriteXml("Customers.xml", XmlWriteMode.WriteSchema); 

G. foreach(DataColumn c in dataset1.tables["Customers"].Columns) 

H. ColumnMapping = MappingType.Element; 

dataSet1.WriteXml("Customers.xml", XmlWriteMode.WriteSchema); 

Answer: