Title: Applications for WQT Challenge
1Applications for WQTChallenge
2Rules
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.
3Categories
There are four categories of questions
- Macros and UDFs.
- AutoCAD
- Pop Culture
- Know your Instructor.
4Question 1
- What is the Visual Basic keyword that starts a
macro?
- Function
- Macro
- Method
- Sub
5Answer
A. Function B. Macro C. Method D. Sub
6Question 2
- In AutoCAD, identify the three techniques for
adding drawing objects to a selection set.
7Answer
- Selecting objects individually,
- Enclosing objects in a selection window, and
- Touching objects with a crossing window.
8Question 3
- What is/are Alans middle name(s)?
- Buddy
- Farnsworth Wellington
- Jack
- Santos Alvarez
- Scott
9Answer
A. Buddy B. Farnsworth Wellington C. Jack D. Santo
s Alvarez E. Scott
10Question 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?
11Answer
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.
12Question 5
Function foo(x, y) If (x lt y) then foo
x else foo y End If End
Function
13Answer
It returns the maximum of the two values passed
into it.
14Question 6
- Name two AutoCAD commands that require you to
create a selection set.
15Answer
- Any two of
- Trim
- Extend
- Copy
- Move
- Make Block
- Rotate
- Erase
- Others
16Question 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 236.2
- 1 315.0
17Answer
A. 1 118.1 B. 1 157.5 C. 1 236.2 D. 1
315.0
18Question 8
- What command(s) can you issue at the keyboard to
view all of your drawing objects.
19Answer
Zoom, All Or z ltentergt a ltentergt
20Question 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.
21Answer
- Line ltentergt
- 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
22Question 10
- What celebrity has reality shows based on
searching for her BFF.
- Barbara Walters
- Lindsay Lohan
- Nicole Ritchie
- Paris Hilton
- Rosie ODonnell
23Answer
- A. Barbara Walters
- B. Lindsay Lohan
- C. Nicole Ritchie
- Paris Hilton
- E. Rosie ODonnell
24Question 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
25Answer
- A. Left circle
- B. Right circle
- C. Centre circle
- Upper-left line
- Upper-right line
- Lower-left line
- Lower-right line
26Question 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
27Answer
- A. Left circle
- B. Right circle
- Centre circle
- Upper-left line
- Upper-right line
- Lower-left line
- Lower-right line
28Question 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)
- TexttBox(Message, vbButtonCode)
29Answer
- A. Input(Prompt)
- B. InputBox(Prompt, vbButtonCode)
- MsgBox(Message, vbButtonCode
- D. PromptBox(Message)
- E. TextBox(Message, vbButtonCode)
30Question 14
- Nadya Suleman is more frequently known as,
- American Secretary of State
- Coach of the Canadian Womens Hockey Team
- Last Commander of the space shuttle Endeavor
- Olympic Gold Medalist for Gymnastics
- Octomom
31Answer
- A. American Secretary of State Barbara Walters
- B. Coach of the Canadian Womens Hockey Team
- C. Last Commander of the space shuttle Endeavor
- D. Olympic Gold Medalist for Gymnastics
- Octomom
32Question 15
- A linetype scale of 5 means,
- the linetype pattern repeats once ever 5 units.
- the linetype pattern repeats 5 time every 1 unit.
- None of the above
33Answer
- the linetype pattern repeats once ever 5 units.
- B. the linetype pattern repeats 5 times every 1
unit. - C. None of the above
34Question 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
35Answer
- A. a frozen layer
- a locked layer
- C. a layer that is turned off
- D. layer 0
- E. None of the above
36Question 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
37Answer
- A. A dimension line
- An extension line
- C. An offset line
- D. A style line
38Question 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
39Answer
A. Condoleezza Rice B. George W. Bush C. Richard
B. Cheney D. Scott McClellan
40Question 19
- Consider the following chunk of VB code. Which
statement is unnecessary?
Range("C3").Select ActiveCell.FormulaR1C1
"Flow Data" Range("C3").Select
Range("B3D3").Select Selection.Merge
41Answer
Range("C3").Select ActiveCell.FormulaR1C1 "Flow
Data Range("C3").Select Range("B3D3").Select Sel
ection.Merge
42Question 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 lt 50) Then FinalGrade "F"
ElseIf (TermMark lt 70) Then FinalGrade
D" ElseIf (FinalExam TermMark gt 150) Then
FinalGrade "A" Else FinalGrade
"B" End If End Function
43Answer
D
44Question 21
- Who was voted off of Survivor last week?
45Answer
- A. Coach
- Sydney
- C. Tyson
- D. Taj
46Question 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.
47Answer
- 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.
48Tie-Breaker Question
- How many minutes in total were scheduled by OC
for CoSc 127 this semester (including labs)? - Closest without going over, wins.
49Answer
2080