Examination 98-361 is among the most highly valued as well as asked assessment in buying it niche. To this unique process assessment 98-361 isnt simple although with the support you will straightforward 98-361 in a very earliest possibility. The professionals who want to often be competent of their industries and get a prefer to reach on the maximum associated with ability as well as good results they normally use different official certifications qualifications thats why. Practice qualifications 98-361 happen to be genuine certification in which warranty your own firms you are highly trained, competent, as well as regular.
Q1. 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?
A. The Customer table meets the requirements for the first normal form.
B. It meets the requirements for the second normal form.
C. It meets the requirements for the third normal form.
D. It is not normalized.
Answer: D
Q2. You have completed developing several major features of a new software application. You plan to provide an early look at the product to important customers to gather some early feedback. Your application still misses features and you haven’t yet optimized the application for performance and security. Which kind of testing should you perform with a limited number of important customers?
A. white-box testing
B. black-box testing
C. alpha testing
D. beta testing
Answer: C
Q3. You are planning to develop a new software system for your organization. You need to review the plan for packaging, deployment, delivery, and support for the software. Which of the following should you contact?
A. quality assurance manager
B. release manager
C. technical architect
D. database administrator
Answer: B
Q4. You need to display specific messages to users when their browser is not running JavaScript. Which of the following code segment should you use?
A. <script runat="server"> ... </script>
B. <script> ... </script>
C. <% ... %>
D. <noscript> ... </noscript>
Answer: D
Q5. You are developing an ASP.NET appilcation using C#. You create a code-behind class named Status that contains the business logic. This class is under the namespace Northwind and is stored in a file named status. aspx.cs. You need to writebthe user interface code that uses this class. Whitch of the following cod segments should you use?
A. <% Page Language="c#" Codebehined="status.aspx.cs" ClassName="Northwind.Status"%>
B. <% Page Language="c#" Codebehined="status.aspx.cs" Inherits="Northwind.Status" %>
C. <% Page Language="c#" Src="status.aspx.aspx.cs" Inherits="Northwind.Status" %>
D. <% Page Language="c#" Src="status.aspx.aspx.cs" ClassName="Northwind.Status" %>
Answer: C
Q6. You are C# developer who is developing a Windows application. You write the following code:
Object o;
Later in the code, you need to assign the value in the variable o to an object of Rectangle type. You expect that at runtime the value in the variable o is compatible with the Rectangle class. However, you need to make sure that no exceptions are raised when the value is assigned. Which of the following code should you use?
A. Rectangle r = (Rectangle) o;
B. Rectangle r = o;
C. Rectangle r = o as Rectangle;
D. Rectangle r = o is Rectangle;
Answer: D
Q7. You are in the process of developing a new software application. As defects are reported, you take the necessary steps to fix them. You need to make sure that each new fix doesn’t break anything that was previously working. Which type of testing should you use?
A. integration testing
B. system testing
C. acceptance testing
D. regression testing
Answer: D
Q8. You are creating a new class named Sphere derived from the Shape class. The Shape class has the following code:
class Shape
{
public virtual void Area()
{
// additional code...
}
}
The Area method in the Shape class should provide new functionality but also hide the Shape class implementation of the Area method. Which code segment should you use to accomplish this?
A. class Sphere : Shape
{
public override void Area()
{
// additional code ...
}
}
B. class Sphere : Shape
{
public new void Area()
{
// additional code ...
}
}
C. class Sphere : Shape
{
public virtual void Area()
{
// additional code ...
}
}
D. class Sphere : Shape
{
public static void Area()
{
// additional code ...
}
}
Answer: B
Q9. You are developing an application that receives orders over the Internet via Electronic Data Interface (EDI).
The application needs to run constantly the background and wait for orders. There is no user interface. The application writes messages to the Windows application event log. The application must continue to run even after a user logs off from the computer. Which type of application should you develop for this requirement?
A. Windows Service application
B. Windows Forms application
C. console application
D. Web application
Answer: A
Q10. You are developing a new Windows service application that process orders. The system administrator must be able to suspend order processing while maintenance operations are in progress. When maintenance operations are completed, order processing must be resumed without the loss in any information. How should you configure this Windows service?
A. Override the OnPause method of the ServiceBase class.
B. Set the CanPauseAndContinue property of the service to true.
C. Set the CanPauseAndContinue property of the service to false.
D. Override the OnContinue method of the ServiceBase class.
Answer: B