You are using the Microsoft Visual Studio 2005 IDE to examine the output of a method that returns a string.

You are using the Microsoft Visual Studio 2005 IDE to examine the output of a method that
returns a string. You assign the output of the method to a string variable named fName. You need
to write a code segment that prints the following on a single line The message: "Test Failed: " The
value of fName if the value of fName does not equal "Braindumps" You also need to ensure that
the code segment simultaneously facilitates uninterrupted execution of the application. Which
code segment should you use?

A. Debug.Assert(fName == “Braindumps”, “Test Failed: ”, fName);
B. Debug.WriteLineIf(fName != “Braindumps”, fName, “Test Failed”);
C. if (fName != "Braindumps") {
    Debug.Print(“Test Failed: ”);
    Debug.Print(fName);
    }
D. if (fName != "Braindumps") {
    Debug.WriteLine(“Test Failed: ”);
    Debug.WriteLine (fName);
    }


Answer: B

No comments:

Post a Comment