Microsoft MTA Software Development Fundamentals - 98-361 FREE EXAM DUMPS QUESTIONS & ANSWERS

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?
Correct Answer: B Vote an answer
You are developing a Windows application.
The user needs to work with multiple windows of the application at the same time and needs a simplified interface.
The application needs to be compatible with different display configurations, such as multiple monitors.
Which of the following interfaces should you create?
Correct Answer: D Vote an answer
You are planning to develop a new software system for your organization.
Someone needs to be responsible for developing system manuals and help files.
Which of the following participants should you identify for this task?
Correct Answer: D Vote an answer
You need to evaluate the following expression:
(A>B) AND (C<D)
What is the value of this expression if A=3, B=4, C=4, and D=5?
Correct Answer: E Vote an answer
Explanation: Only visible for FreeCram members. You can sign-up / login (it's free).
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?
Correct Answer: D Vote an answer
Explanation: Only visible for FreeCram members. You can sign-up / login (it's free).
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?
Correct Answer: A Vote an answer
You are designing a database for your company and are reviewing the normalization for the database tables.
You review the following Customer table:

Which of the following statements is true?
Correct Answer: C Vote an answer
You create an object of type ANumber.
The class is defined as follows.

What is the value of _number after the code is executed?
Correct Answer: A Vote an answer
Which language was designed for the primary purpose of querying data, modifying data, and managing databases in a Relational Database Management System?
Correct Answer: B Vote an answer
Explanation: Only visible for FreeCram members. You can sign-up / login (it's free).
The application you are developing needs to write data to a flat file that include items such as a five-digit integer key, followed by a 20-character customer name, followed by two date and time fields.
Your solution should be as fast as possible and should create smallest size data file.
Which of the following classes should you use?
Correct Answer: A Vote an answer
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?
Correct Answer: E Vote an answer
Explanation: Only visible for FreeCram members. You can sign-up / login (it's free).
You need to create a property in a class.
Consumers of the class must be able to read the values of the property.
Consumers of the class must be prevented from writing values to the property.
Which property procedure should you include?
Correct Answer: A Vote an answer
You are reviewing a C# program.
The program contains the following class:
public struct Rectangle
{
public double Length {get; set;
public double Width { get; set; }
}
The program executes the following code as part of the Main method:
Rectangle r1, r2;
r1 = new Rectangle { Length = 10.0, Width = 20.0 };
r2 = r1;
r2.Length = 30;
Console.WriteLine(r1.Length);
What will be the output when this code is executed?
Correct Answer: B Vote an answer
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?
Correct Answer: B Vote an answer
0
0
0
10