The only method to get accomplishment in the Microsoft Microsoft exam will be that you must obtain dependable preparatory materials. We all promise that will Pass4sure is the nearly all direct pathway toward Microsoft Microsoft 98-361 certificate. You will be victorious with entire confidence. You can have a free attempt at Pass4sure before anyone buy the actual Microsoft 98-361 exam products. The simulated tests are inside multiple-choice the same since the real exam pattern. The questions and answers made by the certified professors provide you with the knowledge of having the genuine test. 100% ensure to pass the actual Microsoft Microsoft actual test.
Q11. You are developing an order-entry application that will be used by all employees in your company. You use ASP.NET to develop this application and deploy it on the company's Internet Information Services (IIS) server. What should you install on the users computers before they can access the order-entry application?
A. .NET Framework redistributable
B. .NET Framework Software Development Kit (SDK)
C. Visual Studio Express Edition
D. Web browser
Answer: D
Q12. You are C# developer who is developing a Windows application. You develop a new class that must be accessible to all the code packaged in the same assembly. Even the classes that are in the same assembly but do not directly or indirectly inherit from this class must be able to access the code. Any code outside the assembly should not be able to access the new class. Which access modifier should you use to declare the new class?
A. public
B. protected
C. private
D. internal
Answer: C
Q13. You are developing a C# program. You write a recursive method to calculate the factorial of a number. Which of the following code segment should you use to generate correct results?
A. public static int Factorial(int n)
{
if (n == 0)
{
return 1;
}
else
{
return n * Factorial(n - 1);
}
}
B. public static int Factorial(int n)
{
if (n == 0)
{
return 1;
}
else
{
return (n – 1) * Factorial(n);
}
}
C. public static int Factorial(int n)
{
if (n == 0)
{
return n;
}
else
{
return Factorial(n - 1);
}
}
D. public static int Factorial(int n)
{
return n * Factorial(n - 1);
}
Answer: A
Q14. You need to update the Region fields for customers whose reference code is "TKY". The updated Region should be set to "Japan". Also, this change should affect only customers who live in Tokyo. Which of the following SQL statement should you use?
A. UPDATE Customers SET Region = 'Japan'
WHERE RefCode = 'TKY' AND City = 'TOKYO'
B. UPDATE Customers SET Region = 'Tokyo'
WHERE RefCode = 'TKY' AND City = 'Japan'
C. UPDATE Customers SET Region = 'Tokyo'
WHERE RefCode = 'TKY'
D. UPDATE Customers SET Region = 'Japan'
WHERE RefCode = 'TKY'
Answer: A
Q15. You are developing an ASP.NET Wep page that displays status of a shipment. You need to write some code that will change the Web page's appearance and assign values to some controls. Where should you put this code?
A. In the InitializeComponent method
B. In a method that handles the Load event
C. In a method that handles the Init event
D. In a method that handles the PreRender event
Answer: B
Q16. You are developing an application that uses the Stack data structure. You write the following code:
Stack first = new Stack(); first.Push(50); first.Push(45); first.Pop();
first.Push(11);
first.Pop();
first.Push(7);
What are the contents of the stack, from top to bottom, after these statements are executed?
A. 7, 11, 50
B. 7, 45
C. 7, 50
D. 7, 11, 45
Answer: C
Q17. You are writing code to handle events in your program. You define a delegate named PolygonHandler like this:
public delegate void PolygonHandler(Polygon p);
You also create a variable of the PolygonHandler type as follows:
PolygonHandler handler;
Later in the program, you need to add a method named CalculateArea to the method invocation list of the handler variable. The signature of the CalculateArea method matches the signature of the PolygonHandler method. Any code that you write should not affect any existing event-handling code. Given this restriction, which of the following code lines should you write?
A. handler = new PolygonHandler(CalculateArea);
B. handler = CalculateArea;
C. handler += CalculateArea;
D. handler -= CalculateArea;
Answer: C
Q18. You need to perform data validation to ensure that the input fields are not empty and the user's email address and phone numbers have been provided in the required format. You need to minimize the transmission of information across the networks. Which of the following coding approaches should you follow?
A. Use JavaScript codethat executes on the Web server
B. Use C# codethat executes on the Web server
C. Use JavaScript code thatexecutes on the browser server
D. Use C# code thatexecutes on the browser server
Answer: C
Q19. You need a Windows Form similar to the W_RecForm form that is being already used by the application. However, you need a couple of extra controls on your form that are not available on W_RecForm. You need to make sure that you accomplish this requirement with the least coding effort. In future, if the W_RecForm is enhanced, you need to make sure that those enhancements are available in your form as well. What should you do?
A. Copy the code for W_RecForm to a new form. Modify the code for the new form.
B. Use visual inheritance to inherit the new form from W_RecForm. Add the new functionality to the newcontrol.
C. Modify the code for W_RecForm. Copy the code to create a new form.
D. Convert the code in the W_RecForm to a custom control. Use the new custom control in all places.
Answer: B
Q20. You are developing a C# application. You need to decide whether to declare a class member as static. Which of the following statements is true about static members of a class?
A. You can use the this keyword reference with a static method or property.
B. Only one copy of a static field is shared by all instances of a class.
C. Static members of a class can be used only after an instance of a class is created.
D. The static keyword is used to declare members that do not belong to individual objects but to a classitself.
Answer: D