free tk testking actualtest testinside for microsoft mcse 70-298 vce
- Tuesday, May 6, 2008, 7:56
- Cert Tests
- 30 views
- Add a comment
Microsoft 70-298 Exam
Exam 70-298: Designing Security for a Windows Server 2003 Network
The Microsoft Certified Systems Engineer (MCSE) on Windows Server 2003 credential is intended for IT professionals who work in the typically complex computing environment of medium to large companies. An MCSE candidate should have at least one year of experience implementing and administering a network operating system in environments that have the following characteristics:
• 250 to 5,000 or more users
• Three or more physical locations
• Three or more domain controllers
• Network services and resources such as messaging, database, file and print, proxy server, firewall, Internet, intranet, remote access, and client computer management
• Connectivity requirements such as connecting branch offices and individual users in remote locations to the corporate network and connecting corporate networks to the Internet
In addition, an MCSE candidate should have at least one year of experience in the following areas:
• Designing a network infrastructure
• Implementing and administering a desktop operating system
When you pass the Designing Security for a Windows Server 2003 Network exam, you achieve Microsoft Certified Professional (MCP) status. You also earn credit toward the following certifications:
• Core credit toward Microsoft Certified Systems Engineer (MCSE) on Windows Server 2003 certification
• Core credit toward Microsoft Certified Systems Engineer (MCSE): Security on Windows Server 2003 certification
Exam Topics Include:
• Creating the Conceptual Design for Network Infrastructure Security by Gathering and Analyzing Business and Technical Requirements
• Creating the Logical Design for Network Infrastructure Security
• Creating the Physical Design for Network Infrastructure Security
• Designing an Access Control Strategy for Data
• Creating the Physical Design for Client Infrastructure Security
QUESTION 1
You develop a Visual Studio .NET application that contains a function named
Certkiller Update. For debugging purposes, you need to add an entry to a log file
whenever Certkiller Update is executed. The log file is named DebugLog.txt. For
maximum readability, you must ensure that each entry in DebugLog.txt appears on
a separate line.
Which code segment should you use?
A. Dim oWriter As New IO.StreamWriter(IO.File.Open _
(logFile, IO.FileMode.Append))
Dim oListener As New _
TextWriterTraceListener(oWriter)
Debug.Listeners.Add(oListener)
Debug.WriteLine(” Certkiller Update ” & Now)
B. Dim oWriter As New IO.StreamWriter(IO.File.Open _
(logFile, IO.FileMode.Append))
Dim oListner As New _
TextWriterTraceListener(oWriter)
Debug.Listeners.Add(oListener)
Debug.Write(” Certkiller Update ” & Now)
C. Dim oListener As New TextWriterTraceListener()
oListener.Name = logFile
Debug.Listeners.Add(oListener)
Actualtests.org – The Power of Knowing
Debug.WriteLine(” Certkiller Update ” & Now)
D. Dim oListener As New TextWriterTraceListener()
oListener.Name = logFile
Debug.Listeners.Add(oListener)
Debug.Write(” Certkiller Update ” & Now)
Answer: A, C
You wanted to ensure that each entry in the debuglog.text apprears on a separate line.
This indicates that C is true, not D.
QUESTION 2
You work as a software developer at Certkiller .com. You develop a Windows-based
application that processes customer data from a database. Your customer service
representative will use the application to view or edit customer data.
One procedure in your application calls a function named ProcessCustomer. You
want to add code to your application to record error information and performance
data relating to ProcessCustomer. This information must be recorded in a log file
named InfoLog.txt on the computer that executes the application. In addition, you
want to be able to enable and disable logging without recompiling your application,
and you want the option of logging error information only, or of logging both error
information and performance data.
Which code segment should you use?
A. Dim oLog As New EventLog()
Dim oType As EventLogEntryType
Try
If Not EventLog.SourceExists(“CustPerformance”) Then
EventLog.CreateEventSource(“CustPerformance”, _
“Application”)
End If
oLog.source = “CustPerformance”
oLog.Log = “Application”
oType = EventLogEntryType.Information
oLog.WriteEntry(“Before ProcessCustomer() ” _
& Now, oType)
ProcessCustomer()
If not EventLog.SourceExists(“CustPerformance”) Then
EventLog.CreateEventSource(“CustPerformance”, -
“Application”)
End If
oLog.Source = “CustPerformance”
oLog.Log = “Application”
oType = EventLogEntryType.Information
oLog.WriteEntry(“After ProcessCustomer() ” _
& Now, oType)
Actualtests.org – The Power of Knowing
Catch oEx As Exception
If Not EventLog.SourceExists(“CustErrors”) Then
EventLog.CreateEventSource(“CustErrors”, _
“Application”)
End If
oLog.Source = “CustErrors”
oLog.Log = “Application”
oType = EventLogEntryType.Error
oLog.WriteEntry(“Error details: ” & _
oEx.Message, oType)
End Try
B. #Const MySwitch As Long
Dim 1FH As Long
1FH = FreeFile()
Open logFIle For Append As #1FH
Try
#If MySwitch = 4 Then
Print #1FH, “Before ProcessCustomer() ” & Now
#End If
ProcessCustomer()
#If MySwitch = 4 Then
Print #1FH, “After ProcessCustomer() ” & Now
#End If
Catch oEx As Exception
#If MySwitch = 1 Then
Print #1FH, oEx.Message
#End If
Close #1FH
End Try
C. Dim oWriter As New _
IO.StreamWriter(IO.File.Open(logFile, _
IO.FileMode.Append))
Dim oListener As New TextWriterTraceListener(oWriter)
Dim oSwitch As New TraceSwitch(“MySwitch”, _
“My TraceSwitch”)
Trace.Listeners.Add(oListner)
Try
Trace.WriteLineIf(oSwitch.TraceVerbose,_
“Before ProcessCustomer() ” & Now)
ProcessCustomer()
Trace.WriteLineIf(oSwitch.TraceVerbose, _
“After ProcessCustomer() ” & Now)
Catch oEx As Exception
Trace.WriteLineIf(oSwitch.TraceError, _
oEx.Message)
Finally
Actualtests.org – The Power of Knowing
oWriter.Close()
oWriter = Nothing
End Try
D. Dim oWriter As New _
IO.StreamWriter(IO.File.Open(logFile, _
IO.FileMode.Append))
Dim oListener As New TextWriterTraceListener(oWriter)
Dim oSwitch As New TraceSwitch(“MySwitch”, _
“My TraceSwitch”)
Debug.Listeners.Add(oListener)
Try
Debug.WriteLineIf(oSwitch.TraceVerbose, _
“Before ProcessCustomer() ” & Now)
ProcessCustomer()
Debug.WriteLineIf(oSwitch.TraceVerbose, _
“After ProcessCustomer() ” & Now)
Catch oEx As Exception
Debug.WriteLineIf(oSwitch.TraceError, _
oEx.Message)
Finally
oWriter.Close()
oWriter = Nothing
End Try
Answer: C
QUESTION 3
You use Visual Studio .NET to create a customer database application for Certkiller .
Your application contains the following code segment. (Line numbers are included
for reference only)
00 Dim oCustomer as Customer
01 for each oCustomer in oCompany.Customers
02 decPostage = CalculatePostage(oCustomer)
03 Next
When you debug your application, you discover that the CalculatePostage function
sometimes produces incorrect results. You suspect that a problem in one of the
property values of oCustomer might be causing the error.
oCustomer includes a property named Region that contains the name of the
geographical region where the customer resides. The Customers collection of
oCompany is sorted by region. As quickly as possible, you need to step through
CalculatePostage each time the Region property of oCustomer changes to a new
value.
What should you do?
A. Set a breakpoint on line 1. Step through the code after the breakpoint is reached.
Microsoft 70-298
Practice exams in VCE format:
Files from PDF Store available for converting:
| File | Size | Last Modified |
| Microsoft ActualTests 70-298 v10.31.06.pdf | 1.4 MB | 12-Feb-2007 |
Free download:pass4sure Microsoft 70-298
Free download:testking Microsoft 70-298
password:www.certbible.org
High quality IT Certification Training Exam Questions, Study Guides and Practice Tests are in Downloadable PassGuide Testing Engine,Successful for IT Certification or Full Refund for you.Contact Us:Sales@PassGuide.com|
Type |
Exam Bible | New Questions & Answers |
Latest Updated |
Download link |
| All Certbible 's Exam Dumps |
597 |
1 days ago | Available |
PassGuide Training Materials & Practice Tests
About the Author
Write a Comment
Gravatars are small images that can show your personality. You can get your gravatar for free today!

