2026 New 98-361 Exam Dumps with PDF and VCE Free: https://www.2passeasy.com/dumps/98-361/
Act now and download your Microsoft 98-361 test today! Do not waste time for the worthless Microsoft 98-361 tutorials. Download Down to date Microsoft Microsoft MTA Software Development Fundamentals exam with real questions and answers and begin to learn Microsoft 98-361 with a classic professional.
Microsoft 98-361 Free Dumps Questions Online, Read and Test Now.
NEW QUESTION 1
All objects in .NET inherit from which item?
- A. a reference type
- B. the System.Type class
- C. a value type
- D. the System.Object class
Answer: D
Explanation:
The System.Object class supports all classes in the .NET Framework class hierarchy and provides low-level services to derived classes. This is the ultimate base class of all classes in the .NET Framework; it is the root of the type hierarchy.
NEW QUESTION 2
The purpose of the Finally section in an exception handler is to:
- A. Execute code regardless of whether an exception is thrown.
- B. Conclude the execution of the application.
- C. Execute code only when an exception is thrown.
- D. Break out of the error handler.
Answer: A
Explanation:
By using a finally block, you can clean up any resources that are allocated in a try block, and you can run code even if an exception occurs in the try block. Typically, the statements of a finally block run when control leaves a try statement. The transfer of control can occur as a result of normal execution, of execution of a break, continue, goto, or return statement, or of propagation of an exception out of the try statement.
NEW QUESTION 3
You are creating a variable for an application.
You need to store data that has the following characteristics in this variable:
✑ Consists of numbers and characters
✑ Includes numbers that have decimal points
Which data type should you use?
- A. String
- B. Float
- C. Char
- D. Decimal
Answer: A
Explanation:
Need a string to store characters.
NEW QUESTION 4
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 5
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 6
Class C and Class D inherit from Class B. Class B inherits from Class A. The classes have the methods shown in the following table.
All methods have a protected scope.
Which methods does Class C have access to?
- A. only m3, m4
- B. only m2, m3
- C. only ml, m3
- D. m1, m3, m3
- E. m2, m3, m4
- F. m1, m2, m3
Answer: F
NEW QUESTION 7
What is displayed when you attempt to access a Web service by using a Web browser?
- A. a listing of methods that are available in the Web service
- B. a directory listing of the Web service's application structure
- C. an error page explaining that you have accessed the Web service incorrectly
- D. a visual depiction of your preliminary connection to the Web service
Answer: A
Explanation:
The server, in response to this request, displays the Web service's HTML description page.
The Web service's HTML description page shows you all the Web service methods supported by a particular Web service. Link to the desired Web service method and enter the necessary parameters to test the method and see the XML response.
NEW QUESTION 8
In which order do the typical phases of the Software Development Life Cycle occur?
- A. Development, design, requirements gathering, and testing
- B. Design, requirements gathering, development, and testing
- C. Design, development, requirements gathering, and testing
- D. Requirements gathering, design, development, and testing
Answer: D
NEW QUESTION 9
You need to create a stored procedure that passes in a person's name and age. Which statement should you use to create the stored procedure?
- A. Option A
- B. Option B
- C. Option C
- D. Option D
Answer: B
Explanation:
Example (nvarchar and int are best here):
The following example creates a stored procedure that returns information for a specific employee by passing values for the employee's first name and last name. This procedure accepts only exact matches for the parameters passed.
CREATE PROCEDURE HumanResources.uspGetEmployees
@LastName nvarchar(50),
@FirstName nvarchar(50) AS
SET NOCOUNT ON;
SELECT FirstName, LastName, JobTitle, Department FROM HumanResources.vEmployeeDepartment
WHERE FirstName = @FirstName AND LastName = @LastName; GO
NEW QUESTION 10
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 11
You execute the following code.
What will the variable result be?
- A. 1
- B. 2
- C. 3
Answer: C
NEW QUESTION 12
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 13
Which three are valid SQL keywords? (Choose three.)
- A. GET
- B. FROM
- C. SELECT
- D. WHAT
- E. WHERE
Answer: BCE
Explanation:
Example:
SELECT * FROM CustomersWHERE Country='Mexico';
NEW QUESTION 14
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. runat= "server"
- B. redirect*="HostPag
- C. htm"
- D. AutoEventWireup="true"
- E. defaultRedirect="ServerPag
- F. htm"
Answer: A
NEW QUESTION 15
You are reviewing a design for a database. A portion of this design is shown in the exhibits. Note that you may choose either the Crow's Foot Notation or Chen Notation version of the design. (To view the Crow's Foot Notation, click the Exhibit A button. To view the Chen Notation, click the Exhibit B button. )

