User Tools

Site Tools


study_questions_audio_creation

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
study_questions_audio_creation [2009/09/22 01:26] stephenstudy_questions_audio_creation [2017/01/01 20:05] (current) – external edit 127.0.0.1
Line 1: Line 1:
 ====== Study Questions - Audio Creation ====== ====== Study Questions - Audio Creation ======
  
-===== CDEx Settings =====+===== Mp3 Conversion Settings =====
  
-Bitrate = 80 kbps +''<nowiki>lame.exe -m m -q 0 --abr 85 --noreplaygain input.wav output.mp3</nowiki>''
- +
-Mono +
- +
-Quality = Very high (0)+
  
 ===== Questions To Be Recorded ===== ===== Questions To Be Recorded =====
  
-/* --== Answer Question separator ==-- */ 
- 
-/* Added 20090921 */ 
- 
-** C10L4Q8: What industry standard does the WMI use to represent systems, processes, networks, devices and enterprise components? ** 
- 
-/* --== Question Answer separator ==-- */ 
- 
-Answer: Common Information Model 
  
 /* --== Answer Question separator ==-- */ /* --== Answer Question separator ==-- */
  
-/* Added 20090921 */+/* Added 20117012 */
  
-** C10L4Q9The WMI architecture consists of what three tiers? **+** WebC2L1Q2What must an HTML server control be located inside to operate correctly? **
  
 /* --== Question Answer separator ==-- */ /* --== Question Answer separator ==-- */
  
-Answer: +Answer: A form element that has the //runat="server"// attribute.
- +
-  * Client software components. +
-  * The object manager. +
-  * Provider software components.+
  
 /* --== Answer Question separator ==-- */ /* --== Answer Question separator ==-- */
  
-/* Added 20090921 */+/* Added 20117012 */
  
-** C10L4Q10: What three things can applications use the WMI for? **+** WebC2L1Q3: What are the three methods of setting the properties of an HTML control? **
  
 /* --== Question Answer separator ==-- */ /* --== Question Answer separator ==-- */
  
-Answer: +Answer: Source view, design view and programmatically in code.
- +
-  * Enumerating or retrieving a collection of instance property data. +
-  * Querying for selected instance data. +
-  * Subscribing to events.+
  
 /* --== Answer Question separator ==-- */ /* --== Answer Question separator ==-- */
  
-/* Added 20090921 */+/* Added 20117012 */
  
-** C10L4Q11What can the WMI instrumentation be used for? **+** WebC2L1Q4In which event on what object should dynamically created controls be created? **
  
 /* --== Question Answer separator ==-- */ /* --== Question Answer separator ==-- */
  
-Answer: Applications can create their own class and instances with properties and methods that store data about themselves to WMI.+Answer: The Init event on the page object.
  
 /* --== Answer Question separator ==-- */ /* --== Answer Question separator ==-- */
  
-/* Added 20090921 */+/* Added 20117012 */
  
-** C10L4Q12: What class or classes are used when gathering WMI class information? **+** WebC2L1Q5: What order are events from a web page raised on the server side? **
  
 /* --== Question Answer separator ==-- */ /* --== Question Answer separator ==-- */
  
-Answer: //ManagementObject// and //ManagementClass//.+Answer: The event that caused the postback is processed last.
  
 /* --== Answer Question separator ==-- */ /* --== Answer Question separator ==-- */
  
-/* Added 20090921 */+/* Added 20117012 */
  
-** C10L4Q13: What class or classes are used when querying for data with WMI? **+** WebC2L1Q6: What property on a control should be set to minimize the size of the //ViewState// data? **
  
 /* --== Question Answer separator ==-- */ /* --== Question Answer separator ==-- */
  
-Answer: //SelectQuery////ManagementObjectSearcher//, //WqlObjectQuery// and //ObjectQuery//.+Answer: The //EnableViewState// should be set to //false//.
  
 /* --== Answer Question separator ==-- */ /* --== Answer Question separator ==-- */
  
-/* Added 20090921 */+/* Added 20117012 */
  
-** C10L4Q14: What class or classes are used when querying for data asynchronously with WMI? **+** WebC2L1Q7: What are the five main page events, in the order they occur? **
  
 /* --== Question Answer separator ==-- */ /* --== Question Answer separator ==-- */
  
-Answer: //ManagementObjectCollection// and //ManagementOperationObserver//.+Answer: //Page_PreInit//, //Page_Init//, //Page_Load//, //Page_PreRender// and //Page_Unload//
  
-/* --== Answer Question separator ==-- */ +==== Lesson 2 Exploring Common Web Server Controls ====
- +
-/* Added 20090921 */ +
- +
-** C10L4Q15What class or classes are used when executing methods with WMI? ** +
- +
-/* --== Question Answer separator ==-- */ +
- +
-Answer: //ManagementBaseObject//.+
  
 /* --== Answer Question separator ==-- */ /* --== Answer Question separator ==-- */
  
-/* Added 20090921 */+/* Added 20117012 */
  
-** C10L4Q16: What class or classes are used when executing methods asynchronously with WMI? **+** WebC2L2Q1: What are two differences between the //Literal// control and the //TextBox// control? **
  
 /* --== Question Answer separator ==-- */ /* --== Question Answer separator ==-- */
  
-Answer: //ManagementOperationObserver//.+Answer:
  
-/* --== Answer Question separator ==-- */+  * The //Literal// control does not support styles, themes, and skins. 
 +  The //Literal// control does not inherit from //WebControl//.
  
