ࡱ> 5@ %bjbj22 +XXt<<<8><=0X>>">>>???WWWWWWW$&YRx[dW?????W>>WFFF?2>>WF?WFF1FrGPTGQ>> w<AHP+RX00XP[)C[GQ[GQF???WW$:<EX<Test Bank for Prelude to Programming Chapter 4 MULTIPLE CHOICE 1. Which of the following is a true statement? a.(15 * 2 <= 30) AND (15 2 > 30)b.(15 * 2 <= 30) OR (15 2 > 30)c.(15 * 2 > 30) AND (15 2 < 30)d.(15 * 2 < 30) OR (15 2 > 30) ANS: B  2. Given that the variables MyName and YourName are defined as follows, which expression is true? MyName = Elizabeth and YourName = Mike a.MyName > YourNameb.MyName = YourNamec.YourName <= MyNamed.YourName >= MyNameANS: D  3. What will be displayed if code corresponding to the following pseudcode is executed? Set Number = 4 Repeat Write 2 * Number Set Number = Number + 2 Until Number = 8 a. 8 12 16b. 4 8 12c. 8 12d. 12 16 ANS: C  4. A counter must be: a.a positive numberb.a real numberc.an integerd.a variable named Count ANS: C  5. Given: Count = 23, what is the value of Count after the following statement is executed: Count = Count + 2 a.23b.25c.48d.24 ANS: B  6. Which of the following is not a type of loop? a.Whileb.Forc.Repeatd.all of the above are types of loops ANS: D  7. What will be displayed after code corresponding to the following pseudocode is run? Set Count = 10 While Count > 0 Write Count Set Count = Count 2 End While a. 10 8 6 4 2b. 10 8 6 4 2 0c. 8 6 4 2d. 8 6 4 2 0ANS: A  8. What will be displayed after code corresponding to the following pseudocode is run? Set Count = 2 While Count < 10 Set Count = Count + 2 Write Count End While a. 2 4 6 8 10b. 2 4 6 8c. 4 6 8 10d. 4 6 8ANS: C  9. If Number = 7, what will be displayed after code corresponding to the following pseudocode is run? For Count = 5 Step 1 To Number Write Count, Count * 2 End For a. 5 10 6 12 7 14b. 5 10 6 12c. 5 10 7 14d. 5 7 10 14ANS: A  10. What will be displayed after code corresponding to the following pseudocode is run? Write Loops are fun! For Count = 8 Step -2 to 4 Write Hooray! End For a.Loops are fun! Hooray! Hooray! Hooray! b.Loops are fun! Hooray! Hooray!c.Loops are fun!d.nothing will displayANS: A  11. If Apples = 6, what will be displayed after code corresponding to the following pseudocode is run? While Apples < 0 Write You cant eat , Apples, at one time! End While Write Goodbye, apple lover. a.You cant eat 6 apples at one time! Goodbye, apple lover.b.nothing will displayc.You cant eat apples at one time!d.Goodbye, apple lover.ANS: D  12. If MyNumber = 6.8, what is the value of Int(MyNumber * 4^2)? a.108.8b.108c.109d.this is an illegal operation ANS: B  13. What is the output of the code corresponding to the following pseudocode? For I = 2 Step 1 To 3 For J = 1 Step 1 To 3 Write I, and J End For(J) End For(I) a. 2 and 1 3 and 1b. 2 and 1 2 and 2 2 and 3 3 and 1 3 and 2 3 and 3c. 1 and 1 2 and 2 3 and 3d. I and J I and J I and JANS: B  14. What statements are in the body of the following loop? Set Number = 12 For I = 1 Step 1 To 15 Write Enter a number: Input Number Write Thats a good number. End For Write Bye bye. a.Set Number = 12 Write Bye bye.b.Write Enter a number: Write Thats a good number.c.Write Enter a number: Write Thats a good number. Write Bye bye.d.Write Enter a number: Input Number Write Thats a good number. ANS: D  15. If N = 5, what is displayed when the following pseudocode is coded and run? Set A = 2 For B = 1 Step 1 To N Set A = A + 2 * B End For Write A a. 22b.16c.32d.18 ANS: C  TRUE/FALSE 1. True/False: If Number = 7, then the following statement is true: (Number * Number) <= (2 * Number). ANS: F 2. True/False: Is the following statement true or false: G <> G. ANS: F True/False: If MyName = Liz and YourName = Stewart then is the following statement true or false? (MyName < YourName) OR (MyName >= YourName) ANS: T 4. True/False: If one For Loop is nested within another, then the limit value for the two loops must be different. ANS: F 5. True/False: Two non-overlapping loops can be nested within a third loop. ANS: T 6. True/False: If the following statement is the first line of a For loop, on the first pass through the loop, X will have the value of 2. For X = 1 Step 2 to 10 ANS: F True/False: If the following statement is the first line of a For loop, N is the limit value. For X = 1 Step 3 to N ANS: T 8. True/False: The body of a post-test loop is always executed at least once. ANS: T 9. True/False: The body of a pre-test loop is always executed at least once. ANS: F 10. True/False: In a pre-test loop the test condition is at the bottom, while it is at the top in a post-test loop. ANS: F True/False: In the following statement, X is the initial value: For X = N Step 2 to Y ANS: F 12. True/False: A step value in a loop can be either a positive or a negative number. ANS: T 13. True/False: Is the following statement true or false? Int(6.89) = 6. ANS: T 14. True/False: Is the following statement true or false? (50 <= 100) AND (9 > 12). ANS: F 15. True/False: There are six relational operators. ANS: T  SHORT ANSWER 1. If the increment of a For loop is negative, then the body of the loop will not be executed if the initial value is __________ than the limit value. ANS: less 2. To __________ data means to ensure that the data are in the proper range. ANS: validate If Number1 = 19.86 and Number2 = 2.04, then: Int(Number1) + Int(Number2) = __________. ANS: 21 If Number1 = 19.86 and Number2 = 2.04 then: Int(Number1 + Number2) = __________. . ANS: 21 5. If a loop contains a test condition that can never be met, it is called a(n) __________ loop. ANS: infinite 6. For readability, most programs __________ the body of a loop. ANS: indent 7. A loop that is executed a fixed number of times, where that number is known before entering the loop for the first time, is known as a(n) __________ __________ loop. ANS: counter controlled 8. A variable that keeps track of the number of passes through a loop is known as a(n) __________. ANS: counter 9. The number of passes through a loop is known as the number of loop __________. ANS: iterations 10. When a loop counter is set to its first value, it is said to be __________. ANS: initialized 11. When the step value in a loop is positive, the counter is said to be __________. ANS: incremented 12. One way to force a loop to end is to have the user enter a special item, called a(n) ___________ __________ which acts as a signal that input is complete. ANS: sentinel value 13. A sentinel value is also known as a(n) __________ marker. ANS: end-of-data 14. The type of loop that uses two input values (one before the loop is entered and one within the loop) to validate data is a(n) __________-test loop. ANS: pre 15. One way to break out of a loop early, when, for example, a user has entered an incorrect value or entered a specified response, is to use a(n) __________ structure within the loop. ANS: If-Then-Else     Extended Prelude to Programming Test Bank Chapter 4 PAGE  PAGE 7 2007 Pearson Education '/012ABF`pqru ƺƟ{iXGXGXGX!hT h0B*OJQJ^Jph!hT hB*OJQJ^Jph#h0B*CJOJQJ^JaJph#hB*CJOJQJ^JaJph#h\JJB*CJOJQJ^JaJphh0B*CJaJphh05B*CJ\aJphh0B*CJ$aJ$phh0B*CJaJphh5B*CJ\aJphh05B*CJ\aJphh9L5B*CJ\aJph12BCru$ $*$7$8$H$If^ `gdg$ L *$7$8$H$^ `gdg *$1$7$8$H$^ `gdg *$1$7$8$H$^ `gdg &d0*$1$7$8$H$P0^ `gdg$%PJkdv$$If-0; h4 -a$ $*$7$8$H$If^ `gdgJkd$$If-0; h4 -a   P< *$1$7$8$H$^ `gdgJkdb$$If-0; h4 -a$ $*$7$8$H$If^ `gdgJkd$$If-0; h4 -a       ) 0 4 < r ֶ☆ssbQChB*OJQJ^Jph!hT h0B*OJQJ^Jph!hT hB*OJQJ^Jph$hT h5B*OJQJ^Jph#hB*CJOJQJ^JaJph#h\JJB*CJOJQJ^JaJphhT B*CJaJph&jh !hT B*CJUaJphhB*CJaJphh0B*CJaJphh0B*CJaJph!hT h\JJB*OJQJ^Jph o HJkdt$$If-0; h4 -a$ $*$7$8$H$If^ `gdg$ L *$7$8$H$^ `gdg *$1$7$8$H$^ `gdg" z Ll *$1$7$8$H$^ `gdg    5 D Q Y Z ȼxxfUȼ!h\JJh\JJB*OJQJ^Jph#h0B*CJOJQJ^JaJph#h\JJB*CJOJQJ^JaJph#hB*CJOJQJ^JaJphhT B*CJaJph&jLh !hT B*CJUaJphh0B*CJaJphhB*CJaJphhB*OJQJ^Jphh0B*CJaJph!h\JJh0B*OJQJ^Jph PJkd`$$If-0; h4 -aJkd$$If-0; h4 -a$ $*$7$8$H$If^ `gdg   Z i p {{aaaaa$ L *$7$8$H$^ `gdg *$1$7$8$H$^ `gdg" z Ll *$1$7$8$H$^ `gdgJkd$$If-0; h4 -a $ $*$7$8$H$If^ `gdg$ L x*$7$8$H$^ `gdg B. *$1$7$8$H$^ `gdgkd$$If-ִ;C KShhhh    4 -a      * / 9 : > O T V W \ ] ^ _ ǻǩǩǩǩsǩbVJh9LB*CJaJphhB*CJaJph!hhB*OJQJ^Jphh\JJB*CJaJph#h0B*CJOJQJ^JaJph/hh56B*CJOJQJ^JaJph#hB*CJOJQJ^JaJphhT B*CJaJphh0B*CJaJph&jh !hT B*CJUaJphh0B*CJaJphh\B*CJaJph      HJkd~$$If-0; h4 -a$ $*$7$8$H$If^ `gdg$ L *$7$8$H$^ `gdg *$1$7$8$H$^ `gdg" z Ll *$1$7$8$H$^ `gdg + , / : ; > U PJkdj$$If-0; h4 -aJkd$$If-0; h4 -a$ $*$7$8$H$If^ `gdgU V W _ a }ggNN$ $*$7$8$H$If^ `gdg *$1$7$8$H$^ `gdg" z Ll *$1$7$8$H$^ `gdg *$1$7$8$H$^ `gdgJkd$$If-0; h4 -a_ ` a b e l v y ¯¯‹zi[[[[OCOh0UB*CJaJphh0B*CJaJphhiB*OJQJ^Jph!hih0B*OJQJ^Jph!hihiB*OJQJ^Jph#hgB*CJOJQJ^JaJph#hT B*CJOJQJ^JaJph$hT hi5B*OJQJ^Jph#hiB*CJOJQJ^JaJphhgB*CJaJphh0B*CJaJph&jVh !hT B*CJUaJph PJkdh $$If-0; h4 -a$ $*$7$8$H$If^ `gdgJkd$$If-0; h4 -a P< *$1$7$8$H$^ `gdgJkdT $$If-0; h4 -a$ $*$7$8$H$If^ `gdgJkd $$If-0; h4 -a + . 4 5 8 HJkdf $$If-0; h4 -a$ $*$7$8$H$If^ `gdg$ L *$7$8$H$^ `gdg *$1$7$8$H$^ `gdg" z Ll *$1$7$8$H$^ `gdg   * + . 3 4 8 ; < @ F G K n o p q v w x ª˜yyydyXLAh:h:B*phhgB*CJaJphh0B*CJaJph)hihiB*CJOJQJ^JaJph!h0Uh0B*OJQJ^JphhiB*OJQJ^Jph#h0B*CJOJQJ^JaJph/hghi56B*CJOJQJ^JaJph#hiB*CJOJQJ^JaJphhT B*CJaJphh0B*CJaJph&j h !hT B*CJUaJph8 < = @ G H K o PJkdR $$If-0; h4 -aJkd $$If-0; h4 -a$ $*$7$8$H$If^ `gdgo p q x z {  ! . }cccccccc$ L *$7$8$H$^ `gdg" z Ll *$1$7$8$H$^ `gdg *$1$7$8$H$^ `gdgJkd $$If-0; h4 -a x y z { ~ - . / 78hikȶȎnȶ\N\<#h B*CJOJQJ^JaJphhgB*OJQJ^Jph#h:B*CJOJQJ^JaJph&jh !hT B*CJUaJphh0B*CJaJphhiB*CJaJphh0B*OJQJ^JphhiB*OJQJ^Jph#hiB*CJOJQJ^JaJphh0B*CJaJphhT B*CJaJphh:B*CJaJph&j> h !hT B*CJUaJph. / 2 7 = C I O R X ^ d j p v y  $ $*$7$8$H$If^ `gdg$ L *$7$8$H$^ `gdg )kd $$If-ִ;C KShhhh    4 -a$ $*$7$8$H$If^ `gdg $6O^ilou{yyyy$ $*$7$8$H$If^ `gdg$ L*$7$8$H$^`gdg$ L *$7$8$H$^ `gdg *$1$7$8$H$^ `gdg" z Ll *$1$7$8$H$^ `gdgklKLɽ՝ՋxfXfF4#h0B*CJOJQJ^JaJph#hB*CJOJQJ^JaJphhZB*OJQJ^Jph#h#*B*CJOJQJ^JaJph$hT hZ5B*OJQJ^Jph#hZB*CJOJQJ^JaJphhgB*CJaJph&jjh !hT B*CJUaJphh0B*CJaJphhB*CJaJphh0B*CJaJphhiB*CJaJph#hiB*CJOJQJ^JaJph$ $*$7$8$H$If^ `gdgB" z Ll *$1$7$8$H$^ `gdgkdp$$If-ִ;C KShhhh    4 -aLm$ $*$7$8$H$If^ `gdg$ L*$7$8$H$^`gdg$ L *$7$8$H$^ `gdg *$1$7$8$H$^ `gdg)kd$$If-ִ;C KShhhh    4 -a$ $*$7$8$H$If^ `gdgGH穗wkZkZkZkNNhgB*CJaJph!h\wh\wB*OJQJ^Jphh\wB*CJaJph#h#*B*CJOJQJ^JaJphh\wB*OJQJ^Jph#h0B*CJOJQJ^JaJph#h\wB*CJOJQJ^JaJphhT B*CJaJph&jh !hT B*CJUaJphh0B*CJaJphh0B*CJaJphhZB*CJaJphHa}yyyyy$ $*$7$8$H$If^ `gdg$ L0*$7$8$H$^0`gdg$ L *$7$8$H$^ `gdg *$1$7$8$H$^ `gdg" z Ll *$1$7$8$H$^ `gdgupkd$$If-\;{ #h@ h@ 4 -a$ $*$7$8$H$If^ `gdg kUU;$ L *$7$8$H$^ `gdg *$1$7$8$H$^ `gdg" z Ll *$1$7$8$H$^ `gdgpkd>$$If-\;{ #h@ h@ 4 -a!$./04HMns¯~~m~a~~aUA&jTh !hT B*CJUaJphh0B*CJaJphh:, B*CJaJph!h:, h0B*OJQJ^Jph!h:, h:, B*OJQJ^Jphh:, B*OJQJ^Jph#h0B*CJOJQJ^JaJph$hT h:, 5B*OJQJ^Jph#h:, B*CJOJQJ^JaJphhT B*CJaJphh0B*CJaJph&jh !hT B*CJUaJph014IJkd|$$If-0; h4 -a$ $*$7$8$H$If^ `gdg$ L*$7$8$H$^`gdg IJMopsPJkdh$$If-0; h4 -a$ $*$7$8$H$If^ `gdgJkd$$If-0; h4 -a{{aHH$ $*$7$8$H$If^ `gdg$ L *$7$8$H$^ `gdg *$1$7$8$H$^ `gdg" z Ll *$1$7$8$H$^ `gdgJkd$$If-0; h4 -aձ՟{jYjYjYMh0B*CJaJph!hT h0B*OJQJ^Jph!hT h:, B*OJQJ^Jph#h0B*CJOJQJ^JaJph#hTOB*CJOJQJ^JaJph#h&&B*CJOJQJ^JaJph!h:, h:, B*OJQJ^Jph$hT h:, 5B*OJQJ^Jph#h:, B*CJOJQJ^JaJphhT B*CJaJphh0B*CJaJphPJkdf$$If-0; h4 -a$ $*$7$8$H$If^ `gdgJkd$$If-0; h4 -aP< *$1$7$8$H$^ `gdgJkdR$$If-0; h4 -a$ $*$7$8$H$If^ `gdgJkd$$If-0; h4 -a"kloǻǩ{m{[K?.!h:, h:, B*OJQJ^Jphh:, B*CJaJphh&&5B*OJQJ^Jph#h&&B*CJOJQJ^JaJphhgB*OJQJ^Jphh:, B*OJQJ^Jphh&&B*OJQJ^Jph#h0B*CJOJQJ^JaJph#h:, B*CJOJQJ^JaJphhT B*CJaJphh0B*CJaJph&jh !hT B*CJUaJphh0B*CJaJphhgB*CJaJphlyyy$ $*$7$8$H$If^ `gdg$ L*$7$8$H$^`gdg$ L *$7$8$H$^ `gdg *$1$7$8$H$^ `gdg" z Ll *$1$7$8$H$^ `gdg "#+,45<@AIJRSZ\abcdefglnȼȭo#h&&B*CJOJQJ^JaJphhT B*CJaJphhTOB*CJaJph&j^h !hT B*CJUaJphhTOhTOB*CJaJphhhB*CJaJphh0B*CJaJphh:, B*CJaJph!h:, h:, B*OJQJ^Jphh:, B*OJQJ^Jph' "+4=@IR[$ $*$7$8$H$If^ `gdg[\cdB" z Ll *$1$7$8$H$^ `gdgkdd$$If-ִ;C KShhhh    4 -adfg125EV$ $*$7$8$H$If^ `gdg$ L0*$7$8$H$^0`gdg$ L *$7$8$H$^ `gdgn0125DEUVZrs$%&',-./012ߵߤߵߤߵߤߓÇ{g[hT B*CJaJph&j4h !hT B*CJUaJphhhB*CJaJphhTOB*CJaJph!hbzmhTOB*OJQJ^Jph!hbzmhhB*OJQJ^JphhTOB*OJQJ^JphhTOB*CJaJphhh5B*OJQJ^JphhhB*OJQJ^Jph#hhB*CJOJQJ^JaJphVWZsPJkd~$$If-0; h4 -a$ $*$7$8$H$If^ `gdgJkd$$If-0; h4 -a %&PJkd$$If-0; h4 -a$ $*$7$8$H$If^ `gdgJkd$$If-0; h4 -a&'.01~~~~~e$ $*$7$8$H$If^ `gdg$ L*$7$8$H$^`gdg$ L *$7$8$H$^ `gdg *$1$7$8$H$^ `gdg" z Ll *$1$7$8$H$^ `gdg *$1$7$8$H$^ `gdg 235õ}}i]NBh0B*CJaJphh05B*CJ\aJphhT B*CJ$aJ$ph&jh !hT B*CJUaJphhTOB*CJaJphhhB*CJaJph#hbzmB*CJOJQJ^JaJphhgB*OJQJ^JphhhB*OJQJ^Jph#hTOB*CJOJQJ^JaJph#hhB*CJOJQJ^JaJphhTOB*CJaJphh.ZB*CJaJph$ $*$7$8$H$If^ `gdgB. *$1$7$8$H$^ `gdgkd$$If-ִ;C KShhhh    4 -aDjrs)X|$ & F L *$7$8$H$^ `gdg$ L *$7$8$H$^ `gdg *$1$7$8$H$^ `gdg *$1$7$8$H$^ `gdg" z Ll *$1$7$8$H$^ `gdgGhijoqrvϼϼnπ]MnAh YB*CJaJphhg5B*OJQJ^Jph!h?7h?7B*OJQJ^Jph#h YB*CJOJQJ^JaJph#hgB*CJOJQJ^JaJphhMB*CJaJphh0B*CJaJph#hB*CJOJQJ^JaJph$h?7h?75B*OJQJ^Jph#h?7B*CJOJQJ^JaJph#h0B*CJOJQJ^JaJphh0B*CJaJph(),XY^_`dqx{)*ϿϘϘυymaυamaO#hMB*CJOJQJ^JaJphh0B*CJaJphh?7B*CJaJphh?7B*CJaJph$h?7h?75B*OJQJ^Jph#hgB*CJOJQJ^JaJph)h?7h?7B*CJOJQJ^JaJphh?75B*OJQJ^Jph#h?7B*CJOJQJ^JaJph#h0B*CJOJQJ^JaJphh0B*CJaJphXY`a+23$ L *$7$8$H$^ `gdg *$1$7$8$H$^ `gdg" z Ll *$1$7$8$H$^ `gdg$ & F L *$7$8$H$^ `gdg *+0126Cux$'CDZɷp^ɷ#hgB*CJOJQJ^JaJph#h xB*CJOJQJ^JaJphh?75B*OJQJ^Jph#h=GB*CJOJQJ^JaJph$h?7h?75B*OJQJ^Jph#h?7B*CJOJQJ^JaJph#h0B*CJOJQJ^JaJphh?7B*CJaJphh0B*CJaJphh0B*CJaJphD\cd  *$1$7$8$H$^ `gdg" z Ll *$1$7$8$H$^ `gdg$ L *$7$8$H$^ `gdg$ & F L *$7$8$H$^ `gdg Z[\abcdgtx ζnbVbJnb>h=GB*CJaJphht]B*CJaJphh3Z<B*CJaJphhTOB*CJaJph#h3Z<B*CJOJQJ^JaJph#h=GB*CJOJQJ^JaJph#hTOB*CJOJQJ^JaJph#ht]B*CJOJQJ^JaJphhTOB*CJaJphh xB*CJaJphh0B*CJaJph$h=Gh05B*OJQJ^Jph$h=GhM5B*OJQJ^Jph#HINOPQSϽۇueuY۽Yh3Z<B*CJaJphh3Z<5B*OJQJ^Jph#h=GB*CJOJQJ^JaJph#hgB*CJOJQJ^JaJph#h xB*CJOJQJ^JaJph#h3Z<B*CJOJQJ^JaJph#hTOB*CJOJQJ^JaJphht]B*CJaJphhTOB*CJaJphhTOB*CJaJphhMB*CJaJph"IPQ6= *$1$7$8$H$^ `gdg" z Ll *$1$7$8$H$^ `gdg$ L *$7$8$H$^ `gdg$ & F L *$7$8$H$^ `gdgSUbf5ϽϽϽϽvdR#ht]B*CJOJQJ^JaJph#h=GB*CJOJQJ^JaJphh3Z<5B*OJQJ^Jphht]B*CJaJphh xB*CJaJphhTOB*CJaJph$h3Z<h3Z<5B*OJQJ^Jph#h3Z<B*CJOJQJ^JaJph#h%B*CJOJQJ^JaJph#hTOB*CJOJQJ^JaJphhTOB*CJaJph56;<=>?@LMQgj<=BJKLO^cqϻϯςo]]QςQςooh3Z<B*CJaJph#h=GB*CJOJQJ^JaJph$hGh3Z<5B*OJQJ^Jph#h3Z<B*CJOJQJ^JaJphhA}xB*CJaJphhA}x5B*CJ\aJphhT B*CJaJph&jfh !hT B*CJUaJphhA}xB*CJaJphh=GB*CJaJphh.lB*CJaJphht]B*CJaJph=?@MN=KLz|$ & F L *$7$8$H$^ `gdg$ L *$7$8$H$^ `gdg *$1$7$8$H$^ `gdg *$1$7$8$H$^ `gdg" z Ll *$1$7$8$H$^ `gdg qzڷ{o{]J]Jʥ]JJJ]$hGhG5B*OJQJ^Jph#hGB*CJOJQJ^JaJphhGB*CJaJphhA}xB*CJaJphhA}xB*CJaJph#h.lB*CJOJQJ^JaJph#h=GB*CJOJQJ^JaJph$hGh=G5B*OJQJ^JphhG5B*OJQJ^Jph$hGh3Z<5B*OJQJ^Jph#h3Z<B*CJOJQJ^JaJphz  n|}ss$ L *$7$8$H$^ `gdg$ & F L *$7$8$H$^ `gdg *$1$7$8$H$^ `gdg" z Ll *$1$7$8$H$^ `gdg$ & F L *$7$8$H$^ `gdg    YZ[\]hlmns{|}T W X c r s t y !ɷɷɥɥɥɥɷɇɥɷɇ#hzzB*CJOJQJ^JaJphh.lB*CJaJph#h=GB*CJOJQJ^JaJph#h%B*CJOJQJ^JaJph#hGB*CJOJQJ^JaJphhA}xB*CJaJphhGB*CJaJphhA}xB*CJaJph.t P!`!a!!!!"*"+""""#/# *$1$7$8$H$^ `gdg" z Ll *$1$7$8$H$^ `gdg$ L *$7$8$H$^ `gdg!!D!O!P!U!_!`!a!e!!!!!!!!!! " """")"*"/"3""""""""""÷ë÷ۙ{÷{i]÷hT B*CJaJph#hA}xB*CJOJQJ^JaJph#h.B*CJOJQJ^JaJphhU0B*CJaJph#hzzB*CJOJQJ^JaJphhzzB*CJaJphhGB*CJaJphhA}xB*CJaJphhA}xB*CJaJph#hGB*CJOJQJ^JaJph#hU0B*CJOJQJ^JaJph$"""" #######.#/#4#8############$$B$e$y$$$$$$$$ɷɷ۟۷ɍɷɷ۟{{{i]hU0B*CJaJph#hUVW_a+.458<=@GHKopqxz{!./27=CIORX^djpvy$6O^ilou{LmHa}      0 1 4 I J M o p s        l    " + 4 = @ I R [ \ c d f g   1 2 5 E V W Z s %&'.01Djrs)XY`a+23D\cd IPQ6=?@MN=KLz  n|}tP`a*+/0000000 0 0 0 0 0 0 0 0 0 0 0 0000000 0 0 0 0 0 0 0 0 0 0 0 0000000000 000 0 000 0 00 0 00 0 000000 0 0 0 0 0 0 0 0 0 0 0 00000 0 0 0 0 0 0 0 0 0 0 0 000000 0 0 0 0 0 0 0 0 0 0 0 000000000000 00000 0 000000 0 0000 0 00000 0 00000000000 00000 0 0000 0 0000 0 000 0 0000000000X 0X0X0X 0X 0X0X 0X 0X0X 0X 0X0X 0\ 0000000000X 0X0X0X0X0X 0X 0X0X0X 0\ 0X 0X 0X 0X 0\ 000000000X 0X0X 0\ 0X 0X 0\ 0X 0X 0\ 0X 0X 0\ 00000X 0X 0\ 0X 0X 0\ 0X 0X 0\ 0X 0X 0\ 0000000000000X 0X0X 0X 0X0X0X0X0X0X 0X 0X0X0X 0X 0X0X0X 0\ 00000000000000X 0X0X 0\ 0X 0X0X 0\ 0X 0X0X0X 0\ 0X 0X0X0X 0\ 00000000000X 0X 0X 0X 0X 0X 0X 0X 0\ 0000000000000 00 0000000000000 0000000000000 00000000000000000000000000 0 000 0 0000000000000000000000000000000000000Oy00Oy00Oy00Oy00@0Oy00Oy00Oy00Oy00@0@0@0Oy00 0 BMsssv _ x kn2*ZS5q!"$%#'*.37;>@DHLMOQRTUWY[\^  U 8 o . I[dV&X=z/#$% !"$%&()+,-/01245689:<=?ABCEFGIJKNPSVXZ]_%BIMTVv!!8@0(  B S  ?)/4<rxCL 9C5?q { ` j + . P S dn-36>DJNVz};Ace ux$'gjz~XZ`b33333333333333333333r  _a+Kqx{ R   M p     @ \ d g l 2 5 W Z '.16=@=Lz UTRIELIG0D vV<>;n`,Lr^ >^`>OJQJ^Jo(. vv^v`hH. FLF^F`LhH. ^`hH.   ^ `hH.  L ^ `LhH. ^`hH. VV^V`hH. &L&^&`LhH.^`OJQJ^Jo(. ^`hH. L^`LhH. ^`hH. O O ^O `hH. L^`LhH. ^`hH. ^`hH. L^`LhH.^`OJQJ^Jo(. ^`hH. TLT^T`LhH. $ $ ^$ `hH.   ^ `hH. L^`LhH. ^`hH. dd^d`hH. 4L4^4`LhH.^`OJQJ^Jo(. ^`hH. L^`LhH. ^`hH. O O ^O `hH. L^`LhH. ^`hH. ^`hH. L^`LhH.;nvV<G,LrhM        \        Į        "        32:, ,Z.l&&.0U0;G23Z<=G\JJMTO0U;X Y&\#$aUV+.458<=@GHKop/2ORvylo  0 1 4 I J M o p s    " = @ [ \ 2 5 V W Z %&@^`@UnknownG: Times New Roman5Symbol3& : Arial?5 z Courier New"h F FE\3E\3!xx2Q? Ue Chapter Eight Liz DrakeUTRIELI    Oh+'0x  4 @ LX`hpChapter Eightohap Liz Drakeghiz iz  Normal.dothUTRIELI2RIMicrosoft Word 10.0@@u@uE\՜.+,0  hp  Santa Fe Community College 3A Chapter Eight Title  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`bcdefghijklmnopqstuvwxyz{|}~Root Entry FYData a 1Tabler[WordDocument+SummaryInformation(DocumentSummaryInformation8CompObjj  FMicrosoft Word Document MSWordDocWord.Document.89q