Free Microsoft 98-361 Practice Test & Real Exam Questions
In your application, you are using a queue data structure to manipulate information.
You need to find whether a data item exists in the queue, but you don't want to actually process that data item yet.
Which of the following queue operations will you use?
You need to find whether a data item exists in the queue, but you don't want to actually process that data item yet.
Which of the following queue operations will you use?
Correct Answer: D
Vote an answer
Hotspot Question
You open the Internet Information Services 7.5 Manager console as shown in the following exhibit:

You need to examine the current configuration of the server W2008R2.
Use the drop-down menus to select the answer choice that answers each question.
Each correct selection is worth one point.

You open the Internet Information Services 7.5 Manager console as shown in the following exhibit:

You need to examine the current configuration of the server W2008R2.
Use the drop-down menus to select the answer choice that answers each question.
Each correct selection is worth one point.

Correct Answer:

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?
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?
Correct Answer: D
Vote an answer
What are the three basic states that a Windows service can be in? (Choose three.)
Correct Answer: C,D,E
Vote an answer
Explanation: Only visible for Pass4Leader members. You can sign-up / login (it's free).
You are studying various sorting algorithms to understand, analyze, and compare the various sorting techniques.
Which of the following techniques should you utilize when using the BubbleSort algorithm?
Which of the following techniques should you utilize when using the BubbleSort algorithm?
Correct Answer: B
Vote an answer
Which programming language is characterized as client-side, dynamic and weakly typed?
Correct Answer: D
Vote an answer
You are creating an application for computers that run Windows XP or later.
This application must run after the computer starts.
The user must not be aware that the application is running.
The application performs tasks that require permissions that the logged-in user does not have.
Which type of application allows this behavior?
This application must run after the computer starts.
The user must not be aware that the application is running.
The application performs tasks that require permissions that the logged-in user does not have.
Which type of application allows this behavior?
Correct Answer: C
Vote an answer
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?
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?
Correct Answer: A
Vote an answer
You are writing a C# program.
You write the following method:
public static void TestSwitch(int op1, int op2, char opr)
{
int result;
switch (opr)
{
case '+':
result = op1 + op2;
case '-':
result = op1 - op2;
case '*':
result = op1 * op2;
case '/':
result = op1 / op2;
default:
Console.WriteLine("Unknown Operator");
return;
}
Console.WriteLine("Result: {0}", result);
return;
}
However, when you compile this code, you get the following error message:
Control cannot fall through from one case label to another
How should you modify the code to make sure that it compiles successfully?
You write the following method:
public static void TestSwitch(int op1, int op2, char opr)
{
int result;
switch (opr)
{
case '+':
result = op1 + op2;
case '-':
result = op1 - op2;
case '*':
result = op1 * op2;
case '/':
result = op1 / op2;
default:
Console.WriteLine("Unknown Operator");
return;
}
Console.WriteLine("Result: {0}", result);
return;
}
However, when you compile this code, you get the following error message:
Control cannot fall through from one case label to another
How should you modify the code to make sure that it compiles successfully?
Correct Answer: C
Vote an answer
