1 / 49

Applications for WQT Challenge

Applications for WQT Challenge. Rules. The Team with the most points wins. There are three types of questions:. Individual – everybody answers. 1 point is awarded for each team member with the correct response.

todd-roy
Download Presentation

Applications for WQT Challenge

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Applications for WQTChallenge

  2. Rules The Team with the most points wins. There are three types of questions: • Individual – everybody answers. 1 point is awarded for each team member with the correct response. • Team – Each team provides an answer. Each team with the correct response gets two points. • Team Race – First team with the correct response gets 2 points. The winning team will have their names etched on a virtual trophy.

  3. Categories • Macros and UDFs. • AutoCAD • Pop Culture • Know your Instructor. There are four categories of questions:

  4. Question 1 What is the Visual Basic keyword that starts a macro? Function Macro Method Sub

  5. Answer A. Function B. Macro C. Method D. Sub

  6. Question 2 In AutoCAD, identify the three techniques for adding drawing objects to a selection set.

  7. Answer Selecting objects individually, Enclosing objects in a selection window, and Touching objects with a crossing window.

  8. Question 3 What is/are Alan’s middle name(s)? Buddy Farnsworth Wellington Jack Santos Alvarez Scott

  9. Answer A. Buddy B. Farnsworth Wellington C. Jack D. Santos Alvarez E. Scott

  10. Question 4 Explain how you can add VB code to an existing macro to perform new actions without knowing the VB code for the necessary statements?

  11. Answer Use the macro recorder to record the new actions into a new macro, then cut and paste the new code into the end of the original macro.

  12. Question 5 What does this UDF do? Function foo(x, y) If (x < y) then foo = x else foo = y End If End Function

  13. Answer It returns the manimumof the two values passed into it.

  14. Question 6 Name two AutoCAD commands that require you to create a selection set.

  15. Answer Any two of: • Trim • Extend • Copy • Move • Make Block • Rotate • Erase • Others

  16. Question 7 In AutoCAD, what plotting scale would you use if your drawing limits were (30,40) and the drawing area on the paper was 10” by 6”? Drawing units represent metres. Your goal is to make the drawing appear as large as possible. 1 : 118.1 1 : 157.5 1 : 196.9 1 : 315.0

  17. Answer A. 1 : 118.1 B. 1 : 157.5 C. 1 : 196.9 D. 1 : 315.0

  18. Question 8 What command(s) can you issue at the keyboard to view all of your drawing objects.

  19. Answer Zoom, All Or z <enter> a <enter>

  20. Question 9 Consider the image shown below. Write down the exact steps you would use to draw the line, given that the two circles are already there.

  21. Answer Line <enter> tan object snap, then select near the tangent point on one circle tan object snap, then select near the tangent point on the other circle

  22. Question 10 Nicole Polizzi is better known as . Alicia Keys Lindsay Lohan River Dancer Snooki The Petulant Pimp

  23. Answer A. Alicia Keys B. Lindsay Lohan C. River Dancer Snooki E. The Petulant Pimp

  24. Question 11 Consider the two AutoCAD drawings below. The second one can be created from the first one using a single trim command. Which objects need to be selected as the cutting edges? Select them from the list below. Left circle Right circle Centre circle Upper-left line Upper-right line Lower-left line Lower-right line

  25. Answer A. Left circle B. Right circle C. Centre circle Upper-left line Upper-right line Lower-left line Lower-right line

  26. Question 12 Consider the two AutoCAD drawings below. The second one can be created from the first one using a single trim command. Which objects need to be selected as the cutting edges? Select them from the list below. Left circle Right circle Centre circle Upper-left line Upper-right line Lower-left line Lower-right line

  27. Answer A. Left circle B. Right circle Centre circle Upper-left line Upper-right line Lower-left line Lower-right line

  28. Question 13 In Visual Basic, the function that is used to display a Yes/No question to the user, has the following syntax: Input(Prompt) InputBox(Prompt, vbButtonCode) MsgBox(Message, vbButtonCode) PromptBox(Message) TextBox(Message, vbButtonCode)

  29. Answer A. Input(Prompt) B. InputBox(Prompt, vbButtonCode) MsgBox(Message, vbButtonCode D. PromptBox(Message) E. TextBox(Message, vbButtonCode)

  30. Question 14 Nadya Suleman is more frequently known as, American Secretary of State Coach of the Canadian Women’s Hockey Team Last Commander of the space shuttle Endeavor Olympic Gold Medalist for Gymnastics (Russia) Octomom

  31. Answer A. American Secretary of State Barbara Walters B. Coach of the Canadian Women’s Hockey Team C. Last Commander of the space shuttle Endeavor D. Olympic Gold Medalist for Gymnastics (Russia) Octomom

  32. Question 15 A linetype scale of 5 means, the linetype pattern repeats once ever 5 units. the linetype pattern repeats 5 times every 1 unit. None of the above

  33. Answer the linetype pattern repeats once ever 5 units. B. the linetype pattern repeats 5 times every 1 unit. C. None of the above

  34. Question 16 Fill in the blank. In AutoCAD, objects on ______ are visible but cannot be edited. a frozen layer a locked layer a layer that is turned off layer 0 None of the above

  35. Answer A. a frozen layer a locked layer C. a layer that is turned off D. layer 0 E. None of the above

  36. Question 17 The image below shows a dimension. What is the name of the lines pointed at by the red arrows? A dimension line An extension line An offset line A style line

  37. Answer A. A dimension line An extension line C. An offset line D. A style line

  38. Question 18 What former high-ranking member of the United States Government shot his friend in the face? Condoleezza Rice George W. Bush Richard B. Cheney Scott McClellan

  39. Answer A. Condoleezza Rice B. George W. Bush C. Richard B. Cheney D. Scott McClellan

  40. Question 19 Consider the following chunk of VB code. Which statement is unnecessary? Range("C3").Select ActiveCell.FormulaR1C1 = "Flow Data" Range("C3").Select Range("B3:D3").Select Selection.Merge

  41. Answer Range("C3").Select ActiveCell.FormulaR1C1 = "Flow Data“ Range("C3").Select Range("B3:D3").Select Selection.Merge

  42. Question 20 Consider the UDF below. What grade would be returned if =FinalGrade(65,99) was entered into an Excel worksheet cell? Function FinalGrade(TermMark, FinalExam) If (FinalExam < 50) Then FinalGrade = "F" ElseIf (TermMark < 70) Then FinalGrade = “D" ElseIf (FinalExam + TermMark >= 150) Then FinalGrade = "A" Else FinalGrade = "B" End If End Function

  43. Answer “D”

  44. Question 21 Who was voted off of Dancing With The Stars this week? Chris Jericho Kirstie Alley Mike Sorrentino Wendy Williams

  45. Answer A. Chris Jericho B. Kirstie Alley C. Mike Sorrentino D. Wendy Williams

  46. Question 21 Which 3 things below are true about Alan? He swears regularly in front of his parents. He first shaved his head because of lice. He owns a vintage crack pipe. He once had a handlebar moustache for 2.5 years. He enjoys the song stylings of Alanis Morissette. He dislikes tequila. He is a Toronto Maple Leafs fan.

  47. Answer He swears regularly in front of his parents. B. He first shaved his head because of lice. C. He owns a vintage crack pipe. D. He once had a handlebar moustache for 2.5 years. He enjoys the song stylings of Alanis Morissette. F. He dislikes tequila. He is a Toronto Maple Leafs fan.

  48. Tie-Breaker Question How many minutes in total were scheduled by OC for CoSc 127 this semester (including labs)? Closest without going over, wins.

  49. Answer 2080

More Related