-/* Added 20090921 */+===== Chapter 3: Exploring Specialized Server Controls =====
  
-** C10L4Q17: What class or classes are used when receiving events from WMI? ** +==== Lesson 1Exploring Specialized Web Server Controls ====
- +
-/* --== Question Answer separator ==-- */ +
- +
-Answer//WqlEventQuery// and //ManagementEventWatcher//.+
  
 /* --== Answer Question separator ==-- */ /* --== Answer Question separator ==-- */
  
-/* Added 20090921 */+/* Added 20110823 */
  
-** C10L4Q18: What class or classes are used when receiving events asynchronously from WMI? **+** WebC3L1Q1: What are the three modes of the //Literal// control? **
  
 /* --== Question Answer separator ==-- */ /* --== Question Answer separator ==-- */
  
-Answer: //EventArrivedEventArgs//, //EventArrivedEventHandler//, //CompletedEventArgs// and //CompletedEventHandler//+Answer: //PassThrough//, //Encode// and //Transform//.
- +
-/* --== Answer Question separator ==-- */ +
- +
-/* Added 20090921 */ +
- +
-** C10L4Q19: What class or classes are used when connecting to a remote computer with WMI? ** +
- +
-/* --== Question Answer separator ==-- */ +
- +
-Answer: //ConnectionOptions// and //ManagementScope//+
- +
-/* --== Answer Question separator ==-- */ +
- +
-/* Added 20090921 */ +
- +
-** C10L4Q20: What class or classes are used when creating data providers with WMI instrumentation? ** +
- +
-/* --== Question Answer separator ==-- */ +
- +
-Answer: //Instance//, //InstrumentationClassAttribute// and //InstrumentedAttribute//+
- +
-/* --== Answer Question separator ==-- */ +
- +
-/* Added 20090921 */ +
- +
-** C10L4Q21: What class or classes are used when creating event providers with WMI instrumentation? ** +
- +
-/* --== Question Answer separator ==-- */ +
- +
-Answer: //BaseEvent// and //Instrumentation//+
- +
-/* --== Answer Question separator ==-- */ +
- +
-/* Added 20090921 */ +
- +
-** C10L4Q22: What class or classes are used when registering a providers with WMI instrumentation? ** +
- +
-/* --== Question Answer separator ==-- */ +
- +
-Answer: //ManagementInstaller//+
- +
-/* --== Question Answer separator ==-- */ +
- +
-Answer: //ManagementInstaller//+
- +
-/* --== Answer Question separator ==-- */ +
- +
-/* Added 20090922 */ +
- +
-** C10L4Q23: What does the //ObjectQuery// class do? ** +
- +
-/* --== Question Answer separator ==-- */ +
- +
-Answer: It represents a management query that returns instances or classes. +
- +
-/* --== Answer Question separator ==-- */ +
- +
-/* Added 20090922 */ +
- +
-** C10L4Q24: What does the //ManagementObjectSearcher// class do? ** +
- +
-/* --== Question Answer separator ==-- */ +
- +
-Answer: It retrieved a collection of management objects based on a specifies query. +
- +
-/* --== Answer Question separator ==-- */ +
- +
-/* Added 20090922 */ +
- +
-** C10L4Q25: What does the //ManagementObjectCollection// class do? ** +
- +
-/* --== Question Answer separator ==-- */ +
- +
-Answer: It represents different collections of management objects retrieved through WMI. +
- +
-/* --== Answer Question separator ==-- */ +
- +
-/* Added 20090922 */ +
- +
-** C10L4Q26: Objects contained in a //ManagementObjectCollection// are derived from what type? ** +
- +
-/* --== Question Answer separator ==-- */ +
- +
-Answer: //ManagementBaseObject//+
- +
-/* --== Answer Question separator ==-- */ +
- +
-/* Added 20090922 */ +
- +
-** C8L3Q8: What are three methods for starting a Windows service? ** +
- +
-/* --== Question Answer separator ==-- */ +
- +
-Answer: +
- +
-  * Server Explorer. +
-  * Services Control Manager. +
-  * Programmatically using the //ServiceController// class.+
  
 /* --== Answer Question separator ==-- */ /* --== Answer Question separator ==-- */
  
-/* Added 20090922 */+/* Added 20110823 */
  
-** C8L3Q9: What exception will a //ServiceController// object throw if the service name does not exist on the machine? **+** WebC3L1Q2: What is the advantage of using the //Table//, //TableRow// and //TableCell// controls over using straight HTML markup? **
  
 /* --== Question Answer separator ==-- */ /* --== Question Answer separator ==-- */
  
-Answer: //InvalidOperationException//.+Answer: The ability to add rows and cells programmatically.
  
 /* --== Answer Question separator ==-- */ /* --== Answer Question separator ==-- */
  
-/* Added 20090922 */+/* Added 20110824 */
  
-** C8L3Q10: What class is used to interact with Window services? **+** WebC3L1Q3: What web control should be used if clicking on an image is required? **
  
 /* --== Question Answer separator ==-- */ /* --== Question Answer separator ==-- */
  
-Answer: //ServiceController//.+Answer: //ImageButton// or //ImageMap//.
  
 {{tag>procedure study_questions}} {{tag>procedure study_questions}}
study_questions_audio_creation.1253582805.txt.gz · Last modified: 2017/01/01 19:54 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki