we provide Realistic Microsoft 98-361 exams which are the best for clearing 98-361 test, and to get certified by Microsoft Microsoft MTA Software Development Fundamentals. The 98-361 Questions & Answers covers all the knowledge points of the real 98-361 exam. Crack your Microsoft 98-361 Exam with latest dumps, guaranteed!
Check 98-361 free dumps before getting the full version:
NEW QUESTION 1
The purpose of the Catch section in an exception handler is to:
Answer: C
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?
Answer: A
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
You create an object of type ANumber. The class is defined as follows.
The code is executed as follows.
What is the value of number after the code is executed?
Answer: D
NEW QUESTION 4
HOTSPOT
For each of the following statements, select Yes if the statement is true. Otherwise, select No. Each correct selection is worth one point.
Answer: A
Explanation:
NEW QUESTION 5
You are reviewing a design for a database. A portion of this design is shown in the exhibit. Note that you may choose to view 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 relationship between Customer and Order?
Answer: B
Explanation:
A customer can have many orders.
NEW QUESTION 6
In this XHTML code sample, what will cause an error?
Answer: A
Explanation:
In XHTML, the <br> tag must be properly closed, like this: <br />.
NEW QUESTION 7
You need to ensure the data integrity of a database by resolving insertion, update, and deletion anomalies.
Which term is used to describe this process in relational database design?
Answer: A
Explanation:
Database normalization is the process of organizing the fields and tables of a relational database to minimize redundancy. Normalization usually involves dividing large tables into smaller (and less redundant) tables and defining relationships between them. The objective is to isolate data so that additions, deletions, and modifications of a field can be made in just one table and then propagated through the rest of the database using the defined relationships.
NEW QUESTION 8
A class named Manager is derived from a parent class named Employee. The Manager class includes characteristics that are unique to managers.
Which term is used to describe this object-oriented concept?
Answer: A
Explanation:
Classes (but not structs) support the concept of inheritance. A class that derives from another class (the base class) automatically contains all the public, protected, and internal members of the base class except its constructors and destructors.
Incorrect:
not D: Encapsulation is sometimes referred to as the first pillar or principle of object- oriented programming. According to the principle of encapsulation, a class or struct can specify how accessible each of its members is to code outside of the class or struct. Methods and variables that are not intended to be used from outside of the class or assembly can be hidden to limit the potential for coding errors or malicious exploits.
NEW QUESTION 9
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?
Answer: D
NEW QUESTION 10
You execute the following code.
How many times will the word Hello be printed?
Answer: B
Explanation:
The % operator computes the remainder after dividing its first operand by its second. All numeric types have predefined remainder operators.
In this case the reminder will be nonzero 50 times (for i with values 1, 3, 5,..,99).
NEW QUESTION 11
HOTSPOT
For each of the following statements, select Yes if the statement is true. Otherwise, select No. Each correct selection is worth one point.
Answer: A
Explanation:
NEW QUESTION 12
HOTSPOT
You are reviewing the following class that is used to manage the results of a 5K race:
For each of the following statements, select Yes if the statement is true. Otherwise, select No. Each correct selection is worth one point.
Answer: A
Explanation:
NEW QUESTION 13
An application presents the user with a graphical interface. The interface includes buttons
that the user clicks to perform tasks. Each time the user clicks a button, a method is called that corresponds to that button.
Which term is used to describe this programming model?
Answer: D
NEW QUESTION 14
You are developing a webpage that enables students to manage races.
The webpage will display two lists: past races and upcoming races. The page also contains a sidebar with contact information and a panel with social media settings that can be edited. Race results can be shared on social media.
How many components will be on the webpage?
Answer: C
NEW QUESTION 15
You are creating an application that presents the user with a Windows Form. You need to configure the application to display a message box to confirm that the user wants to close the form.
Which event should you handle?
Answer: D
Explanation:
The Closing event occurs as the form is being closed.
NEW QUESTION 16
HOTSPOT
You are reviewing the following class that is used to manage the results of a 5K race:
For each of the following statements, select Yes if the statement is true. Otherwise, select No. Each correct selection is worth one point.
Answer: A
Explanation:
NEW QUESTION 17
This question requires that you evaluate the underlined text to determine if it is correct.
Unit testing is the final set of tests that must be completed before a feature or product can be considered finished.
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.
Answer: B
Explanation:
User acceptance testing (UAT) is the last phase of the software testing process. During UAT, actual software users test the software to make sure it can handle required tasks in real-world scenarios, according to specifications.
UAT is one of the final and critical software project procedures that must occur before newly developed software is rolled out to the market.
UAT is also known as beta testing, application testing or end user testing.
NEW QUESTION 18
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.
Answer: C
NEW QUESTION 19
You need to debug a Windows Service application by using breakpoints. What should you do?
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 20
You run the following code:
What is the value of result when the code has completed?
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 21
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.
Answer: C
NEW QUESTION 22
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?
Answer: A
NEW QUESTION 23
You are creating a Web application. The application will be consumed by client computers that run a variety of Web browsers.
Which term is used to describe the process of making the application available for client computers to access?
Answer: B
Explanation:
You host web applications.
NEW QUESTION 24
HOTSPOT
You are reviewing the following code that saves uploaded images.
For each of the following statements, select Yes if the statement is true. Otherwise, select No. Each correct selection is worth one point.
Answer: A
Explanation:
NEW QUESTION 25
......
P.S. Easily pass 98-361 Exam with 276 Q&As Surepassexam Dumps & pdf Version, Welcome to Download the Newest Surepassexam 98-361 Dumps: https://www.surepassexam.com/98-361-exam-dumps.html (276 New Questions)