Virtual Microsoft 98-361 Vce Online
Want to know Actualtests 98-361 Exam practice test features? Want to lear more about Microsoft Microsoft MTA Software Development Fundamentals certification experience? Study Top Quality Microsoft 98-361 answers to Updated 98-361 questions at Actualtests. Gat a success with an absolute guarantee to pass Microsoft 98-361 (Microsoft MTA Software Development Fundamentals) test on your first attempt.
Microsoft 98-361 Free Dumps Questions Online, Read and Test Now.
NEW QUESTION 1
Which service can host an ASP.NET application?
- A. Internet Information Services
- B. Cluster Services
- C. Remote Desktop Services
- D. Web Services
Answer: A
Explanation:
Using Internet Information Services (IIS) Manager, you can create a local Web site for hosting an ASP.NET Web application.
NEW QUESTION 2
What are two possible options for representing a Web application within Internet
Information Services (IIS)? (Each correct answer presents a complete solution. Choose two. )
- A. Web site
- B. Web directory
- C. Virtual directory
- D. Application server
- E. Application directory
Answer: AC
Explanation:
* Create a Web Application
An application is a grouping of content at the root level of a Web site or a grouping of content in a separate folder under the Web site's root directory. When you add an application in IIS 7, you designate a directory as the application root, or starting point, for the application and then specify properties specific to that particular application, such as the application pool that the application will run in.
* You can make an Existing Virtual Directory a Web Application.
NEW QUESTION 3
HOTSPOT
For each of the following statements, select Yes if the statement is true. Otherwise, select No. Each correct selection is worth one point.
- A. Mastered
- B. Not Mastered
Answer: A
Explanation: 
NEW QUESTION 4
This question requires that you evaluate the underlined text to determine if it is correct.
A table whose attributes depend only on the primary key must be at least second normal form.
Select the correct answer if the underlined text does not make the statement correct. Select "No change is needed'' if the underlined text makes the statement correct.
- A. No change is needed
- B. first
- C. third
- D. fourth
Answer: A
Explanation:
2nd Normal Form Definition
A database is in second normal form if it satisfies the following conditions: It is in first normal form
All non-key attributes are fully functional dependent on the primary key
NEW QUESTION 5
You create an object of type ANumber. The class is defined as follows.
What is the value of _number after the code is executed?
- A. Null
- B. 3
- C. 7
Answer: C
NEW QUESTION 6
Which programming language is characterized as client-side, dynamic and weakly typed?
- A. ASP.NET
- B. C#
- C. JavaScript
- D. HTML
Answer: C
Explanation:
JavaScript is characterized as a dynamic, weakly typed, prototype-based language with first-class functions. It is primarily used in the form of client-side JavaScript for the development of dynamic websites.
NEW QUESTION 7
Simulating the final design of an application in order to ensure that the development is progressing as expected is referred to as:
- A. Analyzing requirements
- B. Prototyping
- C. Software testing
- D. Flowcharting
Answer: C
NEW QUESTION 8
You create an object of type ANumber. The class is defined as follows.
The code is executed as follows.
Dim mynumber As ANumber = new ANumber(3);
What is the value of _number after the code is executed?
- A. Null
- B. 3
- C. 7
Answer: C
NEW QUESTION 9
How many parameters can a default constructor have?
- A. 1
- B. 2
- C. 3 or more
Answer: :A
Explanation:
If a class contains no instance constructor declarations, a default instance constructor is automatically provided. That default constructor simply invokes the parameterless constructor of the direct base class.
NEW QUESTION 10
HOTSPOT
You open the Internet Information Services 7.5 Manager console as shown in the following exhibit:
You need to examine the current configuration of the server W2008R2.
Use the drop-down menus to select the answer choice that answers each question. Each correct selection is worth one point.

- A. Mastered
- B. Not Mastered
Answer: A
Explanation: 
NEW QUESTION 11
You need to debug a Windows Service application by using breakpoints. What should you do?
- A. Write all events to an event log.
- B. Set the Windows Service status to Paused.
- C. Implement the Console.WriteLine method throughout the Windows Service.
- D. Use the Attach to Process menu in Microsoft Visual Studio.
Answer: D
Explanation:
* Because a service must be run from within the context of the Services Control Manager rather than from within Visual Studio, debugging a service is not as straightforward as debugging other Visual Studio application types. To debug a service, you must start the service and then attach a debugger to the process in which it is running.
* To debug a service Install your service.
Start your service, either from Services Control Manager, Server Explorer, or from code. In Visual Studio, choose Attach to Process from the Debug menu.
Etc.
NEW QUESTION 12
In the life cycle of an ASP. NET Web page, which phase follows the SaveStateComplete phase?
- A. PostBack
- B. Postlnit
- C. Load
- D. Render
Answer: D
Explanation:
The SaveStateComplete event is raised after the view state and control state of the page and controls on the page are saved to the persistence medium.
This is the last event raised before the page is rendered to the requesting browser.
NEW QUESTION 13
You execute the following code.
What will the variable result be?
- A. 1
- B. 2
- C. 3
Answer: C
NEW QUESTION 14
HOTSPOT
You have the following flowchart:
Use the drop-down menus to select the answer choice that completes each statement Each correct selection is worth one point.

