2026 New 98-361 Exam Dumps with PDF and VCE Free: https://www.2passeasy.com/dumps/98-361/
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 Passleader 98-361 exam study guides now. We will not let you down with our money-back guarantee.
Also have 98-361 free dumps questions for you:
NEW QUESTION 1
The throw keyword is used to perform which two actions? (Choose two.)
- A. stop processing of the code
- B. move error handling to a separate thread
- C. raise exceptions
- D. re-throw exceptions as a different type
Answer: CD
Explanation:
* The Throw statement throws an exception that you can handle with structured exception-handling code (Try...Catch...Finally) or unstructured exception- handling code (On Error GoTo). You can use the Throw statement to trap errors within your code because Visual Basic moves up the call stack until it finds the appropriate exception- handling code.
* This example throws an ApplicationException exception. Throw New ApplicationException
NEW QUESTION 2
The Dog class and the Cat class inherit from the Animal class. The Animal class includes a breathe() method and a speak() method. If the speak() method is called from an object of
type Dog, the result is a bark. If the speak() method is called from an object of type Cat, the result is a meow.
Which term is used to describe this object-oriented concept?
- A. multiple inheritance
- B. encapsulation
- C. polymorphism
- D. data hiding
Answer: C
Explanation:
Polymorphism is often referred to as the third pillar of object-oriented programming, after encapsulation and inheritance. Polymorphism is a Greek word that means "many-shaped" and it has two distinct aspects:
* At run time, objects of a derived class may be treated as objects of a base class in places such as method parameters and collections or arrays. When this occurs, the object's declared type is no longer identical to its run-time type.
* Base classes may define and implement virtual methods, and derived classes can override them, which means they provide their own definition and implementation. At run- time, when client code calls the method, the CLR looks up the run-time type of the object, and invokes that override of the virtual method. Thus in your source code you can call a method on a base class, and cause a derived class's version of the method to be executed.
NEW QUESTION 3
In the application life cycle, the revision of an application after it has been deployed is referred to as:
- A. Monitoring
- B. Maintenance
- C. Unit testing
- D. Integration
Answer: B
NEW QUESTION 4
You run the following code:
What is the value of result when the code has completed?
- A. 10
- B. 20
- C. 30
Answer: B
Explanation:
The conditional-OR operator (||) performs a logical-OR of its bool operands. If the first operand evaluates to true, the second operand isn't evaluated. If the first operand evaluates to false, the second operator determines whether the OR expression as a whole evaluates to true or false.
NEW QUESTION 5
You are creating an ASP. NET Web application.
Which line of code should you use to require a control to process on the computer that hosts the application?
- A. defaultRedirect="ServerPag
- B. htm"
- C. redirect="HostPag
- D. htm"
- E. AutoEvencWireup="true"
- F. runat="server"
Answer: D
NEW QUESTION 6
You have a table named ITEMS with the following fields:
✑ ID (integer, primary key, auto generated)
✑ Description (text)
✑ Completed (Boolean)
You need to insert the following data in the table:
"Cheese", False
Which statement should you use?
- A. INSERT INTO ITEMS (ID, Description, Completed) VALUES (1, 'Cheese', 0)
- B. INSERT INTO ITEMS (Description, Completed) VALUES ('Cheese', 1)
- C. INSERT INTO ITEMS (10, Description, Completed) VALUES (NEWID(), 'Cheese', 6)
- D. INSERT INTO ITEMS (Description, Completed) VALUES ('Cheese', 0)
Answer: D
Explanation:
The string values TRUE and FALSE can be converted to bit values: TRUE is converted to 1 and FALSE is converted to 0.
Incorrect:
Not A, not C: ID is autogenerated and should not be specified.
NEW QUESTION 7
You are building a web application that enables international exchange students to schedule phone calls with their prospective schools.
The application allows students to indicate a preferred date and time for phone calls. Students may indicate no preferred time by leaving the date and time field empty. The application must support multiple time zones.
Which data type should you use to record the student's preferred date and time?
- A. uLong?
- B. DateTimeOffset?
- C. SByte
- D. Date
Answer: B
Explanation:
datetimeoffset: Defines a date that is combined with a time of a day that has time zone awareness and is based on a 24-hour clock.
Incorrect:
Date: Defines a date.
sByte: The sbyte keyword indicates an integral type that stores values in the range of -128 to 127.
NEW QUESTION 8
This question requires that you evaluate the underlined text to determine if it is correct.
The Response.Redirect method is used to transfer processing of the current page to a new page, and then return processing back to the calling page once processing of the new page has completed.
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. Server.Transfer method
- C. Server.Execute method
- D. meta http-equiv="refresh" tag
Answer: C
Explanation:
The Execute method calls an .asp file, and processes it as if it were part of the calling ASP script. The Execute method is similar to a procedure call in many programming languages.
Incorrect:
* Response.Redirect Method
The Redirect method causes the browser to redirect the client to a different URL.
* The Server.Transfer method sends all of the information that has been assembled for processing by one .asp file to a second .asp file.
NEW QUESTION 9
DRAG DROP
You are developing an application to display track and field race results.
The application must display the race results twice. The first time it must display only the winner and runner-up. The second time it must display all participants. The code used to display results is shown below.
You need to implement the Rankings() function.
Complete the function to meet the requirements. {To answer, drag the appropriate code segment from the column on the left to its location on the right. Each code segment may be used once, more than once, or not at all. Each correct match is worth one point.)
- A. Mastered
- B. Not Mastered
Answer: A
Explanation: 
NEW QUESTION 10
Two classes named Circle and Square inherit from the Shape class. Circle and Square both inherit Area from the Shape class, but each computes Area differently.
Which term is used to describe this object-oriented concept?
- A. polymorphism
- B. encapsulation
- C. superclassing
- D. overloading
Answer: A
Explanation:
You can use polymorphism to in two basic steps:
Create a class hierarchy in which each specific shape class derives from a common base class.
Use a virtual method to invoke the appropriate method on any derived class through a single call to the base class method.
NEW QUESTION 11
Where must Internet Information Services (IIS) be installed in order to run a deployed ASP. NET application?
- A. on the computer that you plan to deploy from
- B. on the client computers
- C. on the computer that hosts the application
- D. on the Application Layer Gateway Service
Answer: C
Explanation:
IIS is run on the web server. The web server is hosting the application.
NEW QUESTION 12
You are developing an application that tracks tennis matches. A match is represented by the following class:
A match is created by using the following code:
How many times is the Location property on the newly created Match class assigned?
- A. 1
- B. 2
- C. 3
Answer: C
NEW QUESTION 13
This question requires that you evaluate the underlined text to determine if it is correct. Converting an object to a more general type is called upcasting.
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. downcasting
- C. interfacing
- D. flexing
Answer: A
Explanation:
Casting up a hierarchy means casting from a derived object reference to a base object reference.
NEW QUESTION 14
What are two advantages of normalization in a database? (Choose two.)
- A. reduces schema limitations
- B. minimizes impact of data corruption
- C. decreases space used on disk
- D. prevents data inconsistencies
Answer: CD
NEW QUESTION 15
What are the three basic states that a Windows service can be in? (Choose three.)
- A. running
- B. starting
- C. halted
- D. stopped
- E. paused
Answer: BDE
Explanation:
A service can exist in one of three basic states: Running, Paused, or Stopped.
NEW QUESTION 16
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 17
This question requires that you evaluate the underlined text to determine if it is correct.
The duplication of code so that modifications can happen in parallel is known as separating.
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. branching
- C. merging
- D. splitting
Answer: B
Explanation:
When you develop applications in a team-based environment, you might need to access multiple versions of your application at the same time. If you copy one or more areas of your code into a separate branch, you can update one copy while you preserve the original version, or you can update both branches to meet different needs. Depending on your development goals, you can later merge the changes from multiple branches to create a single version that reflects all changes
NEW QUESTION 18
How does a console-based application differ from a Windows Store app?
- A. Windows Store apps do not provide a method for user input
- B. Console-based applications do not display a graphical interface.
- C. Windows Store apps can access network resources.
- D. Console-based applications require the XNA Framework to run.
Answer: B
NEW QUESTION 19
You have a class named Truck that inherits from a base class named Vehicle. The Vehicle class includes a protected method named brake ().
How should you call the Truck class implementation of the brake () method?
- A. Vehicl
- B. brake ();
- C. Thi
- D. brake ();
- E. MyBas
- F. brake();
- G. Truc
- H. brake ();
Answer: C
Explanation:
The MyBase keyword behaves like an object variable referring to the base class of the current instance of a class.MyBase is commonly used to access base class
members that are overridden or shadowed in a derived class.
NEW QUESTION 20
This question requires that you evaluate the underlined text to determine if it is correct.
When creating a site to utilize message queuing, the "IP address" must be configured to MSMQ.
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. protocol
- C. host header
- D. port
Answer: B
Explanation:
MSMQ is a messaging protocol that allows applications running on separate servers/processes to communicate in a failsafe manner.
NEW QUESTION 21
You are creating a routine that will perform calculations by using a repetition structure. You need to ensure that the entire loop executes at least once.
Which looping structure should you use?
- A. For-Each
- B. For
- C. While
- D. Do-While
Answer: D
Explanation:
In a Do..While loop the test is at the end of the structure, so it will be executed at least once.
NEW QUESTION 22
In this XHTML code sample, what will cause an error?
- A. All tags are not in uppercase.
- B. The body tag is missing a background attribute.
- C. The line break tag is incorrectly formatted.
- D. The HTML tags do not read XHTML.
Answer: C
Explanation:
In XHTML, the <br> tag must be properly closed, like this: <br />.
NEW QUESTION 23
You are designing a Windows Store application.
You need to design the application so that users can share content by connecting two or more devices by physically tapping the devices together.
Which user experience (UX) guideline for Windows Store applications should you use?
- A. Share and data exchange
- B. location-awareness
- C. device-awareness
- D. proximity gestures
Answer: A
NEW QUESTION 24
In this XHTML code sample, what will cause an error?
- A. The line break tag is incorrectly formatted.
- B. The HTML tags do not read XHTML.
- C. The body tag is missing a background attribute,
- D. All tags are not in uppercase.
Answer: A
Explanation:
In XHTML, the <br> tag must be properly closed, like this: <br />.
NEW QUESTION 25
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. in-browser
- C. dynamic
- D. server-side
Answer: :D
NEW QUESTION 26
......
100% Valid and Newest Version 98-361 Questions & Answers shared by Certleader, Get Full Dumps HERE: https://www.certleader.com/98-361-dumps.html (New 276 Q&As)