This is an old revision of the document!
Table of Contents
Study Questions - Audio Creation
CDEx Settings
Bitrate = 80 kbps
Mono
Quality = Very high (q = 0)
Questions To Be Recorded
C10L4Q8: What industry standard does the WMI use to represent systems, processes, networks, devices and enterprise components?
Answer: Common Information Model
C10L4Q9: The WMI architecture consists of what three tiers?
Answer:
- Client software components.
- The object manager.
- Provider software components.
C10L4Q10: What three things can applications use the WMI for?
Answer:
- Enumerating or retrieving a collection of instance property data.
- Querying for selected instance data.
- Subscribing to events.
C10L4Q11: What can the WMI instrumentation be used for?
Answer: Applications can create their own class and instances with properties and methods that store data about themselves to WMI.
C10L4Q12: What class or classes are used when gathering WMI class information?
Answer: ManagementObject and ManagementClass.
C10L4Q13: What class or classes are used when querying for data with WMI?
Answer: SelectQuery, ManagementObjectSearcher, WqlObjectQuery and ObjectQuery.
C10L4Q14: What class or classes are used when querying for data asynchronously with WMI?
Answer: ManagementObjectCollection and ManagementOperationObserver.
C10L4Q15: What class or classes are used when executing methods with WMI?
Answer: ManagementBaseObject.
C10L4Q16: What class or classes are used when executing methods asynchronously with WMI?
Answer: ManagementOperationObserver.
C10L4Q17: What class or classes are used when receiving events from WMI?
Answer: WqlEventQuery and ManagementEventWatcher.
C10L4Q18: What class or classes are used when receiving events asynchronously from WMI?
Answer: EventArrivedEventArgs, EventArrivedEventHandler, CompletedEventArgs and CompletedEventHandler.
C10L4Q19: What class or classes are used when connecting to a remote computer with WMI?
Answer: ConnectionOptions and ManagementScope.
C10L4Q20: What class or classes are used when creating data providers with WMI instrumentation?
Answer: Instance, InstrumentationClassAttribute and InstrumentedAttribute.
C10L4Q21: What class or classes are used when creating event providers with WMI instrumentation?
Answer: BaseEvent and Instrumentation.
C10L4Q22: What class or classes are used when registering a providers with WMI instrumentation?
Answer: ManagementInstaller.