User Tools

Site Tools


study_questions_lucky_dip_creation

Differences

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

Link to this comparison view

study_questions_lucky_dip_creation [2009/08/02 21:29] – Page name changed from question_lucky_dip_creation to study_questions_lucky_dip_creation adminstudy_questions_lucky_dip_creation [2017/01/01 20:05] (current) – external edit 127.0.0.1
Line 1: Line 1:
 ====== Study Questions - Lucy Dip Creation ====== ====== Study Questions - Lucy Dip Creation ======
  
-1. Copy the source of the questions and paste into Notepad++.+1. Copy the source of the questions.
  
-2. In regular expression mode, replace+2. Run the [[lucky_dip_processor]].
  
-<code>^====+.+====$</code>+3. Goto the [[http://tallguyracing.com/wiki/doku.php?id=playground:playground|playgound]] and edit.
  
-with nothing.+4. Paste from the clipboard and save it.
  
-3In regular expression mode, replace+5. Select it (including the RSS XML Feed etc buttons).
  
-<code>^\*\*\s\**</code>+6. Open a **new** document in OpenOffice and paste the contents into it.
  
-with+7. Set the Zoom to 73% (so that there are two pages per screen).
  
-<code>**start**</code>+8. Delete all the stuff at the top.
  
-4In regular expression modereplace+9Load styles -> Lucky DipText + Pages + Overwrite.
  
-<code>\s+\*\*$</code>+10. Right click table -Table... -Text Flow tab -> Untick Allow row to break...
  
-with+11. For each page,
  
-<code>**end**</code>+11.1. Put the cursor in the last row of the page.
  
-5In extended mode, replace+11.2. Click the Insert Row button lots.
  
-<code>**end**</code>+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.
  
-with+11.4. Delete the blank cells.
  
-<code>\n<html>\n      </td>\n      <td width="50%">\n</html></code>+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.
  
-6In extended mode, replace+13. Print. Set the Input Tray to Tray 1.
  
-<code>**start**</code>+===== Questions To Be Lucky Dipped =====
  
-with+/* --== Answer Question separator ==-- */
  
-<code><html>\n      </td>\n    </tr>\n    <tr>\n      <td width="50%">\n</html>\n</code>+/* Added 20117012 */
  
-7. Replace the first html element with+** WebC2L1Q2: What must an HTML server control be located inside to operate correctly? **
  
-<code html> +/* --== Question Answer separator ==-- */
-<html> +
-  <table border="1" width="100%"> +
-    <tr> +
-      <td width="50%"> +
-</html> +
-</code>+
  
-8Add this to end+Answer: A form element that has the //runat="server"// attribute.
  
-<code html> +/* --== Answer Question separator ==-- */
-<html> +
-      </td> +
-    </tr> +
-</html> +
-</code>+
  
-9. Select all and copy to the clipboard.+/* Added 20117012 */
  
-10. Goto [[http://tallguyracing.com/wiki/doku.php?id=playground:playground]] and edit.+** WebC2L1Q3What are the three methods of setting the properties of an HTML control**
  
-11. Paste from the clipboard and save it.+/* --== Question Answer separator ==-- */
  
-12. Select it (including the RSS XML Feed etc buttons).+Answer: Source view, design view and programmatically in code.
  
-13. Open a **new** document in OpenOffice and paste the contents into it.+/--== Answer Question separator ==-- */
  
-14. Delete all the crap at the top.+/* Added 20117012 */
  
-15. Load styles -> Wiki Export 2, Text + Pages + Overwrite.+** WebC2L1Q4: In which event on what object should dynamically created controls be created? **
  
-16. Right click table -> Table... -> Text Flow tab -> Untick Allow row to break...+/* --== Question Answer separator ==-- */
  
-17. For each page,+Answer: The Init event on the page object.
  
-17.1. Put the cursor in the last row of the page.+/* --== Answer Question separator ==-- */
  
-17.2. Click the Insert Row button lots.+/* Added 20117012 */
  
-17.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.+** WebC2L1Q5: What order are events from a web page raised on the server side? **
  
-17.4. Delete the blank cells.+/* --== Question Answer separator ==-- */
  
-18. Modify the paragraph style 'Table Contents'. Change the Font color to black.+Answer: The event that caused the postback is processed last.
  
-19. Highlight the left columns of odd pages and the right columns of the even pages (outside ones if two pages are displayed at once), change the background colour to black.+/* --== Answer Question separator ==-- */
  
-20. Select everything and paste into the master StudyQuestions file.+/* Added 20117012 */
  
-===== Questions To Be Lucky Dipped =====+** WebC2L1Q6: What property on a control should be set to minimize the size of the //ViewState// data? **
  
-{{tag>procedure lucky_dip study_questions exam}}+/* --== Question Answer separator ==-- */
  
 +Answer: The //EnableViewState// should be set to //false//.
 +
 +/* --== Answer Question separator ==-- */
 +
 +/* Added 20117012 */
 +
 +** WebC2L1Q7: What are the five main page events, in the order they occur? **
 +
 +/* --== Question Answer separator ==-- */
 +
 +Answer: //Page_PreInit//, //Page_Init//, //Page_Load//, //Page_PreRender// and //Page_Unload//
 +
 +==== Lesson 2:  Exploring Common Web Server Controls ====
 +
 +/* --== Answer Question separator ==-- */
 +
 +/* Added 20117012 */
 +
 +** WebC2L2Q1: What are two differences between the //Literal// control and the //TextBox// control? **
 +
 +/* --== Question Answer separator ==-- */
 +
 +Answer:
 +
 +  * The //Literal// control does not support styles, themes, and skins.
 +  * The //Literal// control does not inherit from //WebControl//.
 +
 +===== Chapter 3: Exploring Specialized Server Controls =====
 +
 +==== Lesson 1: Exploring Specialized Web Server Controls ====
 +
 +/* --== Answer Question separator ==-- */
 +
 +/* Added 20110823 */
 +
 +** WebC3L1Q1: What are the three modes of the //Literal// control? **
 +
 +/* --== Question Answer separator ==-- */
 +
 +Answer: //PassThrough//, //Encode// and //Transform//.
 +
 +/* --== Answer Question separator ==-- */
 +
 +/* Added 20110823 */
 +
 +** WebC3L1Q2: What is the advantage of using the //Table//, //TableRow// and //TableCell// controls over using straight HTML markup? **
 +
 +/* --== Question Answer separator ==-- */
 +
 +Answer: The ability to add rows and cells programmatically.
 +
 +/* --== Answer Question separator ==-- */
 +
 +/* Added 20110824 */
 +
 +** WebC3L1Q3: What web control should be used if clicking on an image is required? **
 +
 +/* --== Question Answer separator ==-- */
 +
 +Answer: //ImageButton// or //ImageMap//.
 +
 +===== Replacements =====
 +
 +/* --== Answer Question separator ==-- */
 +
 +/* Added 20110708 */
 +
 +** WebC1L3Q1: What are the five levels, in order, of the ASP.NET configuration hierarchy? **
 +
 +/* --== Question Answer separator ==-- */
 +
 +Answer: Global machine, root default web, web site, web application, sub-directory.
 +
 +
 +/* --== Answer Question separator ==-- */
 +
 +/* Added 20100620 */
 +
 +** MvcC1Q1: What are the six top-level directories, created by default when a new ASP.NET MVC project is created? **
 +
 +/* --== Question Answer separator ==-- */
 +
 +Answer: Controllers, Models, Views, Scripts, Content and App_Data.
 +
 +{{tag>procedure lucky_dip study_questions exam}}
study_questions_lucky_dip_creation.1249248585.txt.gz · Last modified: 2017/01/01 19:54 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki