ࡱ>  Oh+'0  4 @ L Xdlt|1ss Naveen KumaroaveaveGitman_TB.dotoatm437Microsoft Word 9.0@ @T@tiX@o_ ՜.+,D՜.+,8 hp  The Dog PoundWi-  1 TitleH 6> MTWinEqns tiX@o_Chapter 2 Java Fundamentals ( Test 1 1. To compile a program named, First, use the following command (a) java-source 1.5 First.java (b) javac-source 1.5 First (c) javac First.java (d) compile First.javac Answer: C, The Parts of a Java Program 2. A Java program must have at least one (a) Class definition (b) Variable (c) Comment (d) System.out.println(); statement Answer: A, The Parts of a Java Program 3. True/False All Java lines of code end with semicolons. Answer: False, The Parts of a Java Program 4. The ____ is normally considered the standard output and standard input devices, and usually refer to the monitor and keyboard. (a) CRT (b) CPU (c) secondary storage devices (d) console Answer: D, The Print and Println Methods, and the Java API 5. If the following Java statements are executed, what will be displayed System.out.println(The top three winners are\n); System.out.print(Jody, the Giant\n); System.out.print(Buffy, the Dwarf); System.out.println(Adelle, the Albino); (a) The top three winners are Jody, the Giant Buffy, the Dwarf Adelle, the Albino (b) The top three winners are Jody, the Giant\nBuffy, the DwarfAdelle, the Albino (c) The top three winners are Jody, the Giant\nBuffy, the DwarfAdelle, and the Albino (d) The top three winners are Jody, the Giant Buffy, the DwarfAdelle, the Albino Answer: D, The Print and Println Methods, and the Java API 6. A(n) ____ is a value that is written into the code of a program. (a) literal (b) assignment statement (c) variable (d) operator Answer: A, Variables and Literals 7. What would be printed out as a result of the following code? System.out.println( The quick brown fox +  jumped over the \n  slow moving hen. ); (a) The quick brown fox jumped over the \nslow moving hen. (b) The quick brown fox jumped over the slow moving hen. (c) The quick brown fox jumped over the slow moving hen. (d) Nothing. This is an error. Answer: D, Variables and Literals  no + between 2nd and 3rd lines 8. Which of the following is not a rule that must be followed when naming identifiers? (a) The first character must be one of the letters az, AZ, and underscore or a dollar sign. (b) Identifiers can contain spaces. (c) Uppercase and lowercase characters are distinct. (d) After the first character, you may use the letters az, AZ, the underscore, a dollar sign, or digits 09. Answer: B, Variables and Literals 9. True/False Although the dollar sign, $, is a legal identifier character, you should not use it because it is normally used for special purposes. Answer: True, Variables and Literals 10. Which of the following is not a primitive data type? (a) short (b) long (c) float (d) String Answer: D, Primitive Data Types 11. Which of the following is valid? (a) float y; y = 54.9; (b) float y; double z; z = 934.21; y = z; (c) float w; w = 1.0f; (d) double v; v = 1.0f; Answer: C, Primitive Data Types 12. True/False Assuming that pay has been declared a double, double pay, the following statement is valid. pay = 2,583.44; Answer: False, Primitive Data Types 13. The boolean data type may contain values in the following range of values (a) True/False (b)  128 to +127 (c)  2,147,483,648 to +2,147,483,647 (d)  32,768 to +32,767 Answer: A, Primitive Data Types 14. Character literals are enclosed in _____; string literals are enclosed in _____. (a) single quotes; single quotes (b) double quotes; double quotes (c) single quotes; double quotes (d) double quotes; single quotes Answer: C, Primitive Data Types 15. What is the result of the following statement? 10 + 5 * 3  20 (a)  5 (b) 5 (c) 25 (d)  50 Answer: B, Arithmetic Operations 16. What is the result of the following statement? 25/4 + 4 * 10 % 3 (a) 19 (b) 5.25 (c) 3 (d) 7 Answer: D, Arithmetic Operations 17. Which of the following will correctly convert the data type, if x is an integer and y is a double? (a) x = y; (b) x = int y; (c) x = (int)y; (d) x = y; Answer: C, Conversion Between Data Types 18. What will be displayed as a result of executing the following code? int x = 5, y = 20; x* = y; y% =x; System.out.println( x =  + x +  , y =  + y); (a) x = 5, y = 20 (b) x = 25, y = 4 (c) x = 100, y = 0 (d) x = 100, y = 20 Answer: D, Combined Assignment Operators 19. True/False Named constants are initialized with a value, that value cannot be changed during the execution of the program. Answer: True, Creating Named Constants with final 20. What will be the displayed when the following code is executed? final int x = 22, y = 4; y + = x; System.out.println( x =  + x +  , y =  + y); (a) x = 22, y = 4 (b) x = 22, y = 26 (c) x = 22, y = 88 (d) Nothing, this is an error Answer: D, Creating Named Constants with Final 21. In the following Java statement what is the value of the variable, name? String name =  John Doe ; (a) John Doe (b) The memory address where  John Doe is located (c) name (d) The memory address where name is located Answer: B, The String Class 22. What will be displayed as a result of executing the following code? int x = 6; String msg =  I am enjoying this class. ; String msg1 = msg.toUpperCase(); String msg2 = msg.toLowerCase(); char ltr = msg.charAt(x); int strSize = msg.length(); System.out.println(msg); System.out.println(msg1); System.out.println(msg2); System.out.println( Character at index x =  + ltr); System.out.println( msg has  + strSize +  characters. ); (a) I am enjoying this class. I AM ENJOYING THIS CLASS. i am enjoying this class. Character at index x = e msg has 24 characters. (b) I am enjoying this class. I AM ENJOYING THIS CLASS. i am enjoying this class. Character at index x = e msg has 25 characters. (c) I am enjoying this class. I AM ENJOYING THIS CLASS. i am enjoying this class. Character at index x = n msg has 24 characters. (d) I am enjoying this class. I AM ENJOYING THIS CLASS. i am enjoying this class. Character at index x = n msg has 25 characters. Answer: D, The String Class 23. True/False A variable s scope is the part of the program that has access to the variable. Answer: True, Scope 24. What will be displayed as a result of executing the following code? public class test { public static void main(String[] args) { int value1 = 9; System.out.println(value1); int value2 = 45; System.out.println(value2); System.out.println(value3); int value3 = 16; } } (a) 9 45 16 (b) 94516 (c) 9 45 16 (d) Nothing, this is an error Answer: D, Scope 25. Which of the following is not a valid comment statement? (a) // comment 1 (b) /* comment 2 */ (c) */ comment 3 /* (d) /** comment 4 Answer: C, Comments  PAGE 12  Gaddis "  Starting Out with Java 5: From Control Structures to Objects Chapter 2 Java Fundamentals   PAGE 11 8:<DF 8:DFtv  FHfhjlrt "(*02>@FH^`lnV X EHOJQJ jU jU^J jnCJ,Z8J>h8b|*|: m  x$j2h3d5   # 6 T / j  L   d^`  ^`x  d6fpm5WXZ&@ @Tp(V@H(6F$  2>JZz Rv: 8!!$"V"h""$dxM5N5O5P5Q5R5S5T5U5V5W5X5Y5Z5[5\5]5^5_5`5a5b5c5d5e5HnJn r r""#6#r##j$$$%0%%%R&h&&&@'t'''(F(($)`)))*dx*0*l*** +<+x+++,H,,,,$-T--H.p./$/(/v/z////x$/,0d0000000001011112@2h2j233d3f3h3j3l3n3 dn3p3r3t3v3x3z3|3~3333333333333333333333333333333333333333333333333333333333333333333444444444 4 4 4 4 44444444444444444444 4!4"4#4$4%4&4'4(4)4*4+4+4,4-4.4/404142434445464748494:4;4<4=4>4?4@4A4B4C4D4E4F4G4H4H4I4J4K4L4M4N4O4P4Q4R4S4T4U4V4W4X4Y4Z4[4\4]4^4_4`4a4b4c4d4e4e4f4g4h4i4j4k4l4m4n4o4p4q4r4s4t4u4v4w4x4y4z4{4|4}4~444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444555555555 5 5 5 5 55555555555555555555 5!5"5#5$5%5&5'5(5)5*5+5,5-5.5/50505152535455565758595:5;5<5=5>5?5@5A5B5C5D5E5F5G5H5I5J5K5L5M5>nBnFnJnrr r0J0JmHnHu1413  i0@0 Normal_HmH sH tH 66 Heading 1$$@&a$CJ66 Heading 2$@& 5>*CJ00 Heading 3$@&CJBB Heading 4$ d@&5CJ66 Heading 5 <@&CJ:: Heading 6 <@&6CJ:: Heading 7 <@&OJQJ>> Heading 8 <@& 6OJQJD D Heading 9 <@&56CJOJQJ<A@< Default Paragraph Font(( T1$ CJOJQJNN awTB_fig$$(@&^CJOJQJhVV awTB_figCap$$((@&^6CJOJQJhdO"d awTB_01_questionHead$$ & Fh@&5CJOJQJD2D Header,awTB_header  !D BD Footer,awTB_footer  !&)@Q& Page Number^Ob^ Verso Headerh&dPCJOJQJ_HmH sH tH pOrp Recto Header$h&dPa$'CJOJPJQJ_HmHnHsH tH uXOX MCQ_List1#$$#<@&^#`CJOJQJhTOT MCQ_List2$$(@&^`CJOJQJh8^8 Normal (Web)CJaJPP equation$$ (#xxa$CJOJQJaJNN TF'$$ ##@&^#`CJOJQJhFF Normal Text1$CJ_HhmH sH tH ZOZ awTB_01_chTitle$$ & F@&5CJ$OJQJBOB MCQ_Ans" #P^#`8O8 MCQ_List3 ^ B*phBB MCQ_Ans1 ! x^`F"F MCQ_Ans1_list"(^`@!2@ MCQ_Ans2# HHX^H`XhBh 1AutoList12,$$ 01$7$8$H$^`0a$_HaJmH sH tH lRl 2AutoList12/%$ 01$7$8$H$^`0a$_HaJmH sH tH XbX 3AutoList12&$`1$7$8$H$^`a$_HaJmH sH tH XrX 4AutoList12'$`1$7$8$H$^`a$_HaJmH sH tH XX 5AutoList12($`1$7$8$H$^`a$_HaJmH sH tH XX 6AutoList12)$`1$7$8$H$^`a$_HaJmH sH tH XX 7AutoList12*$`1$7$8$H$^`a$_HaJmH sH tH XX 8AutoList12+$`1$7$8$H$^`a$_HaJmH sH tH hh 1AutoList11,,$ 01$7$8$H$^`0a$_HaJmH sH tH ll 2AutoList11/-$ 01$7$8$H$^`0a$_HaJmH sH tH XX 3AutoList11.$`1$7$8$H$^`a$_HaJmH sH tH XX 4AutoList11/$`1$7$8$H$^`a$_HaJmH sH tH XX 5AutoList110$`1$7$8$H$^`a$_HaJmH sH tH XX 6AutoList111$`1$7$8$H$^`a$_HaJmH sH tH X"X 7AutoList112$`1$7$8$H$^`a$_HaJmH sH tH X2X 8AutoList113$`1$7$8$H$^`a$_HaJmH sH tH hBh 1AutoList10,4$ 01$7$8$H$^`0a$_HaJmH sH tH lRl 2AutoList10/5$ 01$7$8$H$^`0a$_HaJmH sH tH XbX 3AutoList106$`1$7$8$H$^`a$_HaJmH sH tH XrX 4AutoList107$`1$7$8$H$^`a$_HaJmH sH tH XX 5AutoList108$`1$7$8$H$^`a$_HaJmH sH tH XX 6AutoList109$`1$7$8$H$^`a$_HaJmH sH tH XX 7AutoList10:$`1$7$8$H$^`a$_HaJmH sH tH XX 8AutoList10;$`1$7$8$H$^`a$_HaJmH sH tH ff 1AutoList9,<$ 01$7$8$H$^`0a$_HaJmH sH tH jj 2AutoList9/=$ 01$7$8$H$^`0a$_HaJmH sH tH VV 3AutoList9>$`1$7$8$H$^`a$_HaJmH sH tH VV 4AutoList9?$`1$7$8$H$^`a$_HaJmH sH tH VV 5AutoList9@$`1$7$8$H$^`a$_HaJmH sH tH VV 6AutoList9A$`1$7$8$H$^`a$_HaJmH sH tH V"V 7AutoList9B$`1$7$8$H$^`a$_HaJmH sH tH V2V 8AutoList9C$`1$7$8$H$^`a$_HaJmH sH tH fBf 1AutoList3,D$ 01$7$8$H$^`0a$_HaJmH sH tH jRj 2AutoList3/E$ 01$7$8$H$^`0a$_HaJmH sH tH VbV 3AutoList3F$`1$7$8$H$^`a$_HaJmH sH tH VrV 4AutoList3G$`1$7$8$H$^`a$_HaJmH sH tH VV 5AutoList3H$`1$7$8$H$^`a$_HaJmH sH tH VV 6AutoList3I$`1$7$8$H$^`a$_HaJmH sH tH VV 7AutoList3J$`1$7$8$H$^`a$_HaJmH sH tH VV 8AutoList3K$`1$7$8$H$^`a$_HaJmH sH tH ff 1AutoList8,L$ 01$7$8$H$^`0a$_HaJmH sH tH jj 2AutoList8/M$ 01$7$8$H$^`0a$_HaJmH sH tH VV 3AutoList8N$`1$7$8$H$^`a$_HaJmH sH tH VV 4AutoList8O$`1$7$8$H$^`a$_HaJmH sH tH VV 5AutoList8P$`1$7$8$H$^`a$_HaJmH sH tH VV 6AutoList8Q$`1$7$8$H$^`a$_HaJmH sH tH V"V 7AutoList8R$`1$7$8$H$^`a$_HaJmH sH tH V2V 8AutoList8S$`1$7$8$H$^`a$_HaJmH sH tH fBf 1AutoList7,T$ 01$7$8$H$^`0a$_HaJmH sH tH jRj 2AutoList7/U$ 01$7$8$H$^`0a$_HaJmH sH tH VbV 3AutoList7V$`1$7$8$H$^`a$_HaJmH sH tH VrV 4AutoList7W$`1$7$8$H$^`a$_HaJmH sH tH VV 5AutoList7X$`1$7$8$H$^`a$_HaJmH sH tH VV 6AutoList7Y$`1$7$8$H$^`a$_HaJmH sH tH VV 7AutoList7Z$`1$7$8$H$^`a$_HaJmH sH tH VV 8AutoList7[$`1$7$8$H$^`a$_HaJmH sH tH ff 1AutoList1,\$ 01$7$8$H$^`0a$_HaJmH sH tH jj 2AutoList1/]$ 01$7$8$H$^`0a$_HaJmH sH tH VV 3AutoList1^$`1$7$8$H$^`a$_HaJmH sH tH VV 4AutoList1_$`1$7$8$H$^`a$_HaJmH sH tH VV 5AutoList1`$`1$7$8$H$^`a$_HaJmH sH tH VV 6AutoList1a$`1$7$8$H$^`a$_HaJmH sH tH V"V 7AutoList1b$`1$7$8$H$^`a$_HaJmH sH tH V2V 8AutoList1c$`1$7$8$H$^`a$_HaJmH sH tH fBf 1AutoList6,d$ 01$7$8$H$^`0a$_HaJmH sH tH jRj 2AutoList6/e$ 01$7$8$H$^`0a$_HaJmH sH tH VbV 3AutoList6f$`1$7$8$H$^`a$_HaJmH sH tH VrV 4AutoList6g$`1$7$8$H$^`a$_HaJmH sH tH VV 5AutoList6h$`1$7$8$H$^`a$_HaJmH sH tH VV 6AutoList6i$`1$7$8$H$^`a$_HaJmH sH tH VV 7AutoList6j$`1$7$8$H$^`a$_HaJmH sH tH VV 8AutoList6k$`1$7$8$H$^`a$_HaJmH sH tH ff 1AutoList5,l$ 01$7$8$H$^`0a$_HaJmH sH tH jj 2AutoList5/m$ 01$7$8$H$^`0a$_HaJmH sH tH VV 3AutoList5n$`1$7$8$H$^`a$_HaJmH sH tH VV 4AutoList5o$`1$7$8$H$^`a$_HaJmH sH tH VV 5AutoList5p$`1$7$8$H$^`a$_HaJmH sH tH VV 6AutoList5q$`1$7$8$H$^`a$_HaJmH sH tH V"V 7AutoList5r$`1$7$8$H$^`a$_HaJmH sH tH V2V 8AutoList5s$`1$7$8$H$^`a$_HaJmH sH tH fBf 1AutoList2,t$ 01$7$8$H$^`0a$_HaJmH sH tH jRj 2AutoList2/u$ 01$7$8$H$^`0a$_HaJmH sH tH VbV 3AutoList2v$`1$7$8$H$^`a$_HaJmH sH tH VrV 4AutoList2w$`1$7$8$H$^`a$_HaJmH sH tH VV 5AutoList2x$`1$7$8$H$^`a$_HaJmH sH tH VV 6AutoList2y$`1$7$8$H$^`a$_HaJmH sH tH VV 7AutoList2z$`1$7$8$H$^`a$_HaJmH sH tH VV 8AutoList2{$`1$7$8$H$^`a$_HaJmH sH tH >1> H2|d@&]5OJQJ\aJ** t1]}CJOJQJaJ202 List Bullet ~ & F,, bl$ ^ `JJ awTB_qualifier$#1$@&^#OJQJ@@ awTB_qualifierLastOJQJ("( Code#(^#.O2. Code1^`.OB. Code2`^``.R. Code3^`8b8 N-Code #^#`,ar, N-Code1 p:: N-Code2 FF^F`<< N-Code3 FM^`MPX`hpx     PX`hpx  n%e1>Jn|:m#6T /jOx 3DVum5 W  I S \ f q    & F 3 B S x  % F g ([mt}!0@Kt 1DX2vL)E:Sm/Jd| ;Vp*!1M^z9J^r 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(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(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(0(0*0(0(0(0(0(00@0@0@0@0 0T~~~~~X e5$ @"*/n3334+4H4e444444505M5e5 !"#%&'()*+,-./0123456d5 qx{!!8OP@O0(  B S  ?yN`:Lm}#)djp{ "HOOa ),9<|  !"),6:LMPSefjm01eh<=qt!$%+1CDJMPQW^pqwzDIimNa09:Mm~moOb 4:EIe m M R W [ ` e       k w   ) / J P k q %&45DE#$56HIv{!:MSfm01eh<=qt!$1DMP^qz@GQXelz3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333 &(mn::llmm##TT  kmxyCDHI  1 2 X Y d e       H I T U O O ((*+]]^^vw45NOGH;<VWpq,-89 nn   "##$$%%&&''((+,,0088;<<@@HHKLLPPXX[\\``hhiijjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~VinitaRC:\WINDOWS\Profiles\Vinita\Desktop\Gaddis TB\Chapters\GaddisTB_CH02\CH02_Test1.docVinitaRC:\WINDOWS\Profiles\Vinita\Desktop\Gaddis TB\Chapters\GaddisTB_CH02\CH02_Test1.docVinitaRC:\WINDOWS\Profiles\Vinita\Desktop\Gaddis TB\Chapters\GaddisTB_CH02\CH02_Test1.docVinitaRC:\WINDOWS\Profiles\Vinita\Desktop\Gaddis TB\Chapters\GaddisTB_CH02\CH02_Test1.docVinitaRC:\WINDOWS\Profiles\Vinita\Desktop\Gaddis TB\Chapters\GaddisTB_CH02\CH02_Test1.docVinitaRC:\WINDOWS\Profiles\Vinita\Desktop\Gaddis TB\Chapters\GaddisTB_CH02\CH02_Test1.docVinitaRC:\WINDOWS\Profiles\Vinita\Desktop\Gaddis TB\Chapters\GaddisTB_CH02\CH02_Test1.docVinitaRC:\WINDOWS\Profiles\Vinita\Desktop\Gaddis TB\Chapters\GaddisTB_CH02\CH02_Test1.docVinitaRC:\WINDOWS\Profiles\Vinita\Desktop\Gaddis TB\Chapters\GaddisTB_CH02\CH02_Test1.docVinitaRC:\WINDOWS\Profiles\Vinita\Desktop\Gaddis TB\Chapters\GaddisTB_CH02\CH02_Test1.doc |B}Y~qb:@@F& h TL8CX~9YY4g.UjL$^`.^`.88^8`.^`. ^`OJQJo( ^`OJQJo( 88^8`OJQJo( ^`OJQJo(hh^h`. hh^h`OJQJo(^`o(##^#`o(.^`o(()D^`4*56789:;<>*@EHH*KHOJQJS*TXho(Answer:pp^p`o(()  ^ `o(()@ @ ^@ `o(.  ^ `o(.^`o(.^`o(##^#`o(.^`o(()D^`4*56789:;<>*@EHH*KHOJQJS*TXho(Answer:pp^p`o(()  ^ `o(()@ @ ^@ `o(.  ^ `o(.^`o(. .Uj9YYW ~}| @66$d d d d d ddddddddddddd@  @ "$&(*,.02h@UnknownG:Times New Roman5Symbol3& :Arial;Wingdings3Times;"Helvetica#qHhsJ&p4&T -!%l!Kf20d 3qHH/C:\WINDOWS\Desktop\Test Bank\Temp\Gitman_TB.dot1 Naveen KumarVinita 3qHH/C:\WINDOWS\Desktop\Test Bank\Temp\Gitman_TB.dot1 Naveen KumarVinita i0@0 Normal_HmH sH tH 66 Heading 1$$@&a$CJ66 Heading 2$@& 5>*CJ00 Heading 3$@&CJBB Heading 4$ d@&5CJ66 Heading 5 <@&CJ:: Heading 6 <@&6CJ:: Heading 7 <@&OJQJ>> Heading 8 <@& 6OJQJD D Heading 9 <@&56CJOJQJ<A@< Default Paragraph Font(( T1$ CJOJQJNN awTB_fig$$(@&^CJOJQJhVV awTB_figCap$$((@&^6CJOJQJhdO"d awTB_01_questionHead$$ & Fh@&5CJOJQJD2D Header,awTB_header  !D BD Footer,awTB_footer  !&)@Q& Page Number^Ob^ Verso Headerh&dPCJOJQJ_HmH sH tH pOrp Recto Header$h&dPa$'CJOJPJQJ_HmHnHsH tH uXOX MCQ_List1#$$#<@&^#`CJOJQJhTOT MCQ_List2$$(@&^`CJOJQJh8^8 Normal (Web)CJaJPP equation$$ (#xxa$CJOJQJaJNN TF'$$ ##@&^#`CJOJQJhFF Normal Text1$CJ_HhmH sH tH ZOZ awTB_01_chTitle$$ & F@&5CJ$OJQJBOB MCQ_Ans" #P^#`8O8 MCQ_List3 ^ B*phBB MCQ_Ans1 ! x^`F"F MCQ_Ans1_list"(^`@!2@ MCQ_Ans2# HHX^H`XhBh 1AutoList12,$$ 01$7$8$H$^`0a$_HaJmH sH tH lRl 2AutoList12/%$ 01$7$8$H$^`0a$_HaJmH sH tH XbX 3AutoList12&$`1$7$8$H$^`a$_HaJmH sH tH XrX 4AutoList12'$`1$7$8$H$^`a$_HaJmH sH tH XX 5AutoList12($`1$7$8$H$^`a$_HaJmH sH tH XX 6AutoList12)$`1$7$8$H$^`a$_HaJmH sH tH XX 7AutoList12*$`1$7$8$H$^`a$_HaJmH sH tH XX 8AutoList12+$`1$7$8$H$^`a$_HaJmH sH tH hh 1AutoList11,,$ 01$7$8$H$^`0a$_HaJmH sH tH ll 2AutoList11/-$ 01$7$8$H$^`0a$_HaJmH sH tH XX 3AutoList11.$`1$7$8$H$^`a$_HaJmH sH tH XX 4AutoList11/$`1$7$8$H$^`a$_HaJmH sH tH XX 5AutoList110$`1$7$8$H$^`a$_HaJmH sH tH XX 6AutoList111$`1$7$8$H$^`a$_HaJmH sH tH X"X 7AutoList112$`1$7$8$H$^`a$_HaJmH sH tH X2X 8AutoList113$`1$7$8$H$^`a$_HaJmH sH tH hBh 1AutoList10,4$ 01$7$8$H$^`0a$_HaJmH sH tH lRl 2AutoList10/5$ 01$7$8$H$^`0a$_HaJmH sH tH XbX 3AutoList106$`1$7$8$H$^`a$_HaJmH sH tH XrX 4AutoList107$`1$7$8$H$^`a$_HaJmH sH tH XX 5AutoList108$`1$7$8$H$^`a$_HaJmH sH tH XX 6AutoList109$`1$7$8$H$^`a$_HaJmH sH tH XX 7AutoList10:$`1$7$8$H$^`a$_HaJmH sH tH XX 8AutoList10;$`1$7$8$H$^`a$_HaJmH sH tH ff 1AutoList9,<$ 01$7$8$H$^`0a$_HaJmH sH tH jj 2AutoList9/=$ 01$7$8$H$^`0a$_HaJmH sH tH VV 3AutoList9>$`1$7$8$H$^`a$_HaJmH sH tH VV 4AutoList9?$`1$7$8$H$^`a$_HaJmH sH tH VV 5AutoList9@$`1$7$8$H$^`a$_HaJmH sH tH VV 6AutoList9A$`1$7$8$H$^`a$_HaJmH sH tH V"V 7AutoList9B$`1$7$8$H$^`a$_HaJmH sH tH V2V 8AutoList9C$`1$7$8$H$^`a$_HaJmH sH tH fBf 1AutoList3,D$ 01$7$8$H$^`0a$_HaJmH sH tH jRj 2AutoList3/E$ 01$7$8$H$^`0a$_HaJmH sH tH VbV 3AutoList3F$`1$7$8$H$^`a$_HaJmH sH tH VrV 4AutoList3G$`1$7$8$H$^`a$_HaJmH sH tH VV 5AutoList3H$`1$7$8$H$^`a$_HaJmH sH tH VV 6AutoList3I$`1$7$8$H$^`a$_HaJmH sH tH VV 7AutoList3J$`1$7$8$H$^`a$_HaJmH sH tH VV 8AutoList3K$`1$7$8$H$^`a$_HaJmH sH tH ff 1AutoList8,L$ 01$7$8$H$^`0a$_HaJmH sH tH jj 2AutoList8/M$ 01$7$8$H$^`0a$_HaJmH sH tH VV 3AutoList8N$`1$7$8$H$^`a$_HaJmH sH tH VV 4AutoList8O$`1$7$8$H$^`a$_HaJmH sH tH VV 5AutoList8P$`1$7$8$H$^`a$_HaJmH sH tH VV 6AutoList8Q$`1$7$8$H$^`a$_HaJmH sH tH V"V 7AutoList8R$`1$7$8$H$^`a$_HaJmH sH tH V2V 8AutoList8S$`1$7$8$H$^`a$_HaJmH sH tH fBf 1AutoList7,T$ 01$7$8$H$^`0a$_HaJmH sH tH jRj 2AutoList7/U$ 01$7$8$H$^`0a$_HaJmH sH tH VbV 3AutoList7V$`1$7$8$H$^`a$_HaJmH sH tH VrV 4AutoList7W$`1$7$8$H$^`a$_HaJmH sH tH VV 5AutoList7X$`1$7$8$H$^`a$_HaJmH sH tH VV 6AutoList7Y$`1$7$8$H$^`a$_HaJmH sH tH VV 7AutoList7Z$`1$7$8$H$^`a$_HaJmH sH tH VV 8AutoList7[$`1$7$8$H$^`a$_HaJmH sH tH ff 1AutoList1,\$ 01$7$8$H$^`0a$_HaJmH sH tH jj 2AutoList1/]$ 01$7$8$H$^`0a$_HaJmH sH tH VV 3AutoList1^$`1$7$8$H$^`a$_HaJmH sH tH VV 4AutoList1_$`1$7$8$H$^`a$_HaJmH sH tH VV 5AutoList1`$`1$7$8$H$^`a$_HaJmH sH tH VV 6AutoList1a$`1$7$8$H$^`a$_HaJmH sH tH V"V 7AutoList1b$`1$7$8$H$^`a$_HaJmH sH tH V2V 8AutoList1c$`1$7$8$H$^`a$_HaJmH sH tH fBf 1AutoList6,d$ 01$7$8$H$^`0a$_HaJmH sH tH jRj 2AutoList6/e$ 01$7$8$H$^`0a$_HaJmH sH tH VbV 3AutoList6f$`1$7$8$H$^`a$_HaJmH sH tH VrV 4AutoList6g$`1$7$8$H$^`a$_HaJmH sH tH VV 5AutoList6h$`1$7$8$H$^`a$_HaJmH sH tH VV 6AutoList6i$`1$7$8$H$^`a$_HaJmH sH tH VV 7AutoList6j$`1$7$8$H$^`a$_HaJmH sH tH VV 8AutoList6k$`1$7$8$H$^`a$_HaJmH sH tH ff 1AutoList5,l$ 01$7$8$H$^`0a$_HaJmH sH tH jj 2AutoList5/m$ 01$7$8$H$^`0a$_HaJmH sH tH VV 3AutoList5n$`1$7$8$H$^`a$_HaJmH sH tH VV 4AutoList5o$`1$7$8$H$^`a$_HaJmH sH tH VV 5AutoList5p$`1$7$8$H$^`a$_HaJmH sH tH VV 6AutoList5q$`1$7$8$H$^`a$_HaJmH sH tH V"V 7AutoList5r$`1$7$8$H$^`a$_HaJmH sH tH V2V 8AutoList5s$`1$7$8$H$^`a$_HaJmH sH tH fBf 1AutoList2,t$ 01$7$8$H$^`0a$_HaJmH sH tH jRj 2AutoList2/u$ 01$7$8$H$^`0a$_HaJmH sH tH VbV 3AutoList2v$`1$7$8$H$^`a$_HaJmH sH tH VrV 4AutoList2w$`1$7$8$H$^`a$_HaJmH sH tH VV 5AutoList2x$`1$7$8$H$^`a$_HaJmH sH tH VV 6AutoList2y$`1$7$8$H$^`a$_HaJmH sH tH VV 7AutoList2z$`1$7$8$H$^`a$_HaJmH sH tH VV 8AutoList2{$`1$7$8$H$^`a$_HaJmH sH tH >1> H2|d@&]5OJQJ\aJ** t1]}CJOJQJaJ202 List Bullet ~ & F,, bl$ ^ `JJ awTB_qualifier$#1$@&^#OJQJ@@ awTB_qualifierLastOJQJ("( Code#(^#.O2. Code1^`.OB. Code2`^``.R. Code3^`8b8 N-Code #^#`,ar, N-Code1 p:: N-Code2 FF^F`<< N-Code3 FM^`MPX`hpx     PX`hpx  n%e1>Jn|:m#6T /jOx 3DVum5 W  I S \ f q X <">"L"N"Z"\"^"`"""""""""""""""""####,#.#$$^&`&~&&&&''R'T'''(((((())))++,,----////z0|0j2l2x2z2~2222222$3&3H3L3N3Z3\3`3b3e5>n0JmHnHu0J j0JU jUOJQJZ: 001P /R / =!"#$% 1211 >nBnFnJn0J0JmHnHuM5N5O5P5Q5R5S5T5U5V5W5X5Y5Z5[5\5]5^5_5`5a5b5c5d5e5HnJn i0@0 Normal_HmH sH tH 66 Heading 1$$@&a$CJ66 Heading 2$@& 5>*CJ00 Heading 3$@&CJBB Heading 4$ d@&5CJ66 Heading 5 <@&CJ:: Heading 6 <@&6CJ:: Heading 7 <@&OJQJ>> Heading 8 <@& 6OJQJD D Heading 9 <@&56CJOJQJ<A@< Default Paragraph Font(( T1$ CJOJQJNN awTB_fig$$(@&^CJOJQJhVV awTB_figCap$$((@&^6CJOJQJhdO"d awTB_01_questionHead$$ & Fh@&5CJOJQJD2D Header,awTB_header  !D BD Footer,awTB_footer  !&)@Q& Page Number^Ob^ Verso Headerh&dPCJOJQJ_HmH sH tH pOrp Recto Header$h&dPa$'CJOJPJQJ_HmHnHsH tH uXOX MCQ_List1#$$#<@&^#`CJOJQJhTOT MCQ_List2$$(@&^`CJOJQJh8^8 Normal (Web)CJaJPP equation$$ (#xxa$CJOJQJaJNN TF'$$ ##@&^#`CJOJQJhFF Normal Text1$CJ_HhmH sH tH ZOZ awTB_01_chTitle$$ & F@&5CJ$OJQJBOB MCQ_Ans" #P^#`8O8 MCQ_List3 ^ B*phBB MCQ_Ans1 ! x^`F"F MCQ_Ans1_list"(^`@!2@ MCQ_Ans2# HHX^H`XhBh 1AutoList12,$$ 01$7$8$H$^`0a$_HaJmH sH tH lRl 2AutoList12/%$ 01$7$8$H$^`0a$_HaJmH sH tH XbX 3AutoList12&$`1$7$8$H$^`a$_HaJmH sH tH XrX 4AutoList12'$`1$7$8$H$^`a$_HaJmH sH tH XX 5AutoList12($`1$7$8$H$^`a$_HaJmH sH tH XX 6AutoList12)$`1$7$8$H$^`a$_HaJmH sH tH XX 7AutoList12*$`1$7$8$H$^`a$_HaJmH sH tH XX 8AutoList12+$`1$7$8$H$^`a$_HaJmH sH tH hh 1AutoList11,,$ 01$7$8$H$^`0a$_HaJmH sH tH ll 2AutoList11/-$ 01$7$8$H$^`0a$_HaJmH sH tH XX 3AutoList11.$`1$7$8$H$^`a$_HaJmH sH tH XX 4AutoList11/$`1$7$8$H$^`a$_HaJmH sH tH XX 5AutoList110$`1$7$8$H$^`a$_HaJmH sH tH XX 6AutoList111$`1$7$8$H$^`a$_HaJmH sH tH X"X 7AutoList112$`1$7$8$H$^`a$_HaJmH sH tH X2X 8AutoList113$`1$7$8$H$^`a$_HaJmH sH tH hBh 1AutoList10,4$ 01$7$8$H$^`0a$_HaJmH sH tH lRl 2AutoList10/5$ 01$7$8$H$^`0a$_HaJmH sH tH XbX 3AutoList106$`1$7$8$H$^`a$_HaJmH sH tH XrX 4AutoList107$`1$7$8$H$^`a$_HaJmH sH tH XX 5AutoList108$`1$7$8$H$^`a$_HaJmH sH tH XX 6AutoList109$`1$7$8$H$^`a$_HaJmH sH tH XX 7AutoList10:$`1$7$8$H$^`a$_HaJmH sH tH XX 8AutoList10;$`1$7$8$H$^`a$_HaJmH sH tH ff 1AutoList9,<$ 01$7$8$H$^`0a$_HaJmH sH tH jj 2AutoList9/=$ 01$7$8$H$^`0a$_HaJmH sH tH VV 3AutoList9>$`1$7$8$H$^`a$_HaJmH sH tH VV 4AutoList9?$`1$7$8$H$^`a$_HaJmH sH tH VV 5AutoList9@$`1$7$8$H$^`a$_HaJmH sH tH VV 6AutoList9A$`1$7$8$H$^`a$_HaJmH sH tH V"V 7AutoList9B$`1$7$8$H$^`a$_HaJmH sH tH V2V 8AutoList9C$`1$7$8$H$^`a$_HaJmH sH tH fBf 1AutoList3,D$ 01$7$8$H$^`0a$_HaJmH sH tH jRj 2AutoList3/E$ 01$7$8$H$^`0a$_HaJmH sH tH VbV 3AutoList3F$`1$7$8$H$^`a$_HaJmH sH tH VrV 4AutoList3G$`1$7$8$H$^`a$_HaJmH sH tH VV 5AutoList3H$`1$7$8$H$^`a$_HaJmH sH tH VV 6AutoList3I$`1$7$8$H$^`a$_HaJmH sH tH VV 7AutoList3J$`1$7$8$H$^`a$_HaJmH sH tH VV 8AutoList3K$`1$7$8$H$^`a$_HaJmH sH tH ff 1AutoList8,L$ 01$7$8$H$^`0a$_HaJmH sH tH jj 2AutoList8/M$ 01$7$8$H$^`0a$_HaJmH sH tH VV 3AutoList8N$`1$7$8$H$^`a$_HaJmH sH tH VV 4AutoList8O$`1$7$8$H$^`a$_HaJmH sH tH VV 5AutoList8P$`1$7$8$H$^`a$_HaJmH sH tH VV 6AutoList8Q$`1$7$8$H$^`a$_HaJmH sH tH V"V 7AutoList8R$`1$7$8$H$^`a$_HaJmH sH tH V2V 8AutoList8S$`1$7$8$H$^`a$_HaJmH sH tH fBf 1AutoList7,T$ 01$7$8$H$^`0a$_HaJmH sH tH jRj 2AutoList7/U$ 01$7$8$H$^`0a$_HaJmH sH tH VbV 3AutoList7V$`1$7$8$H$^`a$_HaJmH sH tH VrV 4AutoList7W$`1$7$8$H$^`a$_HaJmH sH tH VV 5AutoList7X$`1$7$8$H$^`a$_HaJmH sH tH VV 6AutoList7Y$`1$7$8$H$^`a$_HaJmH sH tH VV 7AutoList7Z$`1$7$8$H$^`a$_HaJmH sH tH VV 8AutoList7[$`1$7$8$H$^`a$_HaJmH sH tH ff 1AutoList1,\$ 01$7$8$H$^`0a$_HaJmH sH tH jj 2AutoList1/]$ 01$7$8$H$^`0a$_HaJmH sH tH VV 3AutoList1^$`1$7$8$H$^`a$_HaJmH sH tH VV 4AutoList1_$`1$7$8$H$^`a$_HaJmH sH tH VV 5AutoList1`$`1$7$8$H$^`a$_HaJmH sH tH VV 6AutoList1a$`1$7$8$H$^`a$_HaJmH sH tH V"V 7AutoList1b$`1$7$8$H$^`a$_HaJmH sH tH V2V 8AutoList1c$`1$7$8$H$^`a$_HaJmH sH tH fBf 1AutoList6,d$ 01$7$8$H$^`0a$_HaJmH sH tH jRj 2AutoList6/e$ 01$7$8$H$^`0a$_HaJmH sH tH VbV 3AutoList6f$`1$7$8$H$^`a$_HaJmH sH tH VrV 4AutoList6g$`1$7$8$H$^`a$_HaJmH sH tH VV 5AutoList6h$`1$7$8$H$^`a$_HaJmH sH tH VV 6AutoList6i$`1$7$8$H$^`a$_HaJmH sH tH VV 7AutoList6j$`1$7$8$H$^`a$_HaJmH sH tH VV 8AutoList6k$`1$7$8$H$^`a$_HaJmH sH tH ff 1AutoList5,l$ 01$7$8$H$^`0a$_HaJmH sH tH jj 2AutoList5/m$ 01$7$8$H$^`0a$_HaJmH sH tH VV 3AutoList5n$`1$7$8$H$^`a$_HaJmH sH tH VV 4AutoList5o$`1$7$8$H$^`a$_HaJmH sH tH VV 5AutoList5p$`1$7$8$H$^`a$_HaJmH sH tH VV 6AutoList5q$`1$7$8$H$^`a$_HaJmH sH tH V"V 7AutoList5r$`1$7$8$H$^`a$_HaJmH sH tH V2V 8AutoList5s$`1$7$8$H$^`a$_HaJmH sH tH fBf 1AutoList2,t$ 01$7$8$H$^`0a$_HaJmH sH tH jRj 2AutoList2/u$ 01$7$8$H$^`0a$_HaJmH sH tH VbV 3AutoList2v$`1$7$8$H$^`a$_HaJmH sH tH VrV 4AutoList2w$`1$7$8$H$^`a$_HaJmH sH tH VV 5AutoList2x$`1$7$8$H$^`a$_HaJmH sH tH VV 6AutoList2y$`1$7$8$H$^`a$_HaJmH sH tH VV 7AutoList2z$`1$7$8$H$^`a$_HaJmH sH tH VV 8AutoList2{$`1$7$8$H$^`a$_HaJmH sH tH >1> H2|d@&]5OJQJ\aJ** t1]}CJOJQJaJ202 List Bullet ~ & F,, bl$ ^ `JJ awTB_qualifier$#1$@&^#OJQJ@@ awTB_qualifierLastOJQJ("( Code#(^#.O2. Code1^`.OB. Code2`^``.R. Code3^`8b8 N-Code #^#`,ar, N-Code1 p:: N-Code2 FF^F`<< N-Code3 FM^`MPX`hpx     PX`hpx  n%e1>Jn|:m#6T /jOx 3DVum5 W  I S \ f q    & F 3 B S x  % F g ([mt}!0@Kt 1DX2vL)E:Sm/Jd| ;Vp*!1M^z9J^r 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(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(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(0(0(0(0(0(0(0(00@0@0@0@0 0T~~~~~X >nJn$8 @"*/n3334+4H4e444444505M5Jn !"#%&'()*+,-./0123456d5 qx{!!8OP@O0(  B S  ?yN`:Lm}#)djp{ "HOOa ),9<|  !"),6:LMPSefjm01eh<=qt!$%+1CDJMPQW^pqwz DIimNa09:Mm~moOb 4:EIe m M R W [ ` e       k w   ) / J P k q %&45DE#$56HIv{!:MSfm01eh<=qt!$1DMP^qz@GQXelz 3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333 &(mn::llmm##TT  kmxyCDHI  1 2 X Y d e       H I T U O O ((*+]]^^vw45NOGH;<VWpq,-89 nn   "##$$%%&&''((+,,0088;<<@@HHKLLPPXX[\\``hhiijjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~VinitaRC:\WINDOWS\Profiles\Vinita\Desktop\Gaddis TB\Chapters\GaddisTB_CH02\CH02_Test1.docVinitaRC:\WINDOWS\Profiles\Vinita\Desktop\Gaddis TB\Chapters\GaddisTB_CH02\CH02_Test1.docVinitaRC:\WINDOWS\Profiles\Vinita\Desktop\Gaddis TB\Chapters\GaddisTB_CH02\CH02_Test1.docVinitaRC:\WINDOWS\Profiles\Vinita\Desktop\Gaddis TB\Chapters\GaddisTB_CH02\CH02_Test1.docVinitaRC:\WINDOWS\Profiles\Vinita\Desktop\Gaddis TB\Chapters\GaddisTB_CH02\CH02_Test1.docVinitaRC:\WINDOWS\Profiles\Vinita\Desktop\Gaddis TB\Chapters\GaddisTB_CH02\CH02_Test1.docVinitaRC:\WINDOWS\Profiles\Vinita\Desktop\Gaddis TB\Chapters\GaddisTB_CH02\CH02_Test1.docVinitaRC:\WINDOWS\Profiles\Vinita\Desktop\Gaddis TB\Chapters\GaddisTB_CH02\CH02_Test1.docVinitaRC:\WINDOWS\Profiles\Vinita\Desktop\Gaddis TB\Chapters\GaddisTB_CH02\CH02_Test1.doca>C:\Current Job\Gaddis TB\Chapters\GaddisTB_CH02\CH02_Test1.doc |B}Y~qb:@@F& h TL8CX~9YY4g.UjL$^`.^`.88^8`.^`. ^`OJQJo( ^`OJQJo( 88^8`OJQJo( ^`OJQJo(hh^h`. hh^h`OJQJo(^`o(##^#`o(.^`o(()D^`4*56789:;<>*@EHH*KHOJQJS*TXho(Answer:pp^p`o(()  ^ `o(()@ @ ^@ `o(.  ^ `o(.^`o(.^`o(##^#`o(.^`o(()D^`4*56789:;<>*@EHH*KHOJQJS*TXho(Answer:pp^p`o(()  ^ `o(()@ @ ^@ `o(.  ^ `o(.^`o(. .Uj9YY(s ~}| @XNNd d d d d ddddddddddddd```@` `` @```````an`~2aBn``3`Fn`h3`h@`j@`j@UnknownG:Times New Roman5Symbol3& :Arial;Wingdings3Times;"Helvetica#1Hhsּ&p4&T -!%l!Kf0d% 3qHH/C:\WINDOWS\Desktop\Test Bank\Temp\Gitman_TB.dot1 Naveen KumarVinita$a$7 e5bjbjUUr7|7|l+++----???8@4@-ib@@($A$A$ABBBggggggg$'k Gmg-BABBBg V++$A$Ai V V VB+<$A-$Ag VBg V V\Re<-|-hg$A@ `N_-<?Efhg,i0ifmJh mhg V--++++Root Entry F`N_1Table8)mWordDocumentrSummaryInformation(%DocumentSummaryInformation8 CompObjjObjectPoolW)_W)_0Tablem @tiX@n_ ՜.+,D՜.+,8 hp  The Dog PoundWi-  1 TitleH 6> MTWinEqns   FMicrosoft Word Document MSWordDocWord.Document.89q Oh+'0  8 D P \hpx1ss Naveen KumaroaveaveGitman_TB.dotoVinitaT436Microsoft Word 9.0@ @T  !"#&'()*+,-./0123459:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmn    & F 3 B S x  % F g ([mt}!0@Kt 1DX2vL)E:Sm/Jd| ;Vp*!1M^z9J^r 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(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(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(0(0(0(0(0(0(00@0@0@0@0 0T~~~~~X >n r$8 @"*/n3334+4H4e444444505M5 r !"#%&'()*+,-./0123456d5 qx{!!8OP@O0(  B S  ?yN`:Lm}#)djp{ "HOOa ),9<|  !"),6:LMPSefjm01eh<=qt!$%+1CDJMPQW^pqwz DIimNa09:Mm~moOb 4:EIe m M R W [ ` e       k w   ) / J P k q %&45DE#$56HIv{!:MSfm01eh<=qt!$1DMP^qz@GQXelz 3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333 &(mn::llmm##TT  kmxyCDHI  1 2 X Y d e       H I T U O O ((*+]]^^vw45NOGH;<VWpq,-89 mm   !""##$$%%&&''*++//77:;;??GGJKKOOWWZ[[__gghhiijjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~VinitaRC:\WINDOWS\Profiles\Vinita\Desktop\Gaddis TB\Chapters\GaddisTB_CH02\CH02_Test1.docVinitaRC:\WINDOWS\Profiles\Vinita\Desktop\Gaddis TB\Chapters\GaddisTB_CH02\CH02_Test1.docVinitaRC:\WINDOWS\Profiles\Vinita\Desktop\Gaddis TB\Chapters\GaddisTB_CH02\CH02_Test1.docVinitaRC:\WINDOWS\Profiles\Vinita\Desktop\Gaddis TB\Chapters\GaddisTB_CH02\CH02_Test1.docVinitaRC:\WINDOWS\Profiles\Vinita\Desktop\Gaddis TB\Chapters\GaddisTB_CH02\CH02_Test1.docVinitaRC:\WINDOWS\Profiles\Vinita\Desktop\Gaddis TB\Chapters\GaddisTB_CH02\CH02_Test1.docVinitaRC:\WINDOWS\Profiles\Vinita\Desktop\Gaddis TB\Chapters\GaddisTB_CH02\CH02_Test1.docVinitaRC:\WINDOWS\Profiles\Vinita\Desktop\Gaddis TB\Chapters\GaddisTB_CH02\CH02_Test1.docVinitaRC:\WINDOWS\Profiles\Vinita\Desktop\Gaddis TB\Chapters\GaddisTB_CH02\CH02_Test1.doca>C:\Current Job\Gaddis TB\Chapters\GaddisTB_CH02\CH02_Test1.doc |B}Y~qb:@@F& h TL8CX~9YY4g.UjL$^`.^`.88^8`.^`. ^`OJQJo( ^`OJQJo( 88^8`OJQJo( ^`OJQJo(hh^h`. hh^h`OJQJo(^`o(##^#`o(.^`o(()D^`4*56789:;<>*@EHH*KHOJQJS*TXho(Answer:pp^p`o(()  ^ `o(()@ @ ^@ `o(.  ^ `o(.^`o(.^`o(##^#`o(.^`o(()D^`4*56789:;<>*@EHH*KHOJQJS*TXho(Answer:pp^p`o(()  ^ `o(()@ @ ^@ `o(.  ^ `o(.^`o(. .Uj9YYà ~}| @XGCJOJQJsH tH _HFGCJOJQJsH tH _Hd d d d d ddddddddddddc```@` `` @```````a77>>><77>>>R<=|7 pእ_͚&,0Bhзn h>͚͚Root Entry Fpእ_1Table8hWordDocumenttSummaryInformation(%6  !"#&'()*+,-./012345$79:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmopqrstuvwxyz{|}~  FMicrosoft Word Document MSWordDocWord.Document.89q Oh+'0  4 @ L Xdlt|1ss Naveen KumaroaveaveGitman_TB.dotoatm437Microsoft Word 9.0@ @T@tiX@o_ ՜.+,D՜.+,8 hp  The Dog PoundWi-  1 TitleH 6> MTWinEqns