You need to write a code segment that performs the following tasks: ? Retrieves the name of each paused service. ? Passes the name to the Add method of Collection1. Which code segment should you use?

You need to write a code segment that performs the following tasks: ?
Retrieves the name of each paused service. ?
Passes the name to the Add method of Collection1. Which code segment should you use?

A. Dim searcher As ManagementObjectSearcher = _New ManagementObjectSearcher( _
    "Select * from Win32_Service where State = 'Paused'")For Each svc As
    ManagementObject In searcher.Get()
    Collection1.Add(svc("DisplayName"))Next
B. Dim searcher As ManagementObjectSearcher = _New ManagementObjectSearcher ( _
    "Select * from Win32_Service", "State = 'Paused'")For Each svc As ManagementObject
    In searcher.Get()
    Collection1.Add(svc("DisplayName"))Next
C. Dim searcher As ManagementObjectSearcher = _ New ManagementObjectSearcher( _
    "Select * from Win32_Service")For Each svc As ManagementObject In searcher.Get()
    If svc("State").ToString() = "'Paused'" Then
    Collection1.Add(svc("DisplayName"))
    End IfNext
D. Dim searcher As New ManagementObjectSearcher()searcher.Scope = New
    ManagementScope("Win32_Service")For Each svc As ManagementObject In
    searcher.Get()
    If svc("State").ToString() = "Paused" Then
    Collection1.Add(svc("DisplayName"))
    End IfNext

Answer: A



 

No comments:

Post a Comment