ࡱ> }M 7bjbj== ,WWt2!ldddd----,-o....v/DDD$U uD3ALDDDOFdd.v/)OFOFOFDd.v/OFDOFOFF'ilhv/. 0P(c)-E0^?0o: OFOFddddAnswers to Review Questions 1. What is the difference between a database and a table? A table, a logical structure that represents an entity set, is only one of the components of a database. The database is a structure that houses one or more tables and metadata. The metadata are data about data. Metadata include the data (attribute) characteristics and the relationships between the entity sets. 2. What does a database expert mean when (s)he observes that a database displays both entity integrity and referential integrity? Entity integrity describes a condition in which all tuples within a table are uniquely identified by their primary key. The unique value requirement prohibits a null primary key value, because nulls are not unique. Referential integrity describes a condition in which a foreign key value has a match in the corresponding table or in which the foreign key value is null. The null foreign key value makes it possible not to have a corresponding value, but the matching requirement on values that are not null makes it impossible to have an invalid value. 3. Why are entity integrity and referential integrity important in a database? Entity integrity is important, because it means that a proper search for an existing tuple (row) will always be successful. And the failure to find a match on a row search will always mean that the row for which the search is conducted does not exist in that table. Referential integrity is important, because its existence ensures that it will be impossible to assign a non-existing foreign key value to a table. For example, the referential integrity enforcement in a SALESREP is assigned to CUSTOMER relationship means that it will be possible for a customer not have a sales rep assigned to him or her, but it will be impossible to assign non-existing sales rep to a customer. 4. A database manual notes that "the file contains two hundred records, each one of which contains nine fields." Use appropriate relational database terminology to "translate" the preceding statement. Using the proper relational terminology, the statement may be translated to "the table -- or entity set -- contains two hundred rows -- or, if you like, two hundred tuples, or entities. Each of these rows contains nine attributes." 5. Use the small database shown in Figure Q2.5 to illustrate the difference between a natural JOIN, an equiJOIN, and an outerJOIN. Figure Q2.5 The Database for Questions 5 - 7  Database name: CH2_QUESTIONS  Table name STUDENT Table name: PROFESSOR  (Note: These database tables are found in the CH2_QUESTIONS database on the Instructors CD.) The natural JOIN process begins with the PRODUCT of the two tables: STU_CODEPROF_CODEPROF_CODEDEPT_CODE1002781212856921251227241253123521253126812553427112100278261285692265122724265312352265312682655342712610027836128569236512272436531235236531268365534271361002784412856924451227244453123524453126844553427144 Next, a SELECT is performed on the PRODUCT generated in the first step to yield only the rows for which the PROF_CODE values in the STUDENT table are matched in the PROF table. Because only the STUDENT tables PROF_CODE values 1, 2, and 4 yield matches in the PROFESSOR table, the SELECT yields the following output: STU_CODEPROF_CODEPROF_CODEDEPT_CODE128569226512272444531235226553427112 Finally, a PROJECT is performed to produce the natural JOIN output by listing only a single copy of each attribute. The order in which the query output rows are shown is not relevant. If the output is to be listed by having the STU_CODE values in ascending order, this result can be generated through an order by specification in the query remind the students that they can learn how that is done in Chapter 5, Structured Query Language (SQL). STU_CODEPROF_CODEDEPT_CODE12856926512272445312352655342712 The equiJOIN's results depend on the specified condition. For instance, if the equiJOIN specifies that ALL STUDENTS FOR WHOM THE ADVISOR CODE IS 2 are to be listed, the output will be STU_CODEPROF_CODEDEPT_CODE1285692653123526 In the outerJOIN, the unmatched pairs would be retained and the values that do not have a match in the other table would be left null. Therefore, the will yield these results: STU_CODEPROF_CODEDEPT_CODE1002781285692651227244531235265312685534271236 Microsoft Access uses two outer join options to make it easy to find unmatched pairs. For example, its outer join selections, generated from its QBE (Query By Example) query generator, are particularly effective. Note, for example, the selected left outer join option in Figure Q2.5A1 and look at its output in Figure Q2.5A2 to see that professor 3 does not have any student advisees. Figure Q2.5A1 The Left Outer Join QBE properties selection If you select the option 2 in Figure Q2.5A1s QBE option screen, youd get the output shown in Figure Q2.5A2. Note that you can now easily detect that professor number 3 does not have any student advisees assigned to him or her. If you select the option 3 in Figure Q2.5A1s QBE option screen, youd get the output shown in Figure Q2.5A3. The latter output makes it easy to detect that students 100278 and 531268 do not yet have an advisor assigned to them. Figure Q2.5A2 Figure Q2.5A1s Left Outer Join Output  Figure Q2.5A3 The Right Outer Join Output  Draw the basic Entity Relationship diagram for the database shown in Figure Q2.5. The Chen and Crows Foot E-R diagrams are shown next:  The Chen ERD  The Crows Foot ERD 7. Draw the relational schema for the database shown in Figure Q2.5. The relational schema is shown next: 8. Suppose that you have the Entity Relationship model shown in Figure Q2.8: FIGURE Q2.8 The ERD For Question 8  How would you convert this model into an Entity Relationship model that displays only 1:M relationships? (Make sure that you draw the revised entity relationship model.) Because the relational database model does not support the M:N relationship between entities, we must convert the M:N relationship into a set of 1:M relationships that are linked through a composite or bridge entity. The name composite entity is based on the fact that the linking table contains at least the primary keys of each of the tables that it connects. The Chen model will look like this: The Crows Foot model yields this solution to question 8:  9. What are homonyms and synonyms, and why should they generally be avoided in database design? Homonyms appear when more than one attribute has the same name. Synonyms exist when the same attribute has more than one name. Avoid both to avoid inconsistencies. For example, suppose we check the database for a specific attribute such as NAME. If NAME refers to customer names as well as to sales rep names, a clear case of a homonym, we have created a problem, because it is no longer clear which entity the NAME belongs to. Also, it is difficult to keep track of foreign keys, especially during the database design process, if they are named differently from the primary keys they point to. Using REP_NUM as the foreign key in the CUSTOMER table to reference the primary key REP_NUM in the SALESREP table is much clearer than naming the CUSTOMER table's foreign key SLSREP. The proliferation of different attribute names to describe the same attributes will also make the data dictionary more cumbersome to use. Some data RDBMSes let the data dictionary check for homonyms and synonyms to alert the user to their existence, thus making their use less likely. For example, if a CUSTOMER table contains the (foreign) key REP_NUM, the entry of the attribute REP_NUM in the SALESREP table will either cause it to inherit all the characteristics of the original REP_NUM, or it will reject the use of this attribute name when different characteristics are declared by the user.  Note: Like most rules, the homonym/synonym avoidance rule is sometimes broken to fit a perceived need. In fact, we have seen (too many) applications in which a table must employ two foreign keys to reference one attribute in another table. For example, an aircraft charter company may schedule a flight crew of two pilots to fly an airplane, one to fly as pilot in command and one as copilot. Any of the company's pilots may be scheduled either as pilot in command or as copilot. Therefore, the SCHEDULE entity might be implemented to require both PILOT and COPILOT attributes. Yet the PILOT table contains only one row for each pilot's attributes, so the SCHEDULE entity must use two foreign keys to access the same PILOT entity. (We have used this approach in problems 29-31 CH2_AVIA_CO aviation database as an illustration.) While this solution works, it is unnecessary and, worse, it limits the crew assignments. For example, what happens when a crew is composed of more than just a pilot and copilot? Should we then add a third or a fourth, a fifth, and so on -- synonym in the SCHEDULE table? A much better solution one that avoids synonyms -- would not require structural changes to accommodate changing crew requirements. Such a solution would use a composite entity to link the crew and the airplane to the assignment schedule. Although we will revisit this critical design issue in Chapter 3, it is not too early to introduce this example as the proverbial eye opener. 10. How would you implement a 1:M relationship in a database composed of two tables? Give an example. Suppose that we have a car entity and an owner entity. Further suppose that it is reasonable to assume that: a car is owned just by one person (owner) a person can own more than one car. The relationships we have just described may be represented by the following E-R model:  Chen model  Crows Foot model An example of this relationship is shown next. Note that the "many" side of the relation (the CAR entity) contains the foreign key, which is the CUSTOMER entity's primary key.   Table name: CUSTOMER  Table name: CAR Figure Q2.10 Question 10's Relational Schema 11. Identify and describe the components of the database table shown in Figure Q2.11, using correct terminology. Use your knowledge of the naming conventions to identify the table's probable foreign key(s). FIGURE Q2.11 The EMPLOYEE Table for Question 11  Table name: EMPLOYEE Database name: CH2_QUESTIONS  Figure Q2.11's database table contains: one entity set: EMPLOYEE. five attributes: EMP_NUM, EMP_LNAME, EMP_INIT, EMP_FNAME, DEPT_CODE and JOB_CODE. ten entities: the workers Friedman, Olansky, Fontein, and Cruazona. one primary key: the attribute EMP_NUM because it identifies each row uniquely. two foreign keys: the attribute DEPT_CODE, which probably references a department to which the employee is assigned and the attribute JOB_CODE which probably references another table in which you would find the description of the job and perhaps additional information pertaining to the job. 12. Suppose that you are using the following a database composed of the two tables shown in Figure Q2.12: Figure Q2.12 The Database For Question 12  Table name: DIRECTOR Database name: CH2_QUESTIONS  Table name: PLAY  a. Identify the primary keys. DIR_NUM is the DIRECTOR table's primary key. PLAY_CODE is the PLAY table's primary key. b. Identify the foreign key. The foreign key is DIR_NUM, located in the PLAY table. Note that the foreign key is located on the "many" side of the relationship between director and play. (Each director can direct many plays ... but each play is directed by only one director.) c. Draw the Entity Relationship model.  Chen model  Crows Foot model d. Draw the relational schema to show the relationship between DIRECTOR and PLAY. e. Suppose you wanted quick lookup capability to get a listing of all the plays directed by a given director. What table would be the basis for the index table, and what would be the index key? The PLAY table would be the basis for the appropriate index table. The index key would be the attribute DIR_NUM. f. What would be the conceptual view of the index table described in part e? Depict the contents of the (conceptual) index table. DIR_NUM Index key (pointers to the PLAY table) 100 4 101 2, 5, 7 102 1, 3, 6 Each DIR_NUM entry in the index file contains an ordered sequence of record numbers pointing to the corresponding rows in the PLAY table. For example, the director number "100" has only one play to match row 4 in the PLAY table. Note that the number 4 represents the fourth record in the PLAY table, not the play whose primary key is "4".  EMBED PowerPoint.Show.8   EMBED PowerPoint.Show.8   EMBED PowerPoint.Show.8   EMBED PowerPoint.Show.8   EMBED PowerPoint.Show.8   EMBED PowerPoint.Show.8   EMBED PowerPoint.Show.8   EMBED PowerPoint.Show.8   EMBED PowerPoint.Show.8  V%ckBr =  T U s t u Y  &'45BCPQ]^klxy5CJjUmHnHujCJUmHnHuCJ5CJCJ6566]55CJ OWXAB< =   t u ^^ $^`a$$a$t67 YZ[$If$Ifp^p$^a$T4KKKK $$Ifa$$$Ifl\XR X  (04 lalo8ffffo8ffffo8 $$Ifa$$$Ifl\XR X04 lal    f4f8$$Ifl\XR X04 lal $$Ifa$ !"$&'.0f4f8$$Ifl\XR X04 lal $$Ifa$ 0245<>@BCJLNf8f8$$Ifl\XR X04 lal $$Ifa$ NPQXY[]^egikf4f8$$Ifl\XR X04 lal $$Ifa$ klstvxyo4ffffo8ffffo8 $$Ifa$$$Ifl\XR X04 lal f8f4$$Ifl\XR X04 lal $$Ifa$ f8f4$$Ifl\XR X04 lal $$Ifa$ f8f8$$Ifl\XR X04 lal $$Ifa$ Pcmwxt}eQRRScd|78[\]jCJUmHnHu5jUmHnHuCJ5CJjCJUmHnHu5CJCJPf8f4$$Ifl\XR X04 lal $$Ifa$    OPYo8ffffodb]W$If$a$ $$Ifa$$$Ifl\XR X04 lal YcmwxH8??? $$Ifa$$$Ifl\XR X  (04 lal$If$Iff8f8$$Ifl\XR X04 lal $$Ifa$ st}o8ffffoaaa[$If$a$ $$Ifa$$$Ifl\XR X04 lal }g0^^^ $$Ifa$$$IflFXR X  0    4 lal$If0yyy0yyy0yyy $$Ifa$|$$IflFXR X0    4 lal |}`0WWW $$Ifa$$$IflFXR X  0    4 lal$If$a$ denx0yyywwwqqq$If $$Ifa$|$$IflFXR X0    4 lal m(ddd $$Ifa$$$IflFXR X  0    4 lal0yyy0yyy0yyy(y $$Ifa$|$$IflFXR X0    4 lalPy0yywu|$$IflFXR X0    4 lal $$Ifa$ PQ[\RTUbcefz{ & F \ ^\ `{|78\^_`abcde|}$a$h^h]e9AF###$$d%k%%%W&Z&)** + ++++++++++,,,,F,G,H,--H-I-J-a-}-~------$.1.j.z.../K0M0w0x0y000000000CJ5CJjCJUmHnHujUmHnHu56 56]6jCJUmHnHu5N>FG!!###y)z)))N*x***** + + & F h`` h^h` $hh]h^ha$$^a$$a$ + +'+(+)+++++++++++,,,,,,G,H,--I-h^h $h^h`a$^^I-K-~------------------#.$.i.j..$^a$$ & F h``a$ !$h^ha$..//L0M0x0z0000000000000000$^a$$a$h^h h^h`$ & F h`^a$$^a$000000$1O1P1m1n1g2h22222222233 333 $v^v`a$$h^ha$h^h$a$0P1n1h222222223 33?4444446n6t6u666666666666666666666666777777/7 jUj4?444444444444$Q$$Ifx0: aa4 xax:$If d$If $v^v`a$$a$ 44455 5 5 555555p6q6r6t6<<$h]ha$$a$:$If d$IfQ$$Ifx0: `4 xaxt666666666773747S7T7s7t77777/70717274757O7P7Q7R7T7U7o7p7q7r7t7u777777þ j Uji3>? CJUV jfUj2>? CJUV jUj=B+<ܑg9 :StGGuﱎ7?{uN{Nzzu45*B*ۮ|U}%LzOjxy(D ^Wfbn%gږy"t{y )/( %^Hi{<-^0(Mfn~1]XeYj~O/|p7^HaRѥ-Ԏ{.M4:^ٞK?fy6foLX M [^eI ~h?^=]_K\_5뜳_~!ӗ;2.׷{ShQhyBw3^F~nSS{&M:R|-^w})>x"U (fߛZ>O/{\ v%1ڟ07EMҏ*{@mצijX)<1eT쾇bIaKpj=Pn<7"{ԎpwU]ԉ')Dxسx4{HW"@?%R"B\TR{RDP.cZ_)JuIP}jsd}ƌD{:+!!0ډ6WP ]C͊#.d%-vJ-Ej%lr[JVAi>>YPNW q?zye\]n#}jKCgzg DY(MlVrOiK'}*ox,_%(SEaBY%k6J!'K%iȤX%%@Jl_)N_Ɖ }ls+iشdjhsjk\ISEJmƟ\X2(Pt2$,Y(d'PRk (ϪiJAm$4'4AλtNjʬ^%0L"E(:cb1d\א3? T"}C>IlΜL%ac7zSK RP~nʰ$JQ#65L(Cȣt:lgu(pCLqŵY=PZit6K_ [A&r2|? _Տ4js( e0 .)T0teh mѭ?T2h#_G(azNj}PX{y iQuC"딺eW]FUPoHS~M^=;:_ByʋZT]/2W}Y$g);CեW B: eMl'Bkl(?@yBMPb"(gPb} uJ^4@^xJ&/o.>˦ z.{Ng 2ߙv1'>eQD!+è'?!jbPVwPj:F? zzʃJzUlYOd']JTƸR qAJ8RIt]csmKz.1Mlj12s"@C+C)|v%O KPPG}MJZҤh_`xôA-6ih褽Kr痊J|YC6yOj!I-?^2?]e, O #PzjmGA'@AhXTW'7i\U+(]lUfPЙ\Ϧ!LVBY꩑dlI{{ʕ-ʤ!TXr\E(H =?#'Cm 4P)74e/9ďb0*RAp 7a$Dۍ雎D7ELcg|*u e]ʸ&;kk,Sy|XEeP*\t]L lt:G6%ƢLy^V4XzoXE9.籱>b>p3n.n\)akazP@h'gªA0eԒ)wOi P(za)UIGfSpRg2( T&?Ro2DpH]L$|m1gxBm\H9FLgڔbVZ eNx Pdl:MҚiD4[+iB܆r9ыi)O_@g ]VPsz[wNO6gSZ]+ S=ߟtU=ce?5xJ}Pd*U(7gtRQ@( `!S(G߾ʙ{ߛ$X(?>fNݮ.!`!˞rSo$}wT|e(mj ̶\veΨ/7|)MPe.Q(GUPj E(Y82繾]խP8Zyʿ&zf\z'GlqzAg01(ۉPXFCTh([ɟ%^LG,YNPbPKPU ʳA"@%PVJ-PeL:/|*o-}%P) ϕtzU :=RG*cuxJzOa*Ö栔M"@(})89Yh (X̖ e'5( sPưG%w b3[D;M4B$D+D(ZλU=ƲP{ZuBl2Ϣs8 OB *O>֡Ψ)3[U{' ^)B BCǭ2DJx3(]-=eJr[-B Teၡe3[ΡL_*< uW< a.{>BN ;{fK_q:ͳN68%C(ao]mPD(C1"@JP%P|6#F(B1"@J%P#B ĈPE(1"@J%P#B ĈPE(1"@J%P#B ĈPE(1"@J%P#B ĈPE(1"@J%P#B ĈPE(1"@J%P#B ĈPE(1"@J%P#B ĈPJ)4FPQPB T+(Qh(AkeRl}{5έgD%: J)]w"D zGCYx[:4Yem"1m$ǠFB9@lX-RJ!IB^M5(j%Ʋ) r F?PJ͞7x P~|iSFWJhBT_W@$\ZZRxSxd=QyOr%cЙQ{[$ܭ1USLP)ϺnvT d?1عIBJ9  W$Cy&)g`XQIBY2XRJƵbD,qc*ݛ$Ǡ,Sz6zc?/My(%$C)Fv& e:; "&pyIBYR8OVA9cw3r/SMsSLΩPKL~(F(Pr0y.Av` I& eΤ"= [$e(+ޑPaP֠F4yIBYRM?!8v[$P e{rT{ e{ .߄@_?Bȵ^N1I(wP2I( ew& %$%"DOٹIzJBٝIBI(3I( ew& zh!B$\ͤӳ[ʆ& %$$ݙ$;r=qljPlePLJBٝIBJD"5s;PvgPLJBٝIBI(3I( ew& %$$ݙ$;PvgPLJBٝIBJD"5j|IoIENDB`nF "nD=PNG  IHDRcZgAMAPLTE𰰰ppp\j]tEXtDataTime11-24-1992k-tEXtAuthor1992 ACCUSOFT INC, ALL RIGHTS RESERVED4FIDATxẃ g,l2VWf_W/4+n/.[&nNtXCuc ^z+xyO*!]OHEZzP<|"f.:!>ù(Td!ؐػՄ%lTa; I! cn 1?Gh\i[B,!tZҊ06*Ez>bu):Fi(-Re&vb'6ʆNvBlCLaYmtMlqGO"G)l[ѓ@C#!IQ݄ {)T5 DHڇ.& <ᖰsLJź+<>{^8LaYm8L&^: Gd!!D~$&86hu/^zT|ؗ K/HxRdBlCpy`"7I8" !2?day v/ FP҇E&7M)Թr-WPbMU˩ c)â[m@\Ah'_Ka'*d0I8, !2pH&dewIENDB`nkM^,5xVPNG  IHDRsYÕgAMAPLTE𰰰ppp\j]zTXtDataTimex345254 ֊6zTXtAuthorPx34Rptv w QsQpQt Vr v su2 XIDATx획 {WMQ)U4G E*LĝGYM+fpŸ$ov+ئQj[Q62Ĕ,zXLYd=@dDt /~-11n( f Y&QI(z@&F9tSأ"·p4Ků,{ eN´OXnyvCG(3" [JkhByA7[uRs˟*qGR>|ܧԮJH'X~u iNk_ R\IHKfi0g aijcҚ,xXʮxa9M9Zy~x.;oT#ly$ȱͲ"P- !!}B70VڄĖ(ť[YK:'WXOk |ٹ\XMa_Bde!!D?T8L!Y 5"&]Kc}sEK<} )ٽh!w&C7%i2P-S ƚ̅~0$^mPpqlԨdl.ѥ %_K:\_+ !5*yHnB,$6]>0Ld?$DbB {nmE.NFL8#Kg~%f,>MQ0#K|, NOÝn1Y-<3ChoIN#V&TBbCl>pVCtjd!!DRf?üĽbl񲦠,( B\qqXk}X?ו7^qq(~Ode!!D?T8L!Y 5"zX9C1|Qп_Z9CpV;s˴;IENDB``!-I~Wcpb@ p`ER4xڭUKTQ>ތh#H ǨcA 'e*pD@Hv-ZtQ`Dm[ `}Q ݹ{s}8lB9(Fe_U'0)Mo ~+j 6w q0jf53Vͨ[^NWSkeJ勳'>VxޝSv^ļ>&pd]lh.̟3x'+EêǺ 4F6sB37C=փn.A}m?H/A$+pgd hЂ$:K\b,ӳgkd-eLZOZKU8FSz)>5u4;3:X7%m]O^v}np?Й/o_'X@`!j Tvu␻@ p`ER4xڭ=l1NjA jQKK@$"H'@U $"X u6 KňaҥE ]ȥ)䧎9{~{3bH!HA0-XZ-ڂhԟ3/`{']^$נBϘoV~b'hȟIj+ h,$΃ ) DUԺ!9 /.j5,dqLPޠimG \WIюUJ T.R͢^j=A6y:eJ&FȰ_=SKKrD'aN3 ;C#5ܷpZx$N87,Êz0Nl㴛F(Io#6ޕM&s^;ėT$)B\}^,44KZhp0Jjh,7>i=m4SМdeΙBI47 Ore4.:xK:$|fS8I:ni~ťԖXmUH@h}56lMF!W]ӄoGKa=2ΧʏUP_ws A=o`!&~rGc’ @ p`ER4xڵVMLQy]JP@J"p3 F 1]L( - Dp ^|0JN{Xaӳ>0=PqH7h ߱'Ҭ^ +Њb"iQojֈ0zcJeGB2Ȩ.kzmRaqZ=ޠlo!%`Ga( %̰+FeSQ-D>SkDKKUURVb.aŞ$V2qh֏Sܵ=̏V歹)< 3 sne9)9oJ4~+7'WJlZwt'y9]Doun3?w#vaxCu|rrXssZM[ l @=qX^]!8uA T'e!OF^Zi죓u1GW*N0空j2^a~-~-N=%vU߰M :))g蘆t澙[Y<7әX:k&Lff21EMB4SEkM:!: 09Oonu,@ }<3:HIBk(aCt|H/}9?q6eh.Hxv4sL!6-I"[vϒۦg, C桜 ƹghvM/ݢ9λ%)^ӘsO_ Y]F&qQw}S㲄8u^};kxW-w,܈nE>E;0E&}Ɯc> nk&;n>vMx[ayGuGܺq_o]EU{or/VsS?0X ;`!0R=;795- @ p`ER4xڭVOA~3vvj*X1Ң!&!CMDoA=xЛW#pѤ&h--ӼLg7o2; qlLF 5 FXiswQW݃(9(Fp-1"NTBh\ 5$YLrukM퐍3nʓt=̇8+AT4h8QkAW~GD&(rRii?5'y)垏M8ַQչ Ӳ"l+\%T3]b^i!>#Եj#gITEN NIbxCddgdG͓C7YᇍmZWh-b.FN_)n*s7ee2kֶsžZa<΂8 '?[NS6ԜT4 +5;_zf,?jz!5{zc2ҁbT 0[Xx0WHAzH ۚOTjǧoݢ&EG-Q[!/{zʲxxozK3鰉aYLeٴ{Io%{VRnx\GՎ{~료󵧥;}q,c|`!AOLd/e) @ p`ER4xڭMLAξNRb%E\Q&bbK<(iVҢ' ğ^=h/z41≣#&nmil:7oy?] OC;I7o?d}7, VH Cj0FNGF`:h.^jcpY.^hS^5ZnhDX$f F#/ԚI&v͊MQfZtY3ZQ~v@X6r`Kgymkr2@>3y.5hnGSuy!̞cvniggKys'u)1l[b!\[#~;mlK1WR3YѪRjU~zbTƌىG淢Ɉ\1|C1L ߌ& B7rQoK{_JU ]Eh:W)8j_|H&h|4ンxh$EM&PpqgY Wh9YqS{RG01&.$j^+I"?V^VhZh<~RuӸdxX=,TOS:RxGGW}?ձTM2dN-e\ \U%+D:cN-l3=`^ }WZ+_*Q0n;#R.eU.ri6^|a@h|48C$SDԋDU/LZ|>['yЄ,}S3DGDRhSSm.*.UC-l*I +{.r[VCCѳ;7: &ߩ65{E{9`DPdW=f4SSB1䛸hX0nDSXG(^iCCAM.=PzDVն H8kǫ#`BoT< %ȁUphE8ۄ(6 {8S yxq"(EzJG)j!T9n,t03îy2Gˆq Kc1.z!&mdmռ7BpmpX]B| eЬo5b&Uy8d{ #6*B-ޅժܛL.9e-f?!cYރp"Rg,hp*,? isMPxi~Xm_ڡI}áhCn5O\d!kY=NnO/is7e.\Aewc_ qzM:(/ɝLn.eo6'BwYx2(_1dS9b_ߢI܋]4V)B\2*-C`\?iQ{|8['[+1&Ɋ{l!ąk+&[ i F4s8V)P}dR;6?꼔00~5SZ'U1IENDB`nZ cmdIgPNG  IHDRqd gAMAPLTE𰰰ppp\j]zTXtDataTimex345254 26zTXtAuthorx34Rptv w QsQpQt Vr v su2 q| IDATx]( oĈփ7Ncc-0Ҥi۴?Ls1Wyqt 5(c\sdh}D8!E2Wh FCF~*EظK52X $qYۘ Ћ S20 !ZKd2!'J_/d œȈt,}dP%d qlJfJ&p5t+v/҇Y2d`E2<%>7G/C9|M;fs -W[6CFն(yU_eE>8sdKp;J1N`+V*;!c32Nۦ=Wϸ< pΕ”x ^'wWd!8 :d|GApەߖR>p.19] Vc8b d-^`CzSi ZL"npVcyNALqbJBgOM\ A7&nKc kؔ8a” ͽc")֓n:'E\DF&L@nsF*@ 20%5%Q̀i ñd;rq9d$Aud1;q@i"縉!8qL13J Sa}+M*O $htKB0c8fP/69"&ʷE!8p.a93)i%(c26xx`I87xQaJm X416[JE4%s_B󀧞S焩p26iIj`5kۃ^.ːrї3Z !QgD?5QCr=EBzHX822g`:B'@Ѫ3詼 I$1F3BZBIǗ Պ tخ GɪF#ѭ g-F/uVj3 `_! gn6^$ʃnh P` &,~Yh=~r?a w(j?]]pW[I½gl{aE41aFƩgN=c69dlsBU_ɥy+pX6Jݸ F5 6,c!.'5b4m XAFN! :^lڂ2rt y1CP&#p@E|X3dzūF&2ؿ (l"^"km_ \=c 4 ,n Y[hH&c3bTZK({hǹ fHYFs5aBOȒ!z>W0` CNF0ٍy?s ŋR!2K+Ze2_gE#ɠHGE\ώiHRS :K.3gD*$m4A|#~Mu0Pm r3R`-F~mtoU|ܧj-sf<#焩15aʚN*V͏xX=cɫ- U5F1΢oCF8pN=cw~o!:4af[U|̵-ov}{6V)J\mf mU PsxS4 kCR*VPjzoշ?[*Ԫ G[QsRj\-YnIvKߏTHuqjRq,:-Sl跆̦ښVf3EeRX%=Z.TR}l7OTUuQAxx8UMq\,!0*p$j O XcQgE1uXcQgE1115IENDB`nb1qDD\PNG  IHDR r gAMAPLTEpppp͞ {zTXtDataTimex345254 26zTXtAuthorx34Rptv w QsQpQt Vr v su2 q|IDATx܋V0И.y!W-Þ4@^%qQwR"D0  `@"D0  `@b|fe ̫-9.tapem :1^DKF ƾxԹh{7bÕڇ0 }nba*3 Fc=/?;1Z )~~q2FӦ*n>E&~ xZ`Dà $0l/5_%a*"tq%`UG]1E08Rx| a0y%55aP܉Q#I22?m >G }dDy{;k*tcھMۇ*BJ:0"# ií8neȘQ39 9 Qq}dj .OGvg @i_-FF [rVwxhmE+ƅ:>0Lg%CUgUk;tb00Q;ftWFI_ h51Kx}+ٓ1*P E-=ޗ! #kyd.r0b\H猴K#c>:2 (ݗLߴ 9-f[b-˥C+n31zhmp@,}e+1_)FЖ*CkV +q|^ꤋ҂1ޜ1~KܜVZ7WFRBKx{WguC%@1am"E| 0OTCڲƼ'|% 1t[*302#-`aDmQ9yo ƧKx9c-* cڢ53%|c~<2D`taGĠ(`g[t`mti &Pi/--+cG0  `@"D0  `@"ATIENDB``!%ibYOECO^H@ p`ER4xڭUjA>3gfrkhԨ$ThBƔ"tS#,H[PֽEF!/ɥi?L&3;gsaP]qK C /h u{BHlCY(C 6oP~`Mհ6(Ch\$w o6@N`ASz}fť֒Q[:q5'An 7 n^ֻDd\ym2rAZnrͲ/Fax:} B$H}"WZ,Yѵ BJpBaJԑˤrL(e=<5TB>%y5^UZi;$Ḍ~c"C4͐]7g37:!nQߵ6"v0B3י8S=H︭j{yW;Fǻp fn x}#K{.אufs;gD'I=g$=OMREJէGO੾fIZlv9UuՁ6~Eeg2 _/&]u|+fT>8̭2[q>T̓N_; L`!g* 5Z&F @v@ p`ER4xڭKkSA̙IU-bZ_`E)vaJ Їiq..,pW)؝FpU* XzqiytdrgΜ;;sANAcd^@x-X Z=ڃS9G Bnfn.I͹,$FwD{p`L^;^bhYI޿_ TQfqW;C0@E` \hOY> BLfa;yqzE[塙ܛͲV5vX,.F^ܫTjA1," qȫ8K;qweV}|dU:Ojw\Sߖ< sbɯ&ťRvis \fV='Li>0dS.uMU?X,hV-fuRy.i=q}Ou+mG,)uw]Z&9AЪ<ޡ(*Y0.q\Ti)F3;ЫR3HQW]"%TVf =#6Cm5 44d'4jܳ4²|U7#MڔD4rM}:d?(|୮ynh鎎5XPNG  IHDRAvgAMA|Q pHYs.#.#x?vtEXtDataTime11-24-1992k-tEXtAuthor1992 ACCUSOFT INC, ALL RIGHTS RESERVED4FIDAThCY0n)iJp)!%$g]O,:m?'7<4LDuGoMͣ`X0յ#}۷;B۸m Uˡ4ܥ!Ք*ȅm%w˛ՠ=5WG6cϗ(f?v;ƽd5J_<i<4lcH$GP P{*+ NRVQQU{k!sՕMqFЋ" gXl'I<_&h(I eI3ii~:iY*:&\{tL;$zLEuqQ}z5yJQ4 spw "_aA^T^d[/Q栵y,h?j_xE\Nb* -M6VytGOcM!n[`kۖ\+[k䛸PVUʑ#F/&^qYVy N0h $)4B52 p=%̤nHP2PY*RRQgO9h,a@PF@ϒvk@zi$Y1XJ 3#'@B@A99D3l9 oldǚYX%VrT+]޼$Yq+(t`@WV[j:jsY1^|P ?V[dx< 3,h؋ꪋLۋu2`i .{"6j:[ j4Ajx'OFK4g5IwK2p81?l{_Nb&%Cx4MF4Ԥ >(z9phV\'.$U&&e %2rIfuOkUy-k\C'7"6R%}]>;Hn֡~4&3S>| a|+ wMv}P}S p=C6AUHJ|~~ <ş 6Z_.,ks|P|[Q uBxc@F9겫⃒<S=| u,]h|d]5MPRq>1g,`M?ʢj ]pn"?WO}~|EXRMvCb\_ހs_oC^c '8{>^%qjˉ*ʂ.U4 Mʚjr#i'O&#'Y.eXap#f˞  A}0|eR0^1 Pİʉ6.rASt3N;1RX& i*M9sxO k R#Tw4mcHe'GKnc64} vLӬ)GeA܆c&01]Y02KQBB9S9v4xzbK@ʘGsiErko]! %EG5کHI-٩M3Τ{'}{2(?^?}of[Uj"61{QOU8AU KQv*]H&N b]sr1H*GgzXi_ #iV/5y!6AQohKBga_L^CϏSoFC=Dȫ\!BxUz=͘]!+)s¸qi;>;,8iɭBH1]와U(+j.7`&L˳S;;iJ :X9sC͎73xGߛYUc܃O@q-ZbKAPuyr,SE 9Sgr\=Jh_ Hr9̺Xh;׽AoU.mN5P)oWܙTjz{q .K#ǍgH&*G5蕷yIHC33DP)1Ha8%.(W ܁/VEBSg$ks8%3%+M\4'pݡ-AxsDP| zezCUEڲO 6@:8 .LwgKsj܅"Bq*"a]4]U4\־QS*NPؑStHhOneP.l;?)7+g(Ľf{3f57*>TdJšڹSm*h]܊W9VG;roP}~2z sh_QR'2SJQ2cSi,g0& uٚ ܰ5 !BHMbPXK37;q59];b#q<F3, sXZg ='{JWuDzoV"fNXO~zs4K㓵yt%YKlg̞,xӥ06V\ '|iG|NHh-vz8y'sN䥔9 Ήع3pBD$N^ 0FfՆn=2JcɋT-"xcqM'iM:Nzx큚F|L"zR޸>R О6y,.ObO{w H4jȖ2l|v}?^UL}OkŞᙴ?y_D~ݲy=mːףS e7_"m/NIޠ=nzpݘwlzV-y8'Vx ;֦'4r>4GH#D."ݎ<& Qc3Q(8ThzBTK$]3 zT e0GōM j:"0~w20lkCMxw mfBDF:ٔO奈mE5lIKGu 'qDE16*ֱQ.ïntB8].G~G7RUPilul>i!d اx5 MX(:, A/ H&٪׊c,nsd~eFg=RN7s1E)z B q$Ux12Ck{t$`ӹn,V:@M]U{H:PHUv[ƿP{Nf.YxS,y**j/7$UE2QvĦNʈўh97)ߕFh2篎b$_:@?i]suѷ9}VE#Owѫ N( ɶȂDt>I0`-†U<{ltlFyS٤7fMcBT\it Y_e1wS3=Xƒu~A-稴G{q: z FIj zh-w;m53$a%tɋT |ΑXGL/Ώb;tz_!Rvf 1RΕ$GpcIq_$ _^-?ϽFDP-$LX,S*ֱEuvlF:%\#j+$Ӂ7k6͆4)I7z'IIB\t}zb9iW^!(Ja_01x, &z"@0ꀖMFg5yXyÍ⤛> O2;EP] ٩2.R{?KLqlk˰"`!jZZ _]=2݄IΓM@Fsj _k1%J5Ȫ_^G`YO7ʠ>,=z:vz'Mɟ/e$] 槷l넂 AA:I>w8$Cy v{uz*Lwżg? }{tӹMJlX K_ΉP}9n AK2uZѴptJ6EϪ}9y٬80+8*Zs@A?RQBeQD{9wUKcGp;U^v -'H:ޤN h.zrr\}\Qe}k'ltvjS ?bh"j~d9qm=,Gd 0ƎZ0\2 KV׍*li42F'-:a+;i_V6 *(Ebc{Tm_h"guܪ"ZT+闥uNi=vhR?:<vs zۗ+QkΕl:WbÍJ'%Np_j&L(ۊ 歨}#u'NFá:cƙm4)NQC|pe$PO&Ylѝ,,1GGLOcWB"IB,C|M\n+Xj>)k3f*skFgwB*>a;cQ%q='p?ٮ]1WۊW;*$j?H_—qt[XE݅" a!תm$Y$uS7W t* u~]|_b;ݾN cJ$UbdHԅ2o'HJ^jI"jA&@US*$aڌ[uNɦFMlʝO ٓ;/1F' h_@?^+2''CGOL_ðIH?P*ÍAaUqXQjثuLG* M¬ȃ{c 2ft`0˹k:v(%kq@q1bG[y7xħ g.1CQ0O'>E0W5S\ 俶<_I>tt]Lg0J'!=fd\J,yMUC ]=24")iWoɝ'KҩF;Wxe:ve~k^t-*^IENDB``! ^+VvZ|pAT@ p`ER4xڭUKA3o?tQs+c6آ ":)*(lBBFT ءNFB:tFuЩOlk,ogϼ7oiE%2ri6`5?dvXD"$V=M(JH.4-QlJ︇[5dW޻M4Z,#A;{Z;'ڼ:Ԋ+k`w4ϠnN +g(AuUϵMtVۅ%:?d?`[Ï0r8{0a/cnj2;sxx,~~IS G[>n\ؖ]w5b>l[rj5RޡKx,JYxAϣ!3u pʲ[tC)/+M&ތh#H ǨcA 'e*pD@Hv-ZtQ`Dm[ `}Q ݹ{s}8lB9(Fe_U'0)Mo ~+j 6w q0jf53Vͨ[^NWSkeJ勳'>VxޝSv^ļ>&pd]lh.̟3x'+EêǺ 4F6sB37C=փn.A}m?H/A$+pgd hЂ$:K\b,ӳgkd-eLZOZKU8FSz)>5u4;3:X7%m]O^v}np?Й/o_'X@ۈDd ^0  # A2j Tvu␻_`!j Tvu␻@ p`ER4xڭ=l1NjA jQKK@$"H'@U $"X u6 KňaҥE ]ȥ)䧎9{~{3bH!HA0-XZ-ڂhԟ3/`{']^$נBϘoV~b'hȟIj+ h,$΃ ) DUԺ!9 /.j5,dqLPޠimG \WIюUJ T.R͢^j=A6y:eJ&FȰ_=SKKrD'aN3 ;C#5ܷpZx$N87,Êz0Nl㴛F(Io#6ޕM&s^;ėT$)B\}^,44KZhp0Jjh,7>i=m4SМdeΙBI47 Ore4.:xK:$|fS8I:ni~ťԖXmUH@h}56lMF!W]ӄoGKa=2ΧʏUP_ws A=oDd u0  # A2&~rGc’_`!&~rGc’ @ p`ER4xڵVMLQy]JP@J"p3 F 1]L( - Dp ^|0JN{Xaӳ>0=PqH7h ߱'Ҭ^ +Њb"iQojֈ0zcJeGB2Ȩ.kzmRaqZ=ޠlo!%`Ga( %̰+FeSQ-D>SkDKKUURVb.aŞ$V2qh֏Sܵ=̏V歹)< 3 sne9)9oJ4~+7'WJlZwt'y9]Doun3?w#vaxCu|rrXssZM[ l @=qX^]!8uA T'e!OF^Zi죓u1GW*N0空j2^a~-~-N=%vU߰M :))g蘆t澙[Y<7әX:k&Lff21EMB4SEkM:!: 09Oonu,@ }<3:HIBk(aCt|H/}9?q6eh.Hxv4sL!6-I"[vϒۦg, C桜 ƹghvM/ݢ9λ%)^ӘsO_ Y]F&qQw}S㲄8u^};kxW-w,܈nE>E;0E&}Ɯc> nk&;n>vMx[ayGuGܺq_o]EU{or/VsS?0X ;Dd ]0  # A2\R=;795-8_`!0R=;795- @ p`ER4xڭVOA~3vvj*X1Ң!&!CMDoA=xЛW#pѤ&h--ӼLg7o2; qlLF 5 FXiswQW݃(9(Fp-1"NTBh\ 5$YLrukM퐍3nʓt=̇8+AT4h8QkAW~GD&(rRii?5'y)垏M8ַQչ Ӳ"l+\%T3]b^i!>#Եj#gITEN NIbxCddgdG͓C7YᇍmZWh-b.FN_)n*s7ee2kֶsžZa<΂8 '?[NS6ԜT4 +5;_zf,?jz!5{zc2ҁbT 0[Xx0WHAzH ۚOTjǧoݢ&EG-Q[!/{zʲxxozK3鰉aYLeٴ{Io%{VRnx\GՎ{~료󵧥;}q,c|gDd 0  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~Root Entry_ F:P(cData "WordDocument^,ObjectPoola"dOO(c:P(c_1060938571dO)dOO(cdOO(cOle PRINTlCompObj#{  !"$()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMOPQRSTUXYZ[\]^_`abcdefghijklmnopqrstuvwxy{15% 1:&@ p &&#TNPPD2OMi & TNPP &&TNPP   p@  - "-- !p@ -- "-&1A& - &iA& -  "-0---  "-1--&-3-:8 tx|_|hx_t! !t)%)[|]x[ttx|)--&--D-- @Times New Roman- .2  PROFESSOR#(+#%,(.--D8--  .2 Uadvises.--Dl--  .2 STUDENT%)(&(%.&*r-3- $}s0s0}--&&Rr7-3- $XsX}0}0s--&--5@--  . 2 ]1.--10--  . 2 M6.--"System-&TNPP & dO)"Microsoft PowerPoint PresentationMSPresentationPowerPoint.Show.89q!_ Peter RobPeter Rob Oh+'0x `ObjInfo %PicturesCurrent User &;SummaryInformation(' h  No Slide Titleskippye Peter Robit4teMicrosoft PowerPointP@M@M@@|+3Grg  1:& &&#TNPP 2OMi & TNPP &&TNPP    - "-- !-- "-&G& - &Gy& - "-I--- "-I--&FQ-3-:8 R'N(R*FFF*('   R' *('CDCS'R(S*--&--8 -- @Times New Roman- .2 . PROFESSOR  .--8h--  .2 .radvises .--8$--  .2 ..STUDENT .&&S+-3- $P*P''*--&&&+-3- $'**'--&--3--  . 2 1 .----  . 2 M.--"System-&TNPP & ՜.+,0 PowerPoint Document( DocumentSummaryInformation8N_1060938650dO)@iO(c@lO(cOle V( / 0LDTimes New RomanP*bbv 0b( 0 ` .  @n?" dd@  @@`` tl  c $@y g4KdKdv 0bppp@ ܉ʚ;2Nʚ;<4!d!d?" dd@,|?" dd@   " @ ` n?" dd@   @@``PR    @ ` ` p>> $ (  |   6b P  T Click to edit Master title style! !  0d   RClick to edit Master text styles Second level Third level Fourth level Fifth level!     S  0i ``  X*  0o `   Z*  0s `   Z*H  0޽h ? ̙333 0  s(  X  0|0` X  0|0`X  03|I   <\(;H ; PROFESSOR   <dp; H 9advises  <襸 ^H 9STUDENT^B @ 6D3|`^B   6D3| `    <詸,h 31   <x ^ ` 3MH  0޽h ? ̙33r0  0   WOn-screen Shownok Times New RomanDefault DesignPowerPoint Presentation  Fonts UsedDesign Template Slide Titles15% H&@ p PRINTWCompObjz{ObjInfo|Pictures&&#TNPPD2OMi & TNPP &&TNPP   p@  - "-- !p@ -- "-&1A& - &iA& -  "-0---  "-1----D-- @Times New Roman- .2  PROFESSOR#(+#%,(.--#D<--  .2 Yadvises.--Dl--  .2 STUDENT%)(&(%.&*r?-3- $8}8s0s0}--&&"r7-3- $0}0s(s(}--&&ZNg-3- $eT[T[e--&&N-3- $TT--&&B7-3- $t|3L.D--&&r7-3- $t|.3--&--"System-&TNPP & dO)"Microsoft PowerPoint PresentationMSPresentationPowerPoint.Show.89q!_ Peter RobPeter Rob Oh+'0 `h  Current User};SummaryInformation(~ PowerPoint Document(DocumentSummaryInformation8No Slide Titleskippye Peter Robit5teMicrosoft PowerPointP@@˂@M@Fa%3Gg  H& &&#TNPP 2OMip & TNPP &&TNPP    - "-- !-- "-&G& - &Gy& - "-I--- "-I----8 -- @Times New Roman- .2 . PROFESSOR  .--8i--  .2 .sadvises .--8$--  .2 ..STUDENT .&&k+-3- $h*h''*--&&&+-3- $*''*--&&#7-3- $"4"4--&&7-3- $44--&&+-3- $'*--&&&;-3- $'*:7--&--"System-&TNPP & ՜.+,0 3( / 0LDTimes New Romanh*bbv 0b( 0 ` .  @n?" dd@  @@``   0e0e    3 A| 8c8c     ?1 d0u0@Ty2 NP'p<'pA)BCD|E||S"@y g4KdKdv 0bppp@ ܉ʚ;2Nʚ;<4!d!d?" dd@,|?" dd@   " @ ` n?" dd@   @@``PR    @ ` ` p>> $ (  |   6a P  T Click to edit Master title style! !  0d   RClick to edit Master text styles Second level Third level Fourth level Fifth level!     S  0di ``  X*  0n `   Z*  0s `   Z*H  0޽h ? ̙33 Default Design 0 A9 (  X  0|0` X  0|0`  <Н(;H ; PROFESSOR   <ءxC H 9advises  <\ ^H 9STUDENT^B @ 6D3|`pRB  @ s *D3|P ` ~B   HD3|?"8~B  HD3|?" 8~B  HD3|?" ` ~B  HD3|?" ` PH  0޽h ? ̙33r0;- 0   WOn-screen Shownok Times New RomanDefault DesignPowerPoint Presentation  Fonts UsedDesign Template Slide Titles15% c&@ p _1060944544dO) lzO(c lzO(cOle PRINT CompObj{&&#TNPP 2OMi & TNPP &&TNPP   p@  - "-- !p@ -- "-&1A& - &iA& -  33"-E---  33"-\----y!-- @Times New Roman- .2 ]%DRIVER(((&(.--u--  .2 YTRUCK%)((-.--u(d-- @Times New Roman- .2 Ydrives.&>BwO-- $pMpCDCDM--&&BcO-- $CM\M\C--&--F (-- @Times New Roman- .c2 ME=During some time interval, a DRIVER can drive many different (0 /(((%(  0. .2 MHTRUCKs%(((-. .=2 E$and any TRUCK can be driven by many %)((-0. .2 DRIVERs(()%(.&s-- $$$ll--&&s-- $$$ll--&&cO-- $DL_Z--&&>c{-- $@HZx_p--&&:O-- $C>LD--&&:B-- $LD>tC|--&--"System-&TNPP & dO)"Microsoft PowerPoint PresentationMSPresentationPowerPoint.Show.89q!_ Peter RobPeter Rob Oh+'0 `h  No Slide Title Peter Robit Peter Robit11eMicrosoft PowerPointObjInfoPicturesCurrent User ;SummaryInformation(P       !$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJLPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{}~P@`OH @̫@23G g  c& &&#TNPP 2OMi & TNPP &&TNPP    - "-- !-- "-&G& - &Gy& - 33"-1m--- 33"-1t----)a-- @Times New Roman- .2  DRIVER .--(--  .2 TRUCK  .--(-- @Times New Roman- .2 drives  .&j-- $ll--&&w-- $tt--&--X-- @Times New Roman- .c2 o=During some time interval, a DRIVER can drive many different                   . .2 oTRUCKs   . .=2 $and any TRUCK can be driven by many          . .2 DRIVERs .& '-- $  $$--&&R W'-- $V S S$V$--&&Zw-- $\]u t--&&Zw*-- $]\t)u&--&&i-- $lk --&&i+-- $k'l*--&--"System-&TNPP & ՜.+,0    WOn-screen Show -s Times New RomanDefault DesignPowerPoint PresenPowerPoint Document(!DocumentSummaryInformation8_10609455276&dO) O(c O(cOle "5( / 0LDTimes New Roman/bbv 0b( 0 b  .  @n?" dd@  @@``  , 0e0e     A| 8c8c     ?1 d0u0@Ty2 NP'p<'pA)BCD|E||S"@yg4KdKdv 0bppp@  dʚ;2Nʚ;<4!d!d?" dd@,|?" dd@   " @ ` n?" dd@   @@``PR    @ ` ` p>> $ (    6C P  T Click to edit Master title style! !  0F   RClick to edit Master text styles Second level Third level Fourth level Fifth level!     S  09 ``  X*  0p| `   Z*  0m `   Z*H  0޽h ? ̙33 Default Design>  0 +~(  ^  6| ^  6|   <tx0? 8DRIVER  <|( ) 7TRUCK  <o( N  6drives^B  @ 6D| ^B   6D|0 A % <@0PV  oDuring some time interval, a DRIVER can drive many different TRUCKs and any TRUCK can be driven by many DRIVERspp,=$B & TD|?"H@ @ B ' TD|?"H B ( TD|?"0(B ) TD|?"(B * TD|?"0 B +@ TD|?" H  0޽h ? ̙33r0=/ u0tation  Fonts UsedDesign Template Slide Titles15% :&@ p &&#TNPP 2OMi & TNPP &&TNPP   p@  - "-- !p@ -- PRINT#%# CompObjK{ObjInfo$(MPictures"-&1A& - &iA& -  "- --&A-3-:8 48==%844=84"4 8"=--&-  "----  "-I----i-- @Times New Roman- .2 MDRIVER(((&(.--irl--  .2 MTRUCK%)((-.--iD--  .2 Ma ASSIGNMENT(,(6%(%.--H--  . 2 e1.--0--  . 2 M6.&B2'?-3- $ = 3H3H=--&&2?-3- $3==3--&----  . 2 1.----  . 2 5M6.--"System-&TNPP & dO)"Microsoft PowerPoint PresentationMSPresentationPowerPoint.Show.89q!_F Peter RobPeter Rob Oh+'0 `Current User'*N;SummaryInformation(O PowerPoint Document()+jDocumentSummaryInformation8|     0! 12#$%&'()*+,-./P3845679J:;<=I?@ABCDEFGHKOLMNQVzRSTUceXYZ[\]^_`abdfjghik|lmno{qrstuvwxy~h  No Slide Titleskippye Peter Robit4teMicrosoft PowerPointP@%@@>R@3$3G g  :& &&#TNPP 2OMik & TNPP &&TNPP    - "-- !-- "-&G& - &Gy& - "- H`--&T<-3-:8 `g\h`j j h gGFG`gJHJjhgag`hajJ--&- "-HX--- "-H----yX-- @Times New Roman- .2 oDRIVER .--yXy--  .2 oTRUCK  .--yXl--  .2 ov ASSIGNMENT   .--U64--  . 2 K"1 .--Uf4@--  . 2 KJM.&fck-3- $`j`ggj--&&f[k-3- $gjXjXg--&--U^4@--  . 2 KJ1 .--U.4--  . 2 KM.--"System-&TNPP & ՜.+,0    WOn-screen Shownokj( / 0LDTimes New Romanȕbbv 0b( 0 ` .  @n?" dd@  @@`` tl c $@y g4KdKdv 0bppp@ uʚ;2Nʚ;<4!d!d?" dd@,|?" dd@   " @ ` n?" dd@   @@``PR    @ ` ` p>> $ (  |   6 l P  T Click to edit Master title style! !  0@Q   RClick to edit Master text styles Second level Third level Fourth level Fifth level!     S  0dU ``  X*  08W `   Z*  0\2 `   Z*H  0޽h ? ̙33 0 QI(  X   0|@0 0 X   03|@0 0 X   0|0 X   0|0   0D̙ >DRIVER  0T̙ =TRUCK  0̙  N ASSIGNMENT(   c $4̙8< 71  0d-̙8^ 7M^B @ 6D3|p@p^B  6D3|p0 p  c $^̙8 , 71  0L`̙80   7MH  0޽h ? ̙33r0  .0 Times New RomanDefault DesignPowerPoint Presentation  Fonts UsedDesign Template Slide Titles15% &@ p &&#TNPP 2OMi & TNPP &&TNPP _10609463280dO)eO(cO(cOle PRINT-/ CompObj{  p@  - "-- !p@ -- "-&1A& - &iA& -  "- ---  "-M ---  "-L----i-- @Times New Roman- .2 MDRIVER(((&(.--i --  .2 M TRUCK%)((-.--iD--  .2 Ma ASSIGNMENT(,(6%(%.&r2'?-3- $ = 3x3x=--&&2?-3- $3==3--&& 2?-3- $3==3--&--ef-- @Times New Roman- . 2 Igets.--a--  .2 E is driven in.&2?-3- $3==3--&&'?-3- $4<" --&&2'o-3- $l"d4<--&&g?-3- $ ^<c4--&&2go-3- $dlc<^4--&&c-3- $\\--&&rc-3- $}ss\}\--&&:Gc-3- $E;;\E\--&&R_c-3- $]SS\]\--&--"System-&TNPP & dO)"Microsoft PowerPoint PresentationMSPresentationPowerPoint.Show.89q!_n Peter RobPeter RobObjInfo.2PicturesCurrent User14;SummaryInformation( Oh+'0 `h  No Slide Titleskippye Peter Robit4teMicrosoft PowerPointP@@{@@>R@3G g  & &&#TNPP 2OMis & TNPP &&TNPP    - "-- !-- "-&G& - &Gy& - "- H`--- "-pH--- "-H----yX5-- @Times New Roman- .2 o?DRIVER .--yPX--  .2 oTRUCK  .--yXl--  .2 ov ASSIGNMENT   .&&fck-3- $`j`g(g(j--&&fCk-3- $gj@j@g--&&fk-3- $gjjg--&--x#W-- @Times New Roman- . 2 ngets .--vU=--  .2 mG is driven in   .&fk-3- $gjjg--&&>Vck-3- $@gAjaZ`W--&&>fc{-3- $`zawAg@j--&&V#k-3- $ WZ j!g--&&f#{-3- $w z!j g--&&6Z;w-3- $:\7\7t:t--&&&Z+w-3- $*\'\'t*t--&&Zw-3- $\\tt--&&Zw-3- $\\tt--&--"System-&TNPP &e ՜.+,0    WOn-screen ShownokPowerPoint Document(35"DocumentSummaryInformation8_1060948743,J:dO)~O(c~O(cOle 3( / 0LDTimes New Romanbbv 0b( 0 ` .  @n?" dd@  @@``   0e0e    3 A| 8c8c     ?1 d0u0@Ty2 NP'p<'pA)BCD|E||S"@y g4KdKdv 0bppp@ uʚ;2Nʚ;<4!d!d?" dd@,|?" dd@   " @ ` n?" dd@   @@``PR    @ ` ` p>> $ (  |   6 P  T Click to edit Master title style! !  0   RClick to edit Master text styles Second level Third level Fourth level Fifth level!     S  04d ``  X*  0g `   Z*  0Pm `   Z*H  0޽h ? ̙33 Default Design!  0   a (  X   0|@0 0 X   0|0 X   0|(0   0/̙@o >DRIVER  0m̙ =TRUCK  0,̙  N ASSIGNMENT( ^B @ 6D3|p@p^B  6D3|p0 pB  TD3|?"p p  Bt3|?" 6gets  N3|?"p  > is driven in  B  TD3|?"ppB  TD3|?"@pB  TD3|?"p@B  TD3|?"0 pB  TD3|?"p0 B  TD3|?"(PPB  TD3|?"( B  TD3|?"(B  TD3|?"(H  0޽h ? ̙33r0;- V0      !"#$%&(,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQSTUVWXY\]^_`abcdefghijklmnopqrstuvwxyz{|~ Times New RomanDefault DesignPowerPoint Presentation  Fonts UsedDesign Template Slide Titles15% $:&@ p &&#TNPP 2OMi & TNPP &&TNPP PRINT79PCompObj'{ObjInfo8<)Pictures  p@  - "-- !p@ -- "-&1A& - &iA& &8I-3-:8 6.6$%$\[\6d`d :8:d--&-  "-!A`---  "-!a`----U-- @Times New Roman- .2 CUSTOMER(( %,6%(.--\--  . 2 owns'.----  . 2 :CAR()(.&Z?-3- $88``--&&-3- $--&--yo--  . 2 ]1.--y*--  . 2 ]GM6.--"System-&TNPP & dO)"Microsoft PowerPoint PresentationMSPresentationPowerPoint.Show.89q!_U Peter RobPeter Rob Oh+'0\ `h  No Slide Titleskippye Peter Robit4teMicrosoft PowerPointP@&_@@@x3GXCurrent User;>*;SummaryInformation(+ PowerPoint Document(=?>yDocumentSummaryInformation8Rg  $:& &&#TNPP 2OMi & TNPP &&TNPP    - "-- !-- "-&G& - &Gy& &\m-3-:8 h?d@hBbbbB@?h?" "B@?_`_i?h@iB"--&- "-a 8--- "-a! ----P/-- @Times New Roman- .2 FCUSTOMER  .--P/--  . 2 Fowns  .--P/_--  . 2 FiCAR .&>kC-3- $hBh? ? B--&&>;C-3- $?B8B8?--&--)C%--  . 2 /1 .--)4--  . 2 M.--"System-&TNPP & ՜.+,0    WOn-screen Shownoky Times New RomanDefault DesignPowerPoint Presen3( / 0LDTimes New Romanbbv 0b( 0 ` .  @n?" dd@  @@``    0e0e    3 A| 8c8c     ?1 d0u0@Ty2 NP'p<'pA)BCD|E||S"@y g4BdBdv 0btppp@ uʚ;2Nʚ;<4!d!d?" dd@,|?" dd@   " @ ` n?" dd@   @@``PR    @ ` ` p>> $ (    6C P  T Click to edit Master title style! !  0dF   RClick to edit Master text styles Second level Third level Fourth level Fifth level!     S  0f ``  X*  0j `   Z*  0] `   Z*H  0޽h ? ̙33, 0  l(  X  03|p @X  0|P @X  0|@  < ; CUSTOMER   <N  6owns  <9 5CAR^B  @ 6D3|p^B   6D3| P    <<0 31   < 0T 2  3MH  0޽h ? ̙33r0;  =0tation  Fonts UsedDesign Template Slide Titles15% ;&@ p &&#TNPP 2OMi & TNPP &&TNPP   p@  - "-- !p@ -- _1060948797DdO)P(cP(cOle ZPRINTAC[CompObj}{"-&1A& - &iA& -  "-!Q`---  "-!a`----U-- @Times New Roman- .2 CUSTOMER(( %,6%(.--5--  . 2 Rowns'.-----  . 2 JCAR()(.&Z?-3- $88``--&&-3- $--&&-3- $--&&:G-3- $E;;E--&&j-3- $ns--&&j-3- $sn--&--"System-&TNPP & dO)"Microsoft PowerPoint PresentationMSPresentationPowerPoint.Show.89qObjInfoBFPicturesCurrent UserEH;SummaryInformation( !_ Peter RobPeter Rob Oh+'0 `h  No Slide Titleskippye Peter Robit5teMicrosoft PowerPointP@'k@@@ 3Gg  ;& &&#TNPP 2OMi & TNPP &&TNPP    - "-- !-- "-&G& - &Gy& - "-aq --- "-a! ----P/-- @Times New Roman- .2 FCUSTOMER  .--O.g--  . 2 Eqowns  .--PL/--  . 2 FCAR .&>kC-3- $hBh? ? B--&&>C-3- $?BB?--&&..3S-3- $20/0/P2P--&&.S-3- $00PP--&&.C-3- $?B2/--&&>S-3- $?BRO--&--"System-&TNPP &8PowerPoint Document(GIW7DocumentSummaryInformation8_1061040879@TNdO)p3!P(cp3!P(cOle 3( / 0LDTimes New Romanܕbbv 0b( 0 ` .  @n?" dd@  @@``   0e0e    3 A| 8c8c     ?1 d0u0@Ty2 NP'p<'pA)BCD|E||S"@y g4BdBdv 0btppp@ uʚ;2Nʚ;<4!d!d?" dd@,|?" dd@   " @ ` n?" dd@   @@``PR    @ ` ` p>> $ (    6l P  T Click to edit Master title style! !  0Ъ   RClick to edit Master text styles Second level Third level Fourth level Fifth level!     S  0R ``  X*  0U `   Z*  0@J `   Z*H  0޽h ? ̙33 Default Design 0 vn (  X  0|p @X  0|@  < ; CUSTOMER   <j  6owns  < Y  5CAR^B  @ 6D3|p^B   6D3| p B   TD3|?"   B  TD3|?"  B  TD3|?"  p B  TD3|?" p H  0޽h ? ̙33r0;- 0 ՜.+,0    WOn-screen Shownok7 Times New RomanDefault DesignPowerPoint Presentation  Fonts UsedDesign Template Slide Titles15% *:&@ p &&#TNPP 2OMi & TNPP &&TNPP   p@  - "-- !p@ -- "-&1A& - PRINTKM\CompObj{ObjInfoLPPictures&iA& &( -3-:8 OCODCDOMHMRPRM--&-  "-Ll---  "-H(----\(-- @Times New Roman- .2 EDIRECTOR()%)%,(.--u\--  .2 directs.--`--  . 2 PLAY#%((.--a--  . 2 E1.--ed--  . 2 IM6.&W-3- $PP--&&s-3- $ll--&--"System-&TNPP & dO)"Microsoft PowerPoint PresentationMSPresentationPowerPoint.Show.89q!_ Peter RobPeter Rob Oh+'0h `Current UserOR;SummaryInformation( PowerPoint Document(QSpDocumentSummaryInformation8h  No Slide Titleskippye Peter Robit3teMicrosoft PowerPointP@@&_@ @`T.4Gdg  *:& &&#TNPP 2OMi & TNPP &&TNPP    - "-- !-- "-&G& - &Gy& &d U-3-:8 p/l0p2JJJ20/p/20/GHGq/p0q2--&- "-J$--- "-I1----@1-- @Times New Roman- .2 6DIRECTOR  .--@--  .2 6directs  .--A <--  . 2 7FPLAY .--!N0--  . 2 :1 .--""--  . 2 M.&..s3-3- $p2p/0/02--&&-'3-3- $.1$2$/--&--"System-&TNPP & ՜.+,0 ( / 0LDTimes New RomanTGbbv 0b( 0 ` .  @n?" dd@  @@`` tl c $@y g4KdKdv 0bppp@ q> ʚ;2Nʚ;<4!d!d?" dd@,|?" dd@   " @ ` n?" dd@   @@``PR    @ ` ` p>> $ (    6  P  T Click to edit Master title style! !  0@    RClick to edit Master text styles Second level Third level Fourth level Fifth level!     S  0 ``  X*  0 `   Z*  0 `   Z*H  0޽h ? ̙331 0  q(  X   03|p X   0| X   0|P   0̙P!x >DIRECTOR   0̙0 x Kdirects(  0Y̙h  HPLAY(  0'̙  E1(   0X̙  7M^B @ 6D3|   ^B  6D3|X H  0޽h ? ̙33r0  0      !"#$%&'()+/0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUWXYZ[\]_`abcdfghijklmnopqrstuvwxy{   WOn-screen Shownok Times New RomanDefault DesignPowerPoint Presentation  Fonts UsedDesign Template Slide Titles15% A&@ p _1061041001XdO)@F4P(c@6P(cOle PRINTUWCompObj*{! &&#TNPP 2OMi & TNPP &&TNPP   p@  - "-- !p@ -- "-&1A& - &iA& -  "-Ll---  "-H(----\(-- @Times New Roman- .2 EDIRECTOR()%)%,(.--u\--  .2 directs.--`--  . 2 PLAY#%((.&-3- $--&&js-3- $ppll--&&f-3- $ll--&&f-3- $ll--&&Zs-3- $ ndj\--&&s-3- $'"jo--&--"System-&TNPP & dO)"Microsoft PowerPoint PresentationMSPresentationPowerPoint.Show.89q!_ Peter RobPeter Rob Oh+'0 `h  ObjInfoVZ,PicturesCurrent UserY\-;SummaryInformation(. No Slide Titleskippye Peter Robit4teMicrosoft PowerPointP@@ @:t4Gg  A& &&#TNPP 2OMiC & TNPP &&TNPP    - "-- !-- "-&G& - &Gy& - "-J$--- "-I1----@1-- @Times New Roman- .2 6DIRECTOR  .--@--  .2 6directs  .--A <--  . 2 7FPLAY .&..3-3- $2/0/02--&&.'3-3- $/2$2$/--&&>"C?-3- $B$?$?<B<--&&"?-3- $$$<<--&&'3-3- $/2%"$--&& .'C-3- $ / 2$B%?--&--"System-&TNPP & ՜.+,0 PowerPoint Document([]>DocumentSummaryInformation8V1TableSummaryInformation(`^3( / 0LDTimes New Romanbbbv 0b( 0 ` .  @n?" dd@  @@``   0e0e    3 A| 8c8c     ?1 d0u0@Ty2 NP'p<'pA)BCD|E||S"@y g4KdKdv 0bppp@ q> ʚ;2Nʚ;<4!d!d?" dd@,|?" dd@   " @ ` n?" dd@   @@``PR    @ ` ` p>> $ (    6O P  T Click to edit Master title style! !  0   RClick to edit Master text styles Second level Third level Fourth level Fifth level!     S  0k ``  X*  0h `   Z*  0z `   Z*H  0޽h ? ̙33 Default Design 0 }u  (  X   0| X   0|P   0X̙P!x >DIRECTOR   0Z̙0 x Kdirects(  0D̙h  HPLAY(^B @ 6D3|  0 ^B  6D3|  B  TD3|?"hB  TD3|?" hB  TD3|?" B  TD3|?" H H  0޽h ? ̙33r0;- 0   WOn-screen Shownok> Times New RomanDefault DesignPowerPoint Presentation  Fonts UsedDesign Template Slide TitlesOh+'0 0  # A2AOLd/e) _`!AOLd/e) @ p`ER4xڭMLAξNRb%E\Q&bbK<(iVҢ' ğ^=h/z41≣#&nmil:7oy?] OC;I7o?d}7, VH Cj0FNGF`:h.^jcpY.^hS^5ZnhDX$f F#/ԚI&v͊MQfZtY3ZQ~v@X6r`Kgymkr2@>3y.5hnGSuy!̞cvniggKys'u)1l[b!\[#~;mlK1WR3YѪRjU~zbTƌىG淢Ɉ\1|C1L ߌ& B7rQoK{_JU ]Eh:W)8j_|H&h|4ンxh$EM&PpqgY Wh9YqS{RG01&.$j^+I"?V^VhZh<~RuӸdxX=,TOS:RxGGW}?ձTM2dN-e\ \U%+D:cN-l3=`^ }WZ+_*Q0n;#R.eU.ri6^|a@h|48C$SDԋDU/LZ|>['yЄ,}S3DGD3gfrkhԨ$ThBƔ"tS#,H[PֽEF!/ɥi?L&3;gsaP]qK C /h u{BHlCY(C 6oP~`Mհ6(Ch\$w o6@N`ASz}fť֒Q[:q5'An 7 n^ֻDd\ym2rAZnrͲ/Fax:} B$H}"WZ,Yѵ BJpBaJԑˤrL(e=<5TB>%y5^UZi;$Ḍ~c"C4͐]7g37:!nQߵ6"v0B3י8S=H︭j{yW;Fǻp fn x}#K{.אufs;gD'I=g$=OMREJէGO੾fIZlv9UuՁ6~Eeg2 _/&]u|+fT>8̭2[q>T̓N_; LzDd 0  # A2g* 5Z&F @_`!g* 5Z&F @v@ p`ER4xڭKkSA̙IU-bZ_`E)vaJ Їiq..,pW)؝FpU* XzqiytdrgΜ;;sANAcd^@x-X Z=ڃS9G Bnfn.I͹,$FwD{p`L^;^bhYI޿_ TQfqW;C0@E` \hOY> BLfa;yqzE[塙ܛͲV5vX,.F^ܫTjA1," qȫ8K;qweV}|dU:Ojw\Sߖ< sbɯ&ťRvis \fV='Li>0dS.uMU?X,hV-fuRy.i=q}Ou+mG,)uw]Z&9AЪ<ޡ(*Y0.q\Ti)F3;ЫR3HQW]"%TVf =#6Cm5 44d'4jܳ4²|U7#MڔD4rM}:d?(|୮yDd 0  # A26^+VvZ|pA _`! ^+VvZ|pAT@ p`ER4xڭUKA3o?tQs+c6آ ":)*(lBBFT ءNFB:tFuЩOlk,ogϼ7oiE%2ri6`5?dvXD"$V=M(JH.4-QlJ︇[5dW޻M4Z,#A;{Z;'ڼ:Ԋ+k`w4ϠnN +g(AuUϵMtVۅ%:?d?`[Ï0r8{0a/cnj2;sxx,~~IS G[>n\ؖ]w5b>l[rj5RޡKx,JYxAϣ!3u pʲ[tC)/+M& @ B C J L N P Q X Y [ ] ^ e g i k l s t v x y      O P Y c m w x  st}|}denxPQ[\RTUbcefz{|78\^_`abcde|}>FGy%z%%%N&x&&&&& ' ' '''(')'''''''''''((((((G(H())I)K)~))))))))))))))))))#*$*i*j***++L,M,x,z,,,,,,,,,,,,,,,,,,,,,$-O-P-m-n-g.h.........// ///>0?0000000000000011 1 1 111111p2q2r2t222222222333343S3T3s3t33300000000000000000000000000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 00 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 (0 0\0\0\0\0\0\0\0\0\ 0\000000000000000000000000000000000000000000000000000000 0 000000000000000000000000000000000000000000000000 00 00 00 00 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000]0/77*9?C 0NkY}P{ +I-.034t67 !"#$%&'()+,-./012345678:;<=>@AB7 ;=@[]`{}#:::::::::ob$Ec}eE#"b$2Z_& b$k7$ցHb$r,a 0b$ "nD=Nʵb$kM^,5xV2$-I~Wcp"2$j Tvu␻2$&~rGc’2$R=;795-82$AOLd/e)b$ ,Dp_/Kvb$cmdIgb b$lQT6Zb$b1qDD\r2$%ibYOECO^ @2$g* 5Z&F @Kb$h鎎5Xb$,|eX )J4! b$:UJ`zLi&2$^+VvZ|pA&2$v^,Zy[ "])@ B (  X  C (ACH2-Q5AX  C (ACH2-Q5Bd  C &ACH2-Q7" |  S L1. ``TT`TTh  C *ACH2-Q5A1"h  C *ACH2-Q5A2"h  C *ACH2-Q5A3"t   6cTJA ? "t   6 YIA ? "t   6cTo[09.A ? " t   6mp 6A ? " t   6nqDA ? "   p1?. ``TT`TT Z  C *A CH2-Q10AZ  C *A CH2-Q10Bh  C *ACH2-Q10C"h  C *ACH2-Q12D"t  6\ %"BA ? "t  6`$VA ? "r  BjJ? `Z  C *AFig2q12aZ  C *AFIG2Q12Br  BjJ? `Z  C *AFIG2-Q11t  6[-LA ? "t  6]-LA  ? "  p1?. ``TT`TT  p1?. ``TT`TTB S  ? QRc\& ''''(I)~)x,,,...3 t@<d#4M t@!t@$4G/ t^t *t  !th&4 t2t H T}%t ' %t#t@dt<t t@txt 4i|t@mx tA!t@Mttm}lt P t iLt@@4IOX ` i r H*O*Q*X*_*g*t23R\| VYYdcq?HMO>DuN&O&x&y&&& (/()))))))$*'*j*m***T,^,:.d.2o2t23333333333333333333333333 Tom DiMauroHC:\MXCC\db\chapters_html\02Chapter_files\Answers to Review Questions.dockC4 fb $k Nv L lw 4wL gp"ng< e RPm -©? z _M F9 jXe  p |Y NJ % ='s231L :vRx |  r; [J_}cb N6 2 ee s V5H g]< `G~| !ZH@  ! Ժ*O* *Г 5  vj~  $J qh 4G=t&5  f8 I DN LOʊq&5.Vk"bU2 d&_U50Xb=j  )  3  3 A M Xy  @Y  =`yop _; :N i O LG4b & ">D*lJ h 'QC  h ( [g F8 1 pH&)  Y S d  PWy!lLj= X6>.hYMn>p$1> cm;?9[m?[? Vl? At?8X? }?0[%@ 7@ :VA/?B .bhB rWBJh1WB k:0D D lK+E N/E n F YF \F dGZMk G 3\;GwL aGUZQGup0H h0H UH.psH IvcKIF 7qI I MwI6#_I J!~[sJTN3JV˰/OK 9KnlhK EVqL vM BM sXM n=kM*DMl/P]&N N ]8Oƒjb@Ka Ua Jjb -{b^Hs";c sc lzcf_yc |V#dby>-Td6 md scge ZApe v?fdIp%-f D,g Ysg  h;J h s!hB.ؓ}i OZi 7j 2jz Kj ?j 6j cj;J;7j ek尒N:k BmkyΰA`$l q@l WYlO*5@m n Lun cn mKo ^&ofҽ'op"Wo0z 6p: QEp Nkjp p p 3pL/b2\q "q6nr5r zr Br -#rJ@ir HJr  r 9Ds s "8s`}s FPYt et9-=|t -$t "u!ZH2Eu /Au %u /av Q@v2;ܟev 3v F?-wXvMw 9x zj]x !x by ElTy =yL7D/y ry 5z /b_z Pz ) {lVMk0b{G1{0XbF;}0f} 2~ WX~ 2[~  C /2 * hh^h`OJQJo( hh^h`OJQJo(hh^h`o(. hh^h`OJQJo( ^`o(.^`.pLp^p`L.@ @ ^@ `.^`.L^`L.^`.^`.PLP^P`L. hh^h`OJQJo(88^8`o(.^`o(. hh^h`OJQJo(hh^h`o(. ^`o(.^`.pLp^p`L.@ @ ^@ `.^`.L^`L.^`.^`.PLP^P`L. hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo(hh^h`o(.hh^h`o(. hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo(^`o(. hh^h`OJQJo(h ^`OJQJo(h ^`OJQJo(oh pp^p`OJQJo(h @ @ ^@ `OJQJo(h ^`OJQJo(oh ^`OJQJo(h ^`OJQJo(h ^`OJQJo(oh PP^P`OJQJo( hh^h`OJQJo( hh^h`OJQJo(h88^8`B*OJQJo(phh ^`OJQJo(oh   ^ `OJQJo(h   ^ `OJQJo(h xx^x`OJQJo(oh HH^H`OJQJo(h ^`OJQJo(h ^`OJQJo(oh ^`OJQJo( hh^h`OJQJo( hh^h`56o(.88^8`.L^`L.  ^ `.  ^ `.xLx^x`L.HH^H`.^`.L^`L. hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo( ^`o(^`.pLp^p`L.@ @ ^@ `.^`.L^`L.^`.^`.PLP^P`L.88^8`o(.hh^h`o(.hh^h`CJOJQJo(qh88^8`.h^`.h L ^ `L.h  ^ `.hxx^x`.hHLH^H`L.h^`.h^`.hL^`L. ^`o(.^`.pLp^p`L.@ @ ^@ `.^`.L^`L.^`.^`.PLP^P`L. hh^h`OJQJo( hh^h`OJQJo(808^8`0o(.^`o(.pLp^p`Lo(.@ @ ^@ `o(.^`o(.L^`Lo(.^`o(.^`o(.PLP^P`Lo(.808^8`0o(.^`.pLp^p`L.@ @ ^@ `.^`.L^`L.^`.^`.PLP^P`L.^`o(hh^h`o(. hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo(^`o(.h ^`OJQJo(h ^`OJQJo(oh pp^p`OJQJo(h @ @ ^@ `OJQJo(h ^`OJQJo(oh ^`OJQJo(h ^`OJQJo(h ^`OJQJo(oh PP^P`OJQJo(h ^`OJQJo(h ^`OJQJo(oh pp^p`OJQJo(h @ @ ^@ `OJQJo(h ^`OJQJo(oh ^`OJQJo(h ^`OJQJo(h ^`OJQJo(oh PP^P`OJQJo( hh^h`OJQJo(h88^8`B*OJQJo(phh ^`OJQJo(oh   ^ `OJQJo(h   ^ `OJQJo(h xx^x`OJQJo(oh HH^H`OJQJo(h ^`OJQJo(h ^`OJQJo(oh ^`OJQJo( 88^8`OJQJo( hh^h`OJQJo(hh^h`o(. hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo(hh^h`o(. hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo( z^`zo(.^`.pLp^p`L.@ @ ^@ `.^`.L^`L.^`.^`.PLP^P`L.hh^h`o(. hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo(h hh^h`OJQJo(h 88^8`OJQJo(oh ^`OJQJo(h   ^ `OJQJo(h   ^ `OJQJo(oh xx^x`OJQJo(h HH^H`OJQJo(h ^`OJQJo(oh ^`OJQJo( hh^h`OJQJo(h88^8`B*OJQJo(phh ^`OJQJo(oh   ^ `OJQJo(h   ^ `OJQJo(h xx^x`OJQJo(oh HH^H`OJQJo(h ^`OJQJo(h ^`OJQJo(oh ^`OJQJo(hh^h`CJOJQJo(q hh^h`OJQJo(h^`B*OJQJo(phh ^`OJQJo(oh pp^p`OJQJo(h @ @ ^@ `OJQJo(h ^`OJQJo(oh ^`OJQJo(h ^`OJQJo(h ^`OJQJo(oh PP^P`OJQJo( hh^h`OJQJo( hh^h`OJQJo(hh^h`o(. hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo(h88^8`B*OJQJo(phh ^`OJQJo(oh   ^ `OJQJo(h   ^ `OJQJo(h xx^x`OJQJo(oh HH^H`OJQJo(h ^`OJQJo(h ^`OJQJo(oh ^`OJQJo(h^`.h^`.hpLp^p`L.h@ @ ^@ `.h^`.hL^`L.h^`.h^`.hPLP^P`L. hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo( ^`o(.^`.pLp^p`L.@ @ ^@ `.^`.L^`L.^`.^`.PLP^P`L.^`o(.^`.pLp^p`L.@ @ ^@ `.^`.L^`L.^`.^`.PLP^P`L. ^`o(.^`.pLp^p`L.@ @ ^@ `.^`.L^`L.^`.^`.PLP^P`L. hh^h`OJQJo(hh^h`o(.hh^h`o(.hh^h`o(.^`.pLp^p`L.@ @ ^@ `.^`.L^`L.^`.^`.PLP^P`L. hh^h`OJQJo( hh^h`OJQJo(     %"#$&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxy hh^h`OJQJo(^`o(.^`.pLp^p`L.@ @ ^@ `.^`.L^`L.^`.^`.PLP^P`L.88^8`o(.h88^8`B*OJQJo(phh ^`OJQJo(oh   ^ `OJQJo(h   ^ `OJQJo(h xx^x`OJQJo(oh HH^H`OJQJo(h ^`OJQJo(h ^`OJQJo(oh ^`OJQJo(hh^h`. hh^h`OJQJo(h^`B*OJQJo(phh ^`OJQJo(oh pp^p`OJQJo(h @ @ ^@ `OJQJo(h ^`OJQJo(oh ^`OJQJo(h ^`OJQJo(h ^`OJQJo(oh PP^P`OJQJo(^`o(^`OJPJQJ^Jo(- ^`OJQJo(o pp^p`OJQJo( @ @ ^@ `OJQJo( ^`OJQJo(o ^`OJQJo( ^`OJQJo( ^`OJQJo(o PP^P`OJQJo( hh^h`OJQJo(h ^`OJQJo(h   ^ `OJQJo(oh   ^ `OJQJo(h xx^x`OJQJo(h HH^H`OJQJo(oh ^`OJQJo(h ^`OJQJo(h ^`OJQJo(oh ^`OJQJo( hh^h`OJQJo(hh^h`o(. hh^h`OJQJo(@ 0^`0OJQJo(# hh^h`OJQJo(hhh^h`o(.h88^8`.hL^`L.h  ^ `.h  ^ `.hxLx^x`L.hHH^H`.h^`.hL^`L.hh^h`o( hh^h`OJQJo( hh^h`OJQJo(hh^h`CJo(.^`o(.88^8`o(.hh^h`o(. hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo(88^8`o(.808^8`0o(.^`o(.pLp^p`Lo(.@ @ ^@ `o(.^`o(.L^`Lo(.^`o(.^`o(.PLP^P`Lo(. hh^h`OJQJo( hh^h`OJQJo(h hh^h`OJQJo(88^8`.L^`L.  ^ `.  ^ `.xLx^x`L.HH^H`.^`.L^`L. hh^h`OJQJo( hh^h`OJQJo(h ^`OJQJo(h ^`OJQJo(oh pp^p`OJQJo(h @ @ ^@ `OJQJo(h ^`OJQJo(oh ^`OJQJo(h ^`OJQJo(h ^`OJQJo(oh PP^P`OJQJo(hh^h`o(. hh^h`OJQJo(h hh^h`OJQJo(h 88^8`OJQJo(oh ^`OJQJo(h   ^ `OJQJo(h   ^ `OJQJo(oh xx^x`OJQJo(h HH^H`OJQJo(h ^`OJQJo(oh ^`OJQJo( hh^h`OJQJo(88^8`o(. hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo(hh^h`o(. hh^h`OJQJo(hh^h`o(. hh^h`OJQJo(hh^h`o(.>^`>o(.88^8`.L^`L.  ^ `.  ^ `.xLx^x`L.HH^H`.^`.L^`L. hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo(p0p^p`0o(.  ^ `. L ^ `L.xx^x`.HH^H`.L^`L.^`.^`.L^`L.hh^h`o(. hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo(^`o(.^`.pLp^p`L.@ @ ^@ `.^`.L^`L.^`.^`.PLP^P`L.h^`B*OJQJo(phh pp^p`OJQJo(oh @ @ ^@ `OJQJo(h ^`OJQJo(h ^`OJQJo(oh ^`OJQJo(h ^`OJQJo(h PP^P`OJQJo(oh   ^ `OJQJo(h88^8`B*OJQJo(phh ^`OJQJo(oh   ^ `OJQJo(h   ^ `OJQJo(h xx^x`OJQJo(oh HH^H`OJQJo(h ^`OJQJo(h ^`OJQJo(oh ^`OJQJo(hh^h`. ^`o(.^`.pLp^p`L.@ @ ^@ `.^`.L^`L.^`.^`.PLP^P`L. hh^h`OJQJo(^`o(.hh^h`o(.88^8`o(.h^`B*OJQJo(phh ^`OJQJo(oh pp^p`OJQJo(h @ @ ^@ `OJQJo(h ^`OJQJo(oh ^`OJQJo(h ^`OJQJo(h ^`OJQJo(oh PP^P`OJQJo( hh^h`OJQJo(h88^8`B*OJQJo(ph>hpp^p`o(.h @ @ ^@ `OJQJo(h ^`OJQJo(h ^`OJQJo(oh ^`OJQJo(h ^`OJQJo(h PP^P`OJQJo(oh   ^ `OJQJo(hh^h`o(. hh^h`OJQJo(^`o(.^`.pLp^p`L.@ @ ^@ `.^`.L^`L.^`.^`.PLP^P`L. hh^h`OJQJo(hh^h`o(.h^`B*OJQJo(phh ^`OJQJo(oh pp^p`OJQJo(h @ @ ^@ `OJQJo(h ^`OJQJo(oh ^`OJQJo(h ^`OJQJo(h ^`OJQJo(oh PP^P`OJQJo(^`o((.)^`.pLp^p`L.@ @ ^@ `.^`.L^`L.^`.^`.PLP^P`L.@ 0^`0OJQJo(# hh^h`OJQJo( hh^h`OJQJo(h ^`OJQJo(h ^`OJQJo(oh pp^p`OJQJo(h @ @ ^@ `OJQJo(h ^`OJQJo(oh ^`OJQJo(h ^`OJQJo(h ^`OJQJo(oh PP^P`OJQJo( hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo(^`. hh^h`OJQJo( hh^h`OJQJo(^`OJPJQJ^Jo(- ^`OJQJo(o pp^p`OJQJo( @ @ ^@ `OJQJo( ^`OJQJo(o ^`OJQJo( ^`OJQJo( ^`OJQJo(o PP^P`OJQJo(( D P \hpxAnswers to Review Questionsnsw Tom DiMauroom om  Normal.dot Tom DiMauro1m Microsoft Word 9.0u@G@'c@j=(cL)՜.+,D՜.+,P  hp   WeslDocumentSummaryInformation8e8CompObjzjeyanFIX3 Answers to Review Questions Title 8@ _PID_HLINKSAN pCH2-Q5A pCH2-Q5B rCH2-Q7AA CH2-Q5A1AB CH2-Q5A2AC CH2-Q5A3 CH2-Q10A CH2-Q10B CH2-Q10C CH2-Q12DB  Fig2q12aB FIG2Q12B FIG2-Q11  FMicrosoft Word Document MSWordDocWord.Document.89q hh^h`OJQJo(^`o((.)^`.pLp^p`L.@ @ ^@ `.^`.L^`L.^`.^`.PLP^P`L.88^8`o(hh^h`56. hh^h`OJQJo(hh^h`o(.h^`B*OJQJo(phh ^`OJQJo(oh pp^p`OJQJo(h @ @ ^@ `OJQJo(h ^`OJQJo(oh ^`OJQJo(h ^`OJQJo(h ^`OJQJo(oh PP^P`OJQJo( hh^h`OJQJo( ^`o(.^`.pLp^p`L.@ @ ^@ `.^`.L^`L.^`.^`.PLP^P`L.hhh^h`o(.h88^8`.hL^`L.h  ^ `.h  ^ `.hxLx^x`L.hHH^H`.h^`.hL^`L. hh^h`OJQJo( hh^h`OJQJo(hh^h`o(.^`.pLp^p`L.@ @ ^@ `.^`.L^`L.^`.^`.PLP^P`L.hh^h`o(.h ^`56o(.^`o(.pLp^p`L.@ @ ^@ `.^`.L^`L.^`.^`.PLP^P`L.hh^h`.^`.pLp^p`L.@ @ ^@ `.^`.L^`L.^`.^`.PLP^P`L.h88^8`B*OJQJo(phh ^`OJQJo(oh   ^ `OJQJo(h   ^ `OJQJo(h xx^x`OJQJo(oh HH^H`OJQJo(h ^`OJQJo(h ^`OJQJo(oh ^`OJQJo( hh^h`OJQJo(h ^`OJQJo(h ^`OJQJo(oh pp^p`OJQJo(h @ @ ^@ `OJQJo(h ^`OJQJo(oh ^`OJQJo(h ^`OJQJo(h ^`OJQJo(oh PP^P`OJQJo( hh^h`OJQJo(hh^h`CJOJQJo(q hh^h`OJQJo( hh^h`OJQJo(^`o(.^`.pLp^p`L.@ @ ^@ `.^`.L^`L.^`.^`.PLP^P`L. hh^h`56o(.^`.pLp^p`L.@ @ ^@ `.^`.L^`L.^`.^`.PLP^P`L.h ^`OJQJo(h pp^p`OJQJo(oh @ @ ^@ `OJQJo(h ^`OJQJo(h ^`OJQJo(oh ^`OJQJo(h ^`OJQJo(h PP^P`OJQJo(oh   ^ `OJQJo( hh^h`OJQJo( hh^h`OJQJo( ^`o(.^`.pLp^p`L.@ @ ^@ `.^`.L^`L.^`.^`.PLP^P`L. hh^h`OJQJo(hh^h`o(.h^`B*OJQJo(phh ^`OJQJo(oh pp^p`OJQJo(h @ @ ^@ `OJQJo(h ^`OJQJo(oh ^`OJQJo(h ^`OJQJo(h ^`OJQJo(oh PP^P`OJQJo( hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo(h^`B*OJQJo(phhHh ^`OJQJo(oh   ^ `OJQJo(h   ^ `OJQJo(h xx^x`OJQJo(oh HH^H`OJQJo(h ^`OJQJo(h ^`OJQJo(oh ^`OJQJo(h88^8`.h^`.h L ^ `L.h  ^ `.hxx^x`.hHLH^H`L.h^`.h^`.hL^`L. hh^h`OJQJo(^`o(.hh^h`o(.h hh^h`OJQJo(88^8`.L^`L.  ^ `.  ^ `.xLx^x`L.HH^H`.^`.L^`L. hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo(hh^h`o(. hh^h`OJQJo(hh^h`o(. hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo(h^`B*OJQJo(phh ^`OJQJo(oh pp^p`OJQJo(h @ @ ^@ `OJQJo(h ^`OJQJo(oh ^`OJQJo(h ^`OJQJo(h ^`OJQJo(oh PP^P`OJQJo( hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo(hh^h`o(. hh^h`OJQJo( hh^h`OJQJo(h ^`OJQJo(h ^`OJQJo(oh pp^p`OJQJo(h @ @ ^@ `OJQJo(h ^`OJQJo(oh ^`OJQJo(h ^`OJQJo(h ^`OJQJo(oh PP^P`OJQJo(hh^h`o(.^`o("^`o(.0^`0o(..0^`0o(... 88^8`o( .... 88^8`o( ..... `^``o( ...... `^``o(....... ^`o(........ hh^h`OJQJo( hh^h`OJQJo(hh^h`o(.hh^h`o(. hh^h`OJQJo( hh^h`OJQJo(^`56. hh^h`OJQJo(h ^`OJQJo(h ^`OJQJo(oh pp^p`OJQJo(h @ @ ^@ `OJQJo(h ^`OJQJo(oh ^`OJQJo(h ^`OJQJo(h ^`OJQJo(oh PP^P`OJQJo(h^`OJQJo(hH^`.pLp^p`L.@ @ ^@ `.^`.L^`L.^`.^`.PLP^P`L. hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo(^`o(.hh^h`o(. hh^h`OJQJo( hh^h`OJQJo(hhh^h`B*OJQJo(phh88^8`.hL^`L.h  ^ `.h  ^ `.hxLx^x`L.hHH^H`.h^`.hL^`L.hh^h`o(.||^|`o(.LL^L`.L^`L.  ^ `.  ^ `.L^`L.\\^\`.,,^,`.L^`L.hh^h`CJOJQJo(q hh^h`OJQJo(hh^h`o(.h hh^h`OJQJo(88^8`.L^`L.  ^ `.  ^ `.xLx^x`L.HH^H`.^`.L^`L.hh^h`o(. hh^h`OJQJo( hh^h`OJQJo(hhh^h`B*OJQJo(phh88^8`.hL^`L.h  ^ `.h  ^ `.hxLx^x`L.hHH^H`.h^`.hL^`L. hh^h`OJQJo( ^`OJQJo( ^`OJQJo(o pp^p`OJQJo( @ @ ^@ `OJQJo( ^`OJQJo(o ^`OJQJo( ^`OJQJo( ^`OJQJo(o PP^P`OJQJo(hh^h`o(.^`o(. hh^h`OJQJo( hh^h`OJQJo(h ^`OJQJo(h ^`OJQJo(oh pp^p`OJQJo(h @ @ ^@ `OJQJo(h ^`OJQJo(oh ^`OJQJo(h ^`OJQJo(h ^`OJQJo(oh PP^P`OJQJo( hh^h`OJQJo(hh^h`o(. hh^h`OJQJo(hh^h`o(. hh^h`o(.h^`B*OJQJo(phh ^`OJQJo(oh pp^p`OJQJo(h @ @ ^@ `OJQJo(h ^`OJQJo(oh ^`OJQJo(h ^`OJQJo(h ^`OJQJo(oh PP^P`OJQJo(88^8`o(.hh^h`o(.hh^h`o(.hh^h`o(. hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo(. hh^h`OJQJo(k^`ko(.LL^L`o(.L^`L.  ^ `.  ^ `.L^`L.\\^\`.,,^,`.L^`L.h^`B*OJQJo(phh ^`OJQJo(oh pp^p`OJQJo(h @ @ ^@ `OJQJo(h ^`OJQJo(oh ^`OJQJo(h ^`OJQJo(h ^`OJQJo(oh PP^P`OJQJo( hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo(h ^`OJQJo(h pp^p`OJQJo(oh @ @ ^@ `OJQJo(h ^`OJQJo(h ^`OJQJo(oh ^`OJQJo(h ^`OJQJo(h PP^P`OJQJo(oh   ^ `OJQJo( hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo(88^8`o(. hh^h`OJQJo( hh^h`OJQJo(hh^h`o(.hh^h`o(. hh^h`OJQJo(hh^h`o(. hh^h`o(. hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo( ^`o(.^`.pLp^p`L.@ @ ^@ `.^`.L^`L.^`.^`.PLP^P`L.hh^h`o(. hh^h`OJQJo( ^`o(.^`.pLp^p`L.@ @ ^@ `.^`.L^`L.^`.^`.PLP^P`L. hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo(hh^h`o(. hh^h`OJQJo(hh^h`o(. hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo(88^8`o(.hh^h`56. 88^8`OJQJo(88^8`o(. hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo(hh^h`. hh^h`OJQJo(h^`B*OJQJo(phh ^`OJQJo(oh pp^p`OJQJo(h @ @ ^@ `OJQJo(h ^`OJQJo(oh ^`OJQJo(h ^`OJQJo(h ^`OJQJo(oh PP^P`OJQJo(n N@Zs&5@*_by/]pFV-#rD_rWBDM"qs!h-{b9n3LGekWYl9KJjbY=|t"u;7jjXe39x;:ry7j0H/av4wLZApe&U]yc"bV27- Z0S5U#evr;/b_z r UVWX~k:0DD,gjW(`wRwI5\49DsBM3 ~| tut8k8-q*e7HJrk GQCD%&SRPmd,1,`W*1> 5NDBrY^V"3(@1G=&"Z#mqRF8}_7Ku/NJ QOV2_;0o]DQ[gvM73ElTy`%OXfb}cbNvNkjp";cIA<5u72UaYFZhcnLOn^2OamT2Eu_IT*VANvj~ %A5@m-$t5zX?.bhBhK8^p5 9 KjlzcA`$lzj]x!"^)7Mw}NLNQEpjb">/ig3QnrUHveC'+u]At?3J! aRd&MwIsXMn=kM:v&5|V#dyQ<-Td[J+R,N@ 0^`0OJQJo(#N @ 0^`0OJQJo(#N @ p0^p`0OJQJo(#XN @@ p0^p`0OJQJo( @ B C J L N P Q X Y [ ] ^ e g i k l s t v x y     O P Y c m w x  st}|}denx000000001 1 1111s2t22222343T3t333@@@@@@@@=f3`@UnknownG: Times New Roman5Symbol3& : Arial;Wingdings?5 z Courier NewaWP TypographicSymbolsSymbolQ WP MathACourier New"qhfi&hi&L)XY2032QAnswers to Review Questions Tom DiMauro Tom DiMauro