Which term is used to describe the Customer component?
- A. Field
- B. Entity
- C. Property
- D. Attribute
Answer: B
Explanation:
Customer is a table (entity).
NEW QUESTION 16
You have a server that limits the number of data connections.
What should you use to optimize connectivity when the number of users exceeds the number of available connections?
- A. Connection timeouts
- B. Named pipes
- C. Normalization
- D. Connection pooling
Answer: D
Explanation:
In software engineering, a connection pool is a cache of database connections maintained so that the connections can be reused when future requests to the database are required.
NEW QUESTION 17
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 18
You are designing a class for an application. You need to restrict the availability of the member variable accessCount to the base class and to any classes that are derived from the base class.
Which access modifier should you use?
- A. Protected
- B. Private
- C. Public
- D. Friend
Answer: B
NEW QUESTION 19
Which programming language is characterized as client-side, dynamic and weakly typed?
- A. JavaScript
- B. HTML
- C. ASP.NET
- D. C#
Answer: A
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 20
The following functions are defined:
What does the console display after the following line? Printer(2);
- A. 210
- B. 211
- C. 2101
- D. 2121
Answer: B
NEW QUESTION 21
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 computer that hosts the application
- C. on the Application Layer Gateway Service
- D. on the client computers
Answer: B
Explanation:
IIS is run on the web server. The web server is hosting the application.
NEW QUESTION 22
You are creating an application that presents the user with a Windows Form. Which event is triggered each time the Windows Form receives focus?
- A. Load
- B. Enter
- C. Activated
- D. paint
Answer: B
Explanation:
When you change the focus by using the mouse or by calling the Focus method, focus events of the Control class occur in the following order:
Enter GotFocus LostFocus Leave Validating Validated
NEW QUESTION 23
In your student directory database, the Students table contains the following fields:
firstName lastName emailAddress telephoneNumber
You need to retrieve the data from the firstName, lastName, and emailAddress fields for all students listed in the directory. The results must be in alphabetical order according to lastName and then firstName.
Which statement should you use?
- A. Option A
- B. Option B
- C. Option C
- D. Option D
Answer: D
Explanation:
to sort use: ORDER BY LastName, FirstName
NEW QUESTION 24
This question requires that you evaluate the underlined text to determine if it is correct.
When a base class declares a method as virtual, the method is hidden from implementation bv a derived class.
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. can be overridden with its own implementation by a derived class
- C. must be overridden in any non-abstract class that directly inherits from that class
- D. cannot be overridden with its own implementation by a derived class
Answer: B
Explanation:
The implementation of a non-virtual method is invariant: The implementation is the same whether the method is invoked on an instance of the class in which it is declared or an instance of a derived class. In contrast, the implementation of a virtual method can be superseded by derived classes. The process of superseding the implementation of an inherited virtual method is known as overriding that method.
NEW QUESTION 25
This question requires that you evaluate the underlined text to determine if it is correct.
A piece of text that is 4096 bytes or smaller and is stored on and retrieved from the client computer to maintain state is known as a ViewState.
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. cookie
- C. form post
- D. QueryString
Answer: B
Explanation:
A piece of text that is 4096 bytes or smaller and is stored on and retrieved from the client computer to maintain state is known as a Cookie.
NEW QUESTION 26
......
P.S. Easily pass 98-361 Exam with 276 Q&As Dumps-files.com Dumps & pdf Version, Welcome to Download the Newest Dumps-files.com 98-361 Dumps: https://www.dumps-files.com/files/98-361/ (276 New Questions)