- A. Mastered
- B. Not Mastered
Answer: A
Explanation: 
NEW QUESTION 15
HOTSPOT
You have a base class named Tree with a friend property named color and a protected property named NumberOfLeaves. In the same project, you also have a class named Person.
For each of the following statements, select Yes if the statement is true. Otherwise, select No. Each correct selection is worth one point.
- A. Mastered
- B. Not Mastered
Answer: A
Explanation: 
NEW QUESTION 16
This question requires that you evaluate the underlined text to determine if it is correct.
To minimize the amount of storage used on the hard drive by an application that generates many small files, you should make the partition as small as possible.
Select the correct answer if the underlined text does not make the statement correct. Select "No change is needed'' if the underlined text makes the statement correct.
- A. No change is needed
- B. file allocation table
- C. block size
- D. folder and file names
Answer: C
NEW QUESTION 17
You are creating the necessary variables for an application. The data you will store in these variables has the following characteristics:
✑ Consists of numbers
✑ Includes numbers that have decimal points
✑ Requires more than seven digits of precision
You need to use a data type that will minimize the amount of memory that is used. Which data type should you use?
- A. Decimal
- B. Single
- C. Byte
- D. Double
Answer: D
Explanation:
The double keyword signifies a simple type that stores 64-bit floating-point values.
Precision: 15-16 digits
NEW QUESTION 18
You are creating an application that accepts input and displays a response to the user. You cannot create a graphical interface for this application.
Which type of application should you create?
- A. Windows Forms
- B. Windows Service
- C. Web-based
- D. Console-based
Answer: C
NEW QUESTION 19
You are writing a Web application that processes room reservation requests. You need to
verify that the room that a guest has selected is not already reserved by another guest.
Which type of programming should you use to determine whether the room is still available when the request is made?
- A. functional
- B. dynamic
- C. in-browser
- D. server-side
Answer: D
NEW QUESTION 20
You have a class named Glass that inherits from a base class named Window. The Window class includes a protected method named break().
How should you call the Glass class implementation of the break() method?
- A. Window.break();
- B. Glass.break();
- C. this.break();
- D. base.break();
Answer: A
NEW QUESTION 21
HOTSPOT
You are developing a web application.
You need to create the following graphic by using Cascading Style Sheets (CSS):
Use the drop-down menus to select the answer choice that completes each statement. Each correct selection is worth one point.

- A. Mastered
- B. Not Mastered
Answer: A
Explanation: 
NEW QUESTION 22
You plan to create an application for your company. The application will run automated routines and write the results to a text-based log file. Little or no user interaction is required.
Security requirements on the host computers prevent you from running applications on startup, and users must be able to see the status easily on the screen. The host computers also have limited memory and monitors that display only two colors. These computers will have no network connectivity.
Which type of application should you use for this environment?
- A. Directx
- B. Windows Service
- C. console-based
- D. Windows Store app
Answer: C
Explanation:
Building Console Applications
Applications in the .NET Framework can use the System.Console class to read characters from and write characters to the console. Data from the console is read from the standard input stream, data to the console is written to the standard output stream, and error data to the console is written to the standard error output stream.
NEW QUESTION 23
The purpose of the Catch section in an exception handler is to:
- A. Conclude the execution of the application.
- B. Break out of the error handler.
- C. Execute code only when an exception is thrown.
- D. Execute code regardless of whether an exception is thrown.
Answer: C
NEW QUESTION 24
This question requires that you evaluate the underlined text to determine if it is correct.
The benefit of using a transaction when updating multiple tables is that the update cannot fail.
Select the correct answer if the underlined text does not make the statement correct. Select "No change is needed" if the underlined text makes the statement correct.
- A. No change is needed
- B. succeeds or fails as a unit
- C. finishes as quickly as possible
- D. can be completed concurrently with other transactions
Answer: B
Explanation:
The benefit of using a transaction when updating multiple tables is that the update succeeds or fails as a unit.
NEW QUESTION 25
......
P.S. 2passeasy now are offering 100% pass ensure 98-361 dumps! All 98-361 exam questions have been updated with correct answers: https://www.2passeasy.com/dumps/98-361/ (276 New Questions)