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
TODO: Spellcheck
PragC6Q6: What four capabliites should a test harness include?
Answer:
- A standard way to specifiy setup and clean up.
- A method for selecting individual tests or all avaliable tests.
- A means of analysing output for expected (or unexpexted) results.
- A standardised form of failure reporting.
TODO: Spellcheck
PragC6Q7: What should be done at the end of any debugging session?
Answer: Formailise any ad hoc tests into unit tests.
TODO: Spellcheck
C4L3Q4: Which list is a dictionary?
Answer: SortedList
TODO: Spellcheck
C8L3Q11: What should a service name be and how is it set?
Answer: A service name should be unique and is set by modifying the ServiceBase.ServiceName property in Visual Studio's service Designer.
TODO: Spellcheck
C8L3Q12: What must a service's OnStart method do?
Answer: Return.
TODO: Spellcheck
C8L3Q13: What are three ways to stop or start a service?
Answer:
- Use Computer Management's Services sanp-in.
- Use the Net command from a command line.
- Programatically, by using the ServiceProcess.ServiceController class.