This is an old revision of the document!
Study Questions - Lucy Dip Creation
1. Copy the source of the questions.
2. Run the Lucky Dip Processor.
3. Goto http://tallguyracing.com/wiki/doku.php?id=playground:playground and edit.
4. Paste from the clipboard and save it.
5. Select it (including the RSS XML Feed etc buttons).
6. Open a new document in OpenOffice and paste the contents into it.
7. Set the Zoom to 73% (so that there are two pages per screen).
8. Delete all the crap at the top.
9. Load styles → Lucky Dip, Text + Pages + Overwrite.
10. Right click table → Table… → Text Flow tab → Untick Allow row to break…
11. For each page,
11.1. Put the cursor in the last row of the page.
11.2. Click the Insert Row button lots.
11.3. Copy and paste the all the cells on the first page to the second. Note that this will overwrite the cells, so if there are not some blanks leftover, undo and go back to 17.2.
11.4. Delete the blank cells.
12. Highlight the right columns of odd pages and the left columns of the even pages (inside ones if two pages are displayed at once), change the background colour to black. Also, look for numbered bullet lists in the right column of the even pages and reset the numbering.
13. Print. Set the Input Tray to Tray 1.
Questions To Be Lucky Dipped
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.
Answer: ManagementInstaller.
C10L4Q23: What does the ObjectQuery class do?
Answer: It represents a management query that returns instances or classes.
C10L4Q24: What does the ManagementObjectSearcher class do?
Answer: It retrieved a collection of management objects based on a specifies query.
C10L4Q25: What does the ManagementObjectCollection class do?
Answer: It represents different collections of management objects retrieved through WMI.
C10L4Q26: Objects contained in a ManagementObjectCollection are derived from what type?
Answer: ManagementBaseObject.