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/07 01:34] 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 ==-- */ /* --== Answer Question separator ==-- */
  
-** C13L1Q7When generating metadata from a type library, what is the resulting assembly called? **+/Added 20117012 *
 + 
 +** WebC2L1Q2What must an HTML server control be located inside to operate correctly? **
  
 /* --== Question Answer separator ==-- */ /* --== Question Answer separator ==-- */
  
-Answer: An interop assembly.+Answer: A form element that has the //runat="server"// attribute.
  
 /* --== Answer Question separator ==-- */ /* --== Answer Question separator ==-- */
  
-** C13L1Q8: What are the four options for generating an interop assembly containing type metadata? **+/Added 20117012 *
 + 
 +** 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.
- +
-  * Visual Studio. +
-  * Type Library Importer (Tlbimp.exe). +
-  * The //TypeLibConverter// class. +
-  * Custom wrappers.+
  
 /* --== Answer Question separator ==-- */ /* --== Answer Question separator ==-- */
  
-** C13L1Q9: What can the //TypeLibConverter// class do that the Type Library Importer can not? **+/Added 20117012 */ 
 + 
 +** WebC2L1Q4: In which event on what object should dynamically created controls be created? **
  
 /* --== Question Answer separator ==-- */ /* --== Question Answer separator ==-- */
  
-Answer: It can convert an in-memory type library to metadata.+Answer: The Init event on the page object.
  
 /* --== Answer Question separator ==-- */ /* --== Answer Question separator ==-- */
  
-** C13L1Q10: What are the four high level steps to expose COM component to the .NET Framework? **+/Added 20117012 *
 + 
 +** WebC2L1Q5: What order are events from web page raised on the server side? **
  
 /* --== Question Answer separator ==-- */ /* --== Question Answer separator ==-- */
  
-Answer:+Answer: The event that caused the postback is processed last.
  
-  Import a type library as an assembly. +/* --== Answer Question separator ==-- */
-  Create COM types in managed code. +
-  Compile an interop project. +
-  Deploy an interop application.+
  
-===== Chapter 3: The Basic Tools ===== +/* Added 20117012 */
- +
-/* --== Answer Question separator ==-- */+
  
-** PragC3Q1: What are the three benefits of plain text? **+** WebC2L1Q6: What property on a control should be set to minimize the size of the //ViewState// data? **
  
 /* --== Question Answer separator ==-- */ /* --== Question Answer separator ==-- */
  
-Answer: +Answer: The //EnableViewState// should be set to //false//.
- +
-  * Insurance against obsolescence +
-  * Leverage +
-  * Easier testing+
  
 /* --== Answer Question separator ==-- */ /* --== Answer Question separator ==-- */
  
-** PragC3Q2: What are three situations that make tracing statements invaluable? **+/Added 20117012 *
 + 
 +** WebC2L1Q7: What are the five main page events, in the order they occur? **
  
 /* --== Question Answer separator ==-- */ /* --== Question Answer separator ==-- */
  
-Answer:+Answer: //Page_PreInit//, //Page_Init//, //Page_Load//, //Page_PreRender// and //Page_Unload//
  
-  * Concurrent processes +==== Lesson 2:  Exploring Common Web Server Controls ====
-  * Real-time systems +
-  * Event-based applications+
  
 /* --== Answer Question separator ==-- */ /* --== Answer Question separator ==-- */
  
-** C13L1Q11How are COM types that are defined in an assembly used differently from other managed types? **+/Added 20117012 *
 + 
 +** WebC2L2Q1What are two differences between the //Literal// control and the //TextBox// control? **
  
 /* --== Question Answer separator ==-- */ /* --== Question Answer separator ==-- */
  
-Answer: They aren't used differently (tricky).+Answer:
  
-/* --== Answer Question separator ==-- */+  * The //Literal// control does not support styles, themes, and skins. 
 +  The //Literal// control does not inherit from //WebControl//.
  
-** C13L1Q12How is compiling an interop project different from compiling a managed project? **+===== Chapter 3Exploring Specialized Server Controls =====
  
-/* --== Question Answer separator ==-- */ +==== Lesson 1Exploring Specialized Web Server Controls ====
- +
-AnswerIt isn't different (tricky).+
  
 /* --== Answer Question separator ==-- */ /* --== Answer Question separator ==-- */
  
-** C13L1Q13: What three things does an interop application contain? **+/Added 20110823 *
 + 
 +** WebC3L1Q1: What are the three modes of the //Literal// control? **
  
 /* --== Question Answer separator ==-- */ /* --== Question Answer separator ==-- */
  
-Answer: +Answer: //PassThrough//, //Encode// and //Transform//.
- +
-  * A .NET client assembly. +
-  * One or more interop assemblies. +
-  * One or more registered COM components.+
  
 /* --== Answer Question separator ==-- */ /* --== Answer Question separator ==-- */
  
-** C13L1Q14Where should private assemblies be installed? **+/Added 20110823 *
 + 
 +** WebC3L1Q2What is the advantage of using the //Table//, //TableRow// and //TableCell// controls over using straight HTML markup? **
  
 /* --== Question Answer separator ==-- */ /* --== Question Answer separator ==-- */
  
-Answer: The same directory as the application.+Answer: The ability to add rows and cells programmatically.
  
 /* --== Answer Question separator ==-- */ /* --== Answer Question separator ==-- */
  
-** C13L1Q15: What must a shared assembly have and where is it installed? ** +/* Added 20110824 */
- +
-/* --== Question Answer separator ==-- */ +
- +
-Answer: It must have a strong name and be installed in the Global Assembly Cache (GAC). +
- +
-/* --== Answer Question separator ==-- */+
  
-** C13L1Q16: What is a primary interop assembly? **+** WebC3L1Q3: What web control should be used if clicking on an image is required? **
  
 /* --== Question Answer separator ==-- */ /* --== Question Answer separator ==-- */
  
-Answer: A unique, vendor-supplied, strong named, interop assembly that contains type definitions (as metadata) of types implemented with COM.+Answer: //ImageButton// or //ImageMap//.
  
 {{tag>procedure study_questions}} {{tag>procedure study_questions}}
study_questions_audio_creation.1252287273.txt.gz · Last modified: 2017/01/01 19:54 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki