ࡱ> z|wxy5@ Ubjbj22 ,XXqM9zfzfzf8f|.h hh"iiiiii$RMiiiiiiiQQQi iiQiQlQx ih RQuzft 0 ~@iiQiiiii3v60;v6Mark the correct answer on your Scantron sheet for each of the following questions. Which of the following is not an auxiliary storage device? D Floppy drive b. DVD drive c. Zip drive d. Scanner The smallest unit of information that can be processed by a computer is called B a byte. b. a bit. c. a nano-bit. d. a micro-byte. Which of the following is not an example of a system software category? B Internet communication software b. Database system software c. User interface subsystem d. Software compiler Which of the following is used to convert program source code into machine language? C An assembler b. A linker c. A compiler d. An interpreter Which of the following statements shows the proper way to typecast a variable for a data type that contains more than one word? D X = long double (value_1); b. X = (long double) value_1; c. X = (long double value_1); d. X = (long double) (value_1); Object code is A machine language code produced by the compiling process. b. the actual program written in English. c. the actual program written in C++. d. the result of the linking process. C++ is a hybrid language which C combines C with plusplus. b. supports C and BASIC. c. supports object-oriented and procedural programming. d. combines Windows and Macintosh. Which of the following is the first phase in the software development life cycle? A Analysis b. Design c. Integration d. Implementation A C++ compiler translates C++ into a pseudomachine language called A C++ byte code. b. C++ virtual machine. c. an interpreter. d. a parameter. Which of the following prints or displays characters? D Endl b. Lostream.h c. Cin d. Cout Which of the following source code file extensions are used for C++? B .C++ b. .Cpp c. .Cplus d. .C+plus What name is given to the named location in a computers memory which can change during program execution? A Variable b. Const c. Static d. Object Which of the following keywords is used to define a constant variable? D Static b. Literal c. Const d. Final Which of the following is an example of an escape character instruction? C % b. / c. \ d. # Which type of error is encountered if a program performs a division by zero? D Logic b. Syntax c. Pointer d. Run-time Which of the following would be best suited defined as a double rather than an int variable? C The number of boxes of chocolate in an inventory b. The number of leaflets distributed at a mall c. The distance driven from home to the mall d. The store managers name Which of the following quantities would be best represented with a boolean type variable? C The number of tacos ordered b. The average number of tacos sold per day c. Whether the customer wants a soft or hard shell taco d. The middle initial in the managers name Which of the following would be best suited defined as an int rather than a double variable? The number of bananas sold at the market b. The average grade of a student in calculus c. The height of a football player d. The football players name How many bits are used to represent a character with the Unicode standard? B 32 b. 16 c. 8 d. 4 Which of the following is not an example of a C++ comment? A /* this is a comment b. // this is a comment c. /* this is a comment */ d. // this is a comment // XYZ is most likely which kind of C++ primitive data type, given the following code? C XYZ = false; if (XYZ == true) answer = H; Int b. Char c. Bool d. Double In question #21, which kind of primitive data type would it most likely be? B Int b. Char c. Bool d. Double A program which inputs ages of students in a class and outputs the average age of all the students rounded to two decimal places would most likely use which of the following data declarations? B int age, average; double numOfstudents; int age, numberOfstudents; double average; int age; double numOfstudents, average; double age, average, numOfstudents; Which of the following best describes an assignment operator? A The value on the right-hand side of a = is assigned to the variable on the left-hand side of the =. The value on the left-hand side of a = is assigned to the variable on the right-hand side of the =. The value on the right-hand side of a == is assigned to the variable on the left-hand side of the =. The value on the left-hand side of the == is assigned to the variable on the right-hand side of the =. What is the output produced by the following statement when x is 10? C cout << x/5 + 16%x; 7 b. 3.6 c. 8 d. 10 What is the output produced by the following statement when x is 2002? A cout << (x%10)/10; 0 b. 2 c. 20 d. 200 What is the output produced by the following statement? C cout << 21/3 + 15%2; 11 b. 1 c. 8 d. 5 Which statement is legal given the following definition? C const double PI = 3.1416; PI = PI *10000; b. PI = 3.14; c. cout << PI; d. All are legal. Which statements are not legal given the following definitions? D int Gallons = 52; double Volume = 26.0; Gallons = Volume; b. Gallons = Volume%26; c. Volume = Gallons/26; d. Volume = "Gallons; The getline() function is used to obtain d only a string from a line of a file stream. b. only a char from a line of a file stream. c. only a double from a line of a file stream. d. any type from a line of a file stream. In what does the following expression result? C int('E') int('A') The int value 5 b. The char value C c. The int value 4 d. The char value D Which of the following is not a cout function for output formatting? D Precision() b. Width() c. Setf() d. All are field formatting functions. If S is a String, the main difference between cin >> S; and getline(cin, S); is that c there is no difference; they are identical. cin >> S; allows for a multiple word to be entered but not getline(cin, S). getline(cin, S); allows for a multiple word to be entered but not cin >> S. cin >> S; allows for an integer value to be entered but not getline(cin, S). The break statement c immediately terminates a program. b. causes the program to go into an infinite loop. c. immediately terminates a loop. d. is a special interpreter command. To what statement is the following statement C++ command equivalent? A S *= x; S = S * x; b. S = x * x; c. x = S * x; d. x = S * S; Which statement is the following statement C++ command equivalent? B S-- S = S - S; b. S = S - 1; c. S -= S; d. S = S + 1; What is the output produced by the following segment of code? A for (int i = 5; i >= 1; i--) cout << i ; 54321 b. 543210 c. 12345 d. 43210 The major difference between a while loop and a do-while loop is c the while loop can execute the body of its code more times. the while loop always executes its code at least once. the do-while loop always executes its code at least once. there is no difference; they are identical. What is the output produced by the following segment of code? A for (int i = 1; i < 5; i++) cout << i ; 1234 b. 12345 c. 2345 d. 012345 What is the output produced by the following segment of code? D for(int i=3; i<=5; i++); cout << i ; 5 b. 6 c. 34 d. 345 What is the output produced by the following segment of code? B String A = "Jim"; String B = Hi There; cout << B + + A ; Jim Hi There b. Hi There Jim c. Hi ThereJim d. Cannot add Strings in C++ What is the output produced by the following segment of code? A String Name = Mr.Smith; cout << Name.find(i); 5 b. 6 c. 7 d. 4 What is the output produced by the following segment of code? D String A, B; A = "123"; B = "456"; cout<< B-A; 456-123 b. 123-456 c. 333 d. Strings cannot be subtracted. Which of the following symbols is used to represent a logical OR operator? A || b. ++ c. && d. OR What is the output produced by the following segment of code? B int x = 100; int y = 200; if (x == y) cout << "A"; else if (x < y) cout << "B"; else if (x != y) cout << "C"; BC b. B c. AB d. C What is the output produced by the following segment of code? A int x = 100; int y = 200; if (x == y) cout << "A"; if (x < y) cout << "B"; if(x != y) cout << "C"; BC b. B .c AB d. C Which of the following statements is equivalent to A B ) || ( B > C ) b. ! (A <= B ) || ! ( B >= C) c. A < C d. ! ( ( A >= B ) || ( B >= C ) ) What is the output produced by the following segment of code? D int x = 0, y = 0; while (y <= 5){ y += 2; x -= y; } cout << y << " " << x; -6 6 b. 6 -6 c. 6 -8 d. 6 -12 What is the output produced by the following segment of code? A int x = 6; do { cout << "*"; x -= 2; } while (x > 1); cout << "done"; ***done b. *done c. done d. An infinite loop of asterisks is displayed. What is the output produced by the following segment of code? D int x = 6; do { cout << "*"; x += 2; } while (x != 1); cout << "done"; ***done b. *done c. done d. An infinite loop of asterisks is displayed. What command can be used as an alternative to an extended if-else ladder? B for b. switch c. && d. while What is the output produced by the following segment of code? A int x = 6, y = 0; while (y <= 5); { y += x; y -= 2; x += 2; } cout << y << " " << x; 4 8 b. 6 0 c. 6 2 d. 10 10 What is the output produced by the following segment of code? D for ( int i = 1; i < 10; i += 2) cout << i << ; 1 3 5 7 9 11 b. 2 3 4 5 6 7 8 9 10 c. 2 4 6 8 10 d. 1 3 5 7 9 Which of the following does not describe when a recursive solution could be used? D A function of repeatedly calling itself b. It can always be used in place of iteration. c. Execution usually takes longer than a loop. d. The function does not require a well-defined termination or stopping condition. A statement that must be true at the beginning of a function for it to work properly is called c a default parameter. b. a postcondition. c. a precondition. d. a function prototype. Which of the following can be returned by a function through a return statement? C Two long values b. Two int values c. A String value d. Three boolean values What value is returned by the following function: BumpIt(5,15)); the following definitions and post conditions? B int BumpIt(int x, int y) // postcondition: returns DoIt(y,x) int DoIt(int x, int y) // postcondition: returns x / y 15 b. 3 c. 0 d. None, the function call is illegal. What is the value returned by the following function: DoIt(2,BumpIt(3,5)); given the following definitions and post conditions? A int BumpIt(int x, int y) // postcondition: return x * y int DoIt(int x, int y) // postcondition: return x + y 17 b. 30 c. 32 d. 16 Using the same name for two different functions is called B incrementing. b. overloading. c. overriding. d,illegal, because two functions cannot have the same name. Which type of function performs some action and returns no result? D Long b. Char c. Bool d. Void What is the output returned by the following function: ChangeIt(4,6)? C int ChangeIt(int x, int y) { if (y<= 1) return x; else return ChangeIt(x, y-2); } 24 b. 6 c. 4 d. 0 What are the characteristics of the parameters in the following function? B void MandM( int &one, int &other ) { int t = one; one = other; other = t; } They are formatted parameters. b. They are reference parameters. c. They are value parameters. d. They are actual parameters. What would be an appropriate name for the function defined in question (#62)? D CompareIt b. StoreIt c. AddIt d. SwapIt Which of the following statements is not valid? D struct ExampleType { String Product; double Price; int Quantity; }; ExampleType Item; cout << Item.Product; b. cout << Item.Price * Item.Quantity; c. cout << Item.ProductName[0]; d. cout << Item; What kind of error would be encountered when accessing the 101st item in an array defined to consist of 100 items? C Logic error b. Syntax error c. Range bound error d. Invalid range error What is the output produced by the following segment of code? D int [ ] List; List = new int[5] ; for(int k=0; k List[10]; b. Vector List(10); c. Array List(10); d. List vector(10); Which of the following correctly prints all the elements of an array List? A for (int i = 0; i 0) { ComputeTheAnswerTo(N/3); Cout << N << * ; } } 13 * 4 * 1 * 0 * b. 13 * 4 * 1 * 1 * 4 * 13 * c. 13 * 4 * 1 * 0 * 1 * 4 * 13 * d. An error will occur. What is returned by the call to ComputeTheAnswerTo(11); given the following definition? C int ComputeTheAnswerTo (int N) { if (N == 0) return(0); else return(N%2 + ComputeTheAnswerTo (N/2)); } 0 b. 2 c. 3 d. 4 Which of the following can be stored in a file stream? D Int values b. Double values c. String values d. All of the above can be stored in a file stream. Which of the following is not true about an initializer list? C They give initial values to const data members. They are used to construct data members that are objects. They can be used with any function and a constructor. They are invoked when objects of a struct are declared. Data members declared in the private section of class are A accessible only by member functions. b. accessible only by non-member functions. c. accessible by any function that declares an object of that class. d. never accessible. Code for a class is divided into the following files, which contain C .h the data members and .cpp the member functions. .h the public section and .cpp the private section. .h the declaration of all members and .cpp the implementation of the member functions. .h const members and .cpp non-const members. Member functions that are declared const B cannot be changed by the programmer. b. can be called for objects that have been declared as const. c. can modify data members in the object. d. can only contain const data. A default constructor A requires no arguments. is called for every object declared. must have arguments for every data member in the class. returns an int indicating whether the constructor succeeded or not. Which of the following is true about constructor member functions? B All constructors are to be called for all objects of that class. All constructors are automatically called at the start of a program. All constructors are automatically called whenever an object is defined. Constructors are not needed of a class. Objects are usually passed as reference parameters because B there is no other way to perform the passing operation. reference parameters make local copies of the object. reference parameters reduce the time and memory required in passing the object. objects are always required to be modified by the methods. Which of the following is not true about classes? C They are used to instantiate objects. b. Properties of classes include member functions. c. They are used to define file streaming. d. They can be included in a library. Which of the following is not a C++ language reserve word? A Unprotected b. Float c. This d. Try A searching method that repeatedly references the midpoint of an array is a(n) A binary algorithm. b. quicksort algorithm. c. bubble algorithm. d. insertion algorithm. A sorting method that moves elements around a pivot element is called B binary algorithm. b. quicksort algorithm. c. bubble sort algorithm. d. insertion sort algorithm. Which is not true about the various kinds of sorts? A The insertions sort normally uses a looping process. b. The quicksort normally uses a looping process. c. The selection and merge sorts normally use a recursive process. d. The merge sort normally uses a looping process. Computer scientists study the relationship between an arrays length and its execution time using a recursion. b. the iterative process. c. a binary search algorithm. d. big-O notation. Which is the maximum number of steps needed for a binary search algorithm to search a sorted list of 255 elements? C 6 b. 7 c. 8 d. 9 Which of the following is considered to be the best? B O(log n) b. O(n2) c. O(n2 1) d. O(n) Which of the following big-O values represents a quadratic algorithm? C O(n log n) b. O(n3) c. O(n2) d. O(2n) The #ifndef and #endif compiler directives a are used to prevent multiple compilation of library files. are used to replace the ordinary if conditional statement. are used in implementing default constructors. cannot be used in conjunction with a #define statement. Which of the following is used to allocate dynamic memory? A New b. Delete c. NULL d. * GUI is an interface that uses b CD-ROM or DVDs. b. pictures to communicate. c. mouse to point. d. floating point numbers. In the graphics environment interface window, labels, buttons, and data entry fields are referred to as b GUI icons. b. window objects. c. active controls. d. control objects. In the graphics environment a single dot, or picture element on the screen is called a d window. b. class. c. mouse. d. pixel. In the graphics environment colors can by fine tuned with d 256 shades of red. b. 256 shades of green. c. 256 shades of blue. d. all of the above. If the variables x and y are defined as integers, and the variables a and b are defined as float, which variables will be promoted when the expression x=(a+b) * y are processed? d A b. B c. Y d. X 2003 Programming C++ Page  PAGE 8 PAGE  RSTnq     ' * - 2 3 9 D ϽvvvfϽTvfϽv"hG'h25CJH*OJQJaJhG'hk*CJH*OJQJaJ"hG'hk*5CJH*OJQJaJ%hG'hWU5<CJH*OJQJaJ"hG'hWU5CJH*OJQJaJhG'hWUCJH*OJQJaJ"hG'h_5CJH*OJQJaJhG'h_CJH*OJQJaJhG'hUCJH*OJQJaJhG'hdCJH*OJQJaJ T X   t 8 3 ;  & F&gdk* & F&gd6 & F&gdc & F&gd{h^hgdk* & F&gdWU & F&gdd & F&gddqUUD J q r u   n p q s t ʺʧʕuʕʕcPccc%hG'h65<CJH*OJQJaJ"hG'h65CJH*OJQJaJhG'hUCJH*OJQJaJhG'hk*CJH*OJQJaJ"hG'hU5CJH*OJQJaJ%hG'hWU5<CJH*OJQJaJhG'hWUCJH*OJQJaJ"hG'hWU5CJH*OJQJaJ"hG'h_5CJH*OJQJaJ"hG'hk*5CJH*OJQJaJ 2 4 5 7 8 R X r x   / 7 Y _ ˹˔˹ݧݧ݄ta˹QݹݹݹahG'h_CJH*OJQJaJ%hG'h65<CJH*OJQJaJhG'hcCJH*OJQJaJhG'hk*CJH*OJQJaJ%hG'hc5<CJH*OJQJaJ"hG'huU?5CJH*OJQJaJ"hG'h_5CJH*OJQJaJ"hG'h65CJH*OJQJaJ"hG'hk*5CJH*OJQJaJhG'h6CJH*OJQJaJ     "(<BQWʺܘuܪhG'h6CJH*OJQJaJ%hG'h65<CJH*OJQJaJ"hG'hG'5CJH*OJQJaJhG'h_CJH*OJQJaJhG'hk*CJH*OJQJaJ"hG'hk*5CJH*OJQJaJ"hG'h_5CJH*OJQJaJ"hG'h65CJH*OJQJaJ&d9!K.BURh^hgdk* & F&gdg'= & F&gdc & F&gdd & F&gd6 ȶȤȤȤr`MȤ%hG'h65<CJH*OJQJaJ"hG'h25CJH*OJQJaJhG'hcCJH*OJQJaJhG'hk*CJH*OJQJaJ"hG'hU5CJH*OJQJaJ"hG'hk*5CJH*OJQJaJ"hG'hc5CJH*OJQJaJ"hG'h_5CJH*OJQJaJ"hG'h65CJH*OJQJaJ%hG'hc5<CJH*OJQJaJ%'+13ͻͻtdR͗R͗R"hG'hxp5CJH*OJQJaJhG'hxpCJH*OJQJaJhG'hg'=CJH*OJQJaJ%hG'hg'=5<CJH*OJQJaJ"hG'hg'=5CJH*OJQJaJ"hG'h_5CJH*OJQJaJ"hG'h65CJH*OJQJaJ"hG'hk*5CJH*OJQJaJhG'h_CJH*OJQJaJhG'h6CJH*OJQJaJ !'-.04:;?BEJK "%ڶڶڶqȶȶaڶڶڶhG'h_CJH*OJQJaJ%hG'hg'=5<CJH*OJQJaJhG'hcCJH*OJQJaJhG'hk*CJH*OJQJaJ"hG'hc5CJH*OJQJaJ"hG'hk*5CJH*OJQJaJ"hG'h_5CJH*OJQJaJ"hG'hg'=5CJH*OJQJaJ%hG'hc5<CJH*OJQJaJ&%-.}˸˦˦ˁo]o]M=hG'hg'=CJH*OJQJaJhG'hk*CJH*OJQJaJ"hG'hk*5CJH*OJQJaJ"hG'h25CJH*OJQJaJ"hG'hU5CJH*OJQJaJ%hG'hg'=5<CJH*OJQJaJ"hG'hg'=5CJH*OJQJaJ%hG'h_56CJH*OJQJaJ"hG'h_5CJH*OJQJaJ"hG'hc5CJH*OJQJaJhG'hcCJH*OJQJaJ#)*&,-5TͻͻtdͻQdͻ%hG'h_56CJH*OJQJaJhG'hg'=CJH*OJQJaJhG'hk*CJH*OJQJaJ"hG'h25CJH*OJQJaJ%hG'hg'=5<CJH*OJQJaJ"hG'h_5CJH*OJQJaJ"hG'hg'=5CJH*OJQJaJ"hG'hk*5CJH*OJQJaJhG'h2CJH*OJQJaJhG'h_CJH*OJQJaJ 178-3JPʷܧʷʷt%hG'h_56CJH*OJQJaJhG'hg'=CJH*OJQJaJhG'h_CJH*OJQJaJhG'hk*CJH*OJQJaJ%hG'hg'=5<CJH*OJQJaJ"hG'hg'=5CJH*OJQJaJ"hG'hk*5CJH*OJQJaJ"hG'h_5CJH*OJQJaJ&h#s]o? hh^h`hgd9 hh^h`hgdc & F&gdc & F&gd9 & F&gd98^8gdU^gdU & F&gdg'= & F&gdd  \^npqrstvy|}WYʺ܈vcvvʺSvvvhG'h9CJH*OJQJaJ%hG'h95<CJH*OJQJaJ"hG'h95CJH*OJQJaJ"hG'hxp5CJH*OJQJaJhG'h_CJH*OJQJaJhG'hUCJH*OJQJaJhG'hk*CJH*OJQJaJ"hG'hk*5CJH*OJQJaJ"hG'h_5CJH*OJQJaJ"hG'hU5CJH*OJQJaJYZ]9;<>?128;>ABȸږږږڃږڃږp^^NhG'hk*CJH*OJQJaJ"hG'hk*5CJH*OJQJaJ%hG'h_56CJH*OJQJaJ%hG'h95<CJH*OJQJaJ"hG'h_5CJH*OJQJaJhG'h9CJH*OJQJaJhG'h_CJH*OJQJaJ"hG'hc5CJH*OJQJaJ"hG'h95CJH*OJQJaJ%hG'hc5<CJH*OJQJaJl1K <z0I6h^hgdk* & F& & F&gd0`gd0`gd9 & F&gdd & F&gd9BH  &(),/128:tvwyzʷܤrrʷܤrbrʷܤhG'hk*CJH*OJQJaJ"hG'h"5CJH*OJQJaJhG'h_CJH*OJQJaJhG'h"CJH*OJQJaJ%hG'h_56CJH*OJQJaJ%hG'h05<CJH*OJQJaJ"hG'h05CJH*OJQJaJ"hG'h_5CJH*OJQJaJ"hG'hk*5CJH*OJQJaJ&E̼ܪucPc=%hG'h_56CJH*OJQJaJ%hG'h-B5<CJH*OJQJaJ"hG'h05CJH*OJQJaJ%hG'h_5CJH*OJQJ\aJhG'h0CJH*OJQJaJ"hG'h25CJH*OJQJaJ"hG'h"5CJH*OJQJaJhG'h_CJH*OJQJaJhG'hk*CJH*OJQJaJ"hG'hk*5CJH*OJQJaJ"hG'h_5CJH*OJQJaJEGHIZau{ԼxhxXxF3F%hG'h05<CJH*OJQJaJ"hG'h05CJH*OJQJaJhG'hnTCJH*OJQJaJhG'h-BCJH*OJQJaJhG'h_CJH*OJQJaJhG'hk*CJH*OJQJaJ"hG'hk*5CJH*OJQJaJ"hG'h_5CJH*OJQJaJ.hG'h_56B*CJH*OJQJaJph.hG'hnT56B*CJH*OJQJaJph%hG'hnT56CJH*OJQJaJ 2:eil Jʺr``ʺP`hG'h"CJH*OJQJaJ"hG'h"5CJH*OJQJaJ%hG'h_56CJH*OJQJaJ%hG'h05<CJH*OJQJaJ"hG'h05CJH*OJQJaJhG'h_CJH*OJQJaJhG'hk*CJH*OJQJaJ"hG'hk*5CJH*OJQJaJ"hG'hU5CJH*OJQJaJ"hG'h_5CJH*OJQJaJ0z"N3 L ;!C!!!!"F"d"p""8`8gd@m & F&gd`gdh^hgdk* & F&gdd & F&gd0`gd0JMtvwyz{!?L3 H I K m t 5!7!8!˸ݦݦݦt˸ݔt˸ݦݔݔݦtݦ˸hG'h_CJH*OJQJaJhG'hk*CJH*OJQJaJ"hG'hU5CJH*OJQJaJ"hG'hk*5CJH*OJQJaJ%hG'h05<CJH*OJQJaJ"hG'h05CJH*OJQJaJ"hG'h_5CJH*OJQJaJhG'h0CJH*OJQJaJ-8!:!;!C!M!T!^!d!n!t!!!!!!!!!!!!!!@"B"C"E"F"p"u"|"""""""ɹܧܧܕܧrܧܕɹܧܧ`"hG'h@m5CJH*OJQJaJhG'hk*CJH*OJQJaJ%hG'h5<CJH*OJQJaJ"hG'h5CJH*OJQJaJ"hG'hk*5CJH*OJQJaJhG'h_CJH*OJQJaJ%hG'h_56CJH*OJQJaJ"hG'h_5CJH*OJQJaJ"hG'h05CJH*OJQJaJ$"""R#######$$($)$/$4$:$>$D$$$$$$$ȸȦȀp^^^ȦKȀ%hG'hc5<CJH*OJQJaJ"hG'hk*5CJH*OJQJaJhG'hk*CJH*OJQJaJ%hG'h_56CJH*OJQJaJ%hG'h9G5<CJH*OJQJaJ"hG'h9G5CJH*OJQJaJhG'h_CJH*OJQJaJ"hG'h_5CJH*OJQJaJ"hG'h@m5CJH*OJQJaJ%hG'h@m5<CJH*OJQJaJ""#R####$$$K$$$$$%+%B%Y%%%& & F&gdl^gdl & F&gdc8^8gd9G & F&gd9G h^h`gd9G`gd9G & F&gd@m & F&gdd$$$$$$$$$$$$%%%%%Y%e%i%l%x%~%%%%%%%%% &ʺܘrʺbPܘr"hG'h25CJH*OJQJaJhG'h_CJH*OJQJaJ%hG'h_56CJH*OJQJaJ%hG'hl5<CJH*OJQJaJ"hG'hl5CJH*OJQJaJhG'hcCJH*OJQJaJhG'hk*CJH*OJQJaJ"hG'hk*5CJH*OJQJaJ"hG'h_5CJH*OJQJaJ"hG'hc5CJH*OJQJaJ& &7&z&&&&&&:'V'''''''''(!(d(q(^gdM8^8gdM & F&gdM^gdM & F&gdd & F&gdl^gdl &!&'&(&.&/&5&t&v&w&y&z&&&&&&&&&&4'6'7'9':'<'@'C'E'K'M'S'U'V''''''( ( ((((((^(`(a(c(˹˓݃˹˹˓݃˹hG'hk*CJH*OJQJaJ%hG'h_56CJH*OJQJaJ%hG'hM5<CJH*OJQJaJ"hG'hM5CJH*OJQJaJ"hG'h_5CJH*OJQJaJ"hG'hk*5CJH*OJQJaJhG'h_CJH*OJQJaJ3c(d(((((((((((")$)%)')>)D)_)e)j)m)p))))))*#*˻r_rLr%hG'hU56CJH*OJQJaJ%hG'hU5<CJH*OJQJaJ"hG'hU5CJH*OJQJaJ%hG'h*5<CJH*OJQJaJ"hG'h*5CJH*OJQJaJ"hG'hk*5CJH*OJQJaJhG'hk*CJH*OJQJaJhG'h_CJH*OJQJaJ%hG'h_56CJH*OJQJaJ"hG'h_5CJH*OJQJaJq(~((((((((())))))***I*J*h^hgdk* & F&gdU^gdU^gdU & F&gdU & F&gd* & F&gdd & F&gdM8^8gdM^gdM#*)*.*4*:*=*@*F*I*J**************"+#+`+b+c+e+f++++++++++̼rbbrbhG'h_CJH*OJQJaJ%hG'h_56CJH*OJQJaJ%hG'h*5<CJH*OJQJaJ"hG'h*5CJH*OJQJaJ"hG'h_5CJH*OJQJaJhG'hUCJH*OJQJaJhG'hk*CJH*OJQJaJ"hG'hU5CJH*OJQJaJ"hG'hk*5CJH*OJQJaJ&J*********#+f+q+u+w++++++M,q,,,,,, & F&gd*^gd*^gd* & F&gdd+G,I,J,L,P,S,V,\,b,d,k,,,,,, ------"-(-.-/-l-n-o-q-r----------..:.<.=.thG'h*CJH*OJQJaJ%hG'h_56CJH*OJQJaJhG'h_CJH*OJQJaJhG'hk*CJH*OJQJaJ"hG'hk*5CJH*OJQJaJ%hG'h*5<CJH*OJQJaJ"hG'h*5CJH*OJQJaJ"hG'h_5CJH*OJQJaJ-,,,, -/-r----@...&///<001I111^gd< & F&gd<h^hgdk*8^8gd* & F&gdd & F&gd*^gd*^gd*=.?.@.A.H.g.m.n..........&/(/e//////////////ܸܦܦwgTg%hG'h*5<CJH*OJQJaJhG'h_CJH*OJQJaJhG'hUCJH*OJQJaJhG'hk*CJH*OJQJaJhG'5CJH*OJQJaJ"hG'hk*5CJH*OJQJaJ"hG'h25CJH*OJQJaJ"hG'hU5CJH*OJQJaJ"hG'h_5CJH*OJQJaJ"hG'h*5CJH*OJQJaJ ///608090;0<0=0K0R0S0`0c0f0g0t0z0{00001111111111ʷscʷPc%hG'h_56CJH*OJQJaJhG'h_CJH*OJQJaJhG'hUCJH*OJQJaJhG'hk*CJH*OJQJaJ"hG'hk*5CJH*OJQJaJ"hG'hU5CJH*OJQJaJ%hG'h<5<CJH*OJQJaJ"hG'h<5CJH*OJQJaJ"hG'h*5CJH*OJQJaJ"hG'h_5CJH*OJQJaJ111162E2F2H2I2K2L222222222223!3"3#3135383D3J3U3Z3333333333333333ʷʷ܄ʷ܄hG'hk*CJH*OJQJaJhG'h_CJH*OJQJaJ%hG'h_56CJH*OJQJaJ%hG'h<5<CJH*OJQJaJ"hG'h<5CJH*OJQJaJ"hG'hk*5CJH*OJQJaJ"hG'h_5CJH*OJQJaJ.1L2222$3334L4g4i4~444445*5,595^gd^gd & F&gd^gd$^gd$^gd$ & F&gd<^gd< & F&gdd333F4H4I4K4L44444444455555S5q5u5x55555(6*6+6,666=6D6K6P6T6ͻ͕̓̓scͻ͕̓sc̓ͻ̓̓̓hk h_CJH*OJQJaJhk hk*CJH*OJQJaJ"hG'hk*5CJH*OJQJaJ%hG'h_56CJH*OJQJaJ%hG'h5<CJH*OJQJaJ"hG'h5CJH*OJQJaJ"hG'h_5CJH*OJQJaJhG'h_CJH*OJQJaJhG'h<CJH*OJQJaJ&95F5Q5S555-6^666666666N7a77(8k8z8^gdb< & F&gd`gd & F&gddh^hgdk* & F&gd^gd^gdT6W6]66666666667(7.7J7N7R7a777777ͻͩ̓qqqaO<%hG'hb<5<CJH*OJQJaJ"hG'hb<5CJH*OJQJaJhG'h_5CJOJQJaJ"hG'hk*5CJH*OJQJaJ%hG'h_56CJH*OJQJaJ%hG'h5<CJH*OJQJaJ"hG'h5CJH*OJQJaJ"hG'hCJH*OJQJ\aJ"hG'h_5CJH*OJQJaJhk h_CJH*OJQJaJhk hk*CJH*OJQJaJ77777777777888e8g8h8j8k888899 9999"9G9\9^9ܸܸubܸܸܸP"hG'hxp5CJH*OJQJaJ%hG'h_56CJH*OJQJaJ%hG'hb<5<CJH*OJQJaJhk h_CJH*OJQJaJhk h2CJH*OJQJaJhk hk*CJH*OJQJaJ"hG'hk*5CJH*OJQJaJ"hG'h25CJH*OJQJaJ"hG'h_5CJH*OJQJaJ"hG'hb<5CJH*OJQJaJz8888889b99$:H:Z:::::::,;a;;< & F&gd-B & F&gd-B`gd & F&gdk* & F&gdd & F&gd8^8gdb<^gdb<^9_9a9b9c9z9}99999999: :!:#:$:A:Z:::;(;);+;,;-;3;4;ȶȤtȤdtR"hG'hxp5CJH*OJQJaJhk hxpCJH*OJQJaJhk h_CJH*OJQJaJhk hUCJH*OJQJaJhk hk*CJH*OJQJaJ"hG'hk*5CJH*OJQJaJ"hG'hU5CJH*OJQJaJ"hG'h_5CJH*OJQJaJ"hG'hb<5CJH*OJQJaJ%hG'hb<5<CJH*OJQJaJ4;7;:;;;@;A;G;H;M;N;T;U;_;`;a;n;p;;;;;;;;<<K<<<ξxeUhk h-BCJH*OJQJaJ%hG'h-B5<CJH*OJQJaJhG'h-BCJH*OJQJaJ"hG'h-B5CJH*OJQJaJ"hG'h_5CJH*OJQJaJ"hG'hb<5CJH*OJQJaJhk h_CJH*OJQJaJhk hb<CJH*OJQJaJhk hKCJH*OJQJaJ"hG'hK5CJH*OJQJaJ<K<<<<<<<<=6=y========(> & F&gd [ ^`gd [^gd [ & F&gd 8^8`gdb< ^`gdb<^gdb< & F&gddh^hgdK<<<<== == =#=,=2=s=u=v=x=y=====>>>$>'>(>e>g>h>ȵȣȣpȵ^L^L^Lp"hk h_5CJH*OJQJaJ"hk hK5CJH*OJQJaJ%hG'hxp5<CJH*OJQJaJhk h_CJH*OJQJaJhk hKCJH*OJQJaJ"hG'hK5CJH*OJQJaJ%hG'h_56CJH*OJQJaJ"hG'h_5CJH*OJQJaJ"hG'hb<5CJH*OJQJaJ%hG'hb<5<CJH*OJQJaJh>j>k>>>??%?+?4?7?:?G?H?b?e?j????ɷܥܥܥscPs=s%hG'hu5<CJH*OJQJaJ%hG'h-B5CJH*OJQJ\aJhG'h-BCJH*OJQJaJ"hG'h-B5CJH*OJQJaJhk h_CJH*OJQJaJhk hKCJH*OJQJaJ"hG'hK5CJH*OJQJaJ"hG'h [5CJH*OJQJaJ%hG'h_56CJH*OJQJaJ"hG'h_5CJH*OJQJaJ"hG'hb<5CJH*OJQJaJ(>k>v>>>>>>>>H???D@@@@A!A6AAACA & F&gdu & F&gd-B & F&gd-B & F&gd [^gd [^gd [ & F&gdd?D@@@@@@@@@tAAAAAAAAA8B:B;B=B>Bݹoo_Oo="hG'h [5CJH*OJQJaJhk h_CJH*OJQJaJhk hKCJH*OJQJaJ"hG'hK5CJH*OJQJaJ%hG'h_56CJH*OJQJaJ%hG'hb<5<CJH*OJQJaJ"hG'hb<5CJH*OJQJaJ"hG'h_5CJH*OJQJaJ"hG'h25CJH*OJQJaJ"hG'h-B5CJH*OJQJaJhk huCJH*OJQJaJCA\ApArAtAA>B]B_BkBvB{BBBBB`CCC DBDzDD & F&gddp^pgd [ & F&gdd & F&gd [^gd [^gd [ ^ gd [>BBBBBBBBBBBBBBBBC C CCC)C,C/C_CzC}CȸڙzhhȸXhG'h [CJH*OJQJaJ"hG'hb<5CJH*OJQJaJhG'hb<<CJOJQJaJhG'hb<CJOJQJaJhG'h_CJOJQJaJhk h_CJH*OJQJaJhk hKCJH*OJQJaJ"hG'hK5CJH*OJQJaJ"hG'h_5CJH*OJQJaJ%hG'h_56CJH*OJQJaJ}CCCCCCCCCC D DBDCDDDDDDDDDD EEȵڣڣړڣȵڃsaOs"hk h_5CJH*OJQJaJ"hk hK5CJH*OJQJaJhk hKCJH*OJQJaJhk h_CJH*OJQJaJhk h [CJH*OJQJaJ"hG'h [5CJH*OJQJaJ%hG'hb<5<CJH*OJQJaJ"hG'hb<5CJH*OJQJaJ"hG'h_5CJH*OJQJaJ%hG'h_5CJH*OJQJ\aJDEmEEEFtFFF8GGGGGHXHHH%InIIIJDJJJ & F&gd( & F&gddh^hgdK & F&gd [EETE[EEEEEEFtFFFFFFFFF4GP?PFPIPJPOP̺s̃sd̃ThG'h_5CJOJQJaJhk h_CJOJQJaJhk hKCJH*OJQJaJ"hG'hK5CJH*OJQJaJ%hG'hI\5<CJH*OJQJaJ"hG'hI\5CJH*OJQJaJ"hG'h_5CJH*OJQJaJhk h_CJH*OJQJaJ"hk h_5CJH*OJQJaJ"hk hK5CJH*OJQJaJ OPUPPPPPPPPPPPPPPPPPPPPPPQQ=QRRRRR R"R%Rʷܧxܧfʷ܇ʷVhk h ACJH*OJQJaJ"hG'h A5CJH*OJQJaJhk h_CJOJQJaJhk h_CJH*OJQJaJhk hKCJH*OJQJaJhG'h_5CJOJQJaJ%hG'hI\5<CJH*OJQJaJ"hG'hI\5CJH*OJQJaJ"hG'h_5CJH*OJQJaJ"hG'hK5CJH*OJQJaJ!QQR@RcRR/S|SSTDTTXUpUqUUUUUU&`#$  !0*gdG'$a$gdd  !0*gdk*gdD & F&gduU? & F&`gd&e# & F&gdR?R@RERJRSR]R_R`RbRrRvRyRRRRRRʺr_rM=MMhk hKCJH*OJQJaJ"hG'hK5CJH*OJQJaJ%hG'hI\5<CJH*OJQJaJ"hG'hI\5CJH*OJQJaJ"hG'hxp5CJH*OJQJaJ"hG'hT@TATCTVT\TpTvTTTTܓsܓܓܓܓܓsܸܓܓܓhk h_CJH*OJQJaJhk hKCJH*OJQJaJ"hG'hK5CJH*OJQJaJ%hG'hI\5<CJH*OJQJaJ"hG'hI\5CJH*OJQJaJ"hG'h&e#5CJH*OJQJaJ"hG'h_5CJH*OJQJaJ"hG'h&hdhD5CJH*OJQJ^JaJhk huU?CJH*OJQJaJhk hKCJH*OJQJaJ"hG'hK5CJH*OJQJaJ%hG'huU?5<CJH*OJQJaJ"hG'hI\5CJH*OJQJaJ"hG'huU?5CJH*OJQJaJ"hG'h_5CJH*OJQJaJ"hG'h25CJH*OJQJaJhk h&e#CJH*OJQJaJhk h2CJH*OJQJaJqUUUUUUUUUUUUUUUUUUUUU͵zvlflfv]vYE&hdhD5CJH*OJQJ^JaJh.hk*h ^aJ h ^0Jjh ^0JUh ^ h ^0J5CJH*OJQJaJ+h.0J5CJH*OJQJaJmHnHu&hk*hk*0J5CJH*OJQJaJ/jhk*hk*0J5CJH*OJQJUaJ"hk*hk*5CJH*OJQJaJ"hk*h ^5CJH*OJQJaJhk*5CJH*OJQJaJUUUUUUUgdDgdk**&P1h:pk*/ =!"#$%R@R Normal)5CJH*OJQJ\_HaJmH sH tH DA@D Default Paragraph FontVi@V  Table Normal :V 44 la (k@(No List 4 @4 Footer  !.)@. Page Number4@4 Header  !*W@!* Strong5\@B@2@ Body Text5CJH*OJQJj@Cj D Table Grid7:V0MT Xt83;d9!K . B U  R h #s]o?l1K <z0I60z"N3L;CFdpR$K+BY 7z:V ! d q ~ (!!!!!!"""I"J"""""""""##f#q#u#w######M$q$$$$$$$$$ %/%r%%%%@&&&&'''<(()I)))L****$+++,L,g,i,~,,,,,-*-,-9-F-Q-S----.^.........N/a//(0k0z0000001b11$2H2Z2222222,3a334K44444444565y55555555(6k6v66666666H777D88889!969A9C9\9p9r9t99>:]:_:k:v:{:::::`;;; <B<z<<=m===>t>>>8?????@X@@@%AnAAABDBBBCeCCC#DwDDEEE'FFGaGGG+HZHHHI=IxIIIJ@JcJJ/K|KKLDLLXMpMqMMMMMMMMMMM0& 0& 0T& 0& 0& 0& 0X0& 0& 0& 0& 00& 0& 00& 0& 0& 0& 0;& 0& 0& 0 & 0d& 0 & 0& 0 & 09& 0 & 0& 0 & 0K& 0& 0& 0& 0. 0& 0& 0B 0& 0& 0U 0& 0& 0R & 0& 0 & 0000& 0h & 0& 0#& 0& 00& 00& 00& 0& 0& 0& 0& 0& 0& 00& 0& 00& 0K& 00& 0& 00& 0<& 000& 0& 0& 00& 00& 0& 0& 00& 0 & 0& 0& 0& 0& 0!& 030& 0"0& 0& 0#0& 0& 0$00& 0& 0%& 0& 0& 0& 0& 0&00& 0& 0'00& 0K& 0(000& 0& 0)00& 0& 0*0000& 07& 0+& 0& 0,00000000& 0V& 0-00000000& 0! & 0.& 0 & 0/000000& 0!0& 000000000& 0J"& 010000000& 0##& 02& 0#& 0300000000& 0q$& 0400& 0/%& 05& 0%00& 06& 0&'& 07& 0'& 0800& 0(& 0900& 0)& 0:& 0*& 0;& 0+& 0<000000& 0,& 0=000000& 0,0& 0>& 0-& 0?0000000& 0^.0& 0@& 0a/& 0A000000& 0(0& 0B& 01& 0C& 010& 010& 010& 010& 0D& 02& 0E& 0a30& 0F0000000& 0K4& 0G0000000& 065& 0H00000000& 0(6& 0I& 0H7& 0H7& 0H7& 0H7& 0J000000000& 08& 0K0000000& 09& 0L& 0:& 0M& 0`;& 0`;& 0`;& 0`;& 0N& 0z<0& 0O& 0m=& 0m=& 0m=& 0m=& 0P& 0>0& 0Q& 0?& 0?& 0?& 0?& 0R& 0X@& 0X@& 0X@& 0X@& 0S& 0A& 0A& 0A& 0A& 0T& 0B0& 0U& 0C& 0V& 0#D& 0W& 0D& 0X& 0E0& 0Y& 0F& 0Z& 0aG& 0[& 0G& 0\& 0ZH& 0]& 0H& 0H& 0H& 0H& 0^& 0I& 0_& 0@J& 0`& 0J& 0a& 0|K& 0b& 0L& 0c& 0L0@0@0@0@0My00My00My00@0My000T Xt8;d9!K . B U R h #s]o?l1K <z0I0z"N3L;CFdpR$K+BY 7z:V ! d q ~ (!!!!!!"""J"""""""""##f#q#u#w######M$q$$$$$$$$$ %/%r%%%%@&&'''<(()I)))L****$++,L,g,i,~,,,,,-*-,-9-F-Q-S---.^.........a//(0k0z0000001b11$2H2Z2222222,3a33K44444444565y55555555(6k6v66666666H777D88889!969A9C9\9p9r9t99>:]:_:k:v:{:::::`;;; <B<z<<m===>t>>>????@X@@@%AnAAABDBBBCCC#DwDDEEE'FFGaGGG+HZHHHI=IxIIIJ@JcJJ/K|KKLDLLXMpMM0& 0& 0U& 0& 0& 0& 0;& 0& 0& 0& 0x& 0& 0l& 0& 0'& 0& 0& 0& 0T& 0 & 0& 0 & 03& 0 & 0& 0 & 0#& 0 & 0& 0& 0& 0& 0R& 0& 0Z & 0& 0a & 0& 0N & 0& 0 & 0000& 0H & 0& 0 & 0& 0[ @0& 0[ 0& 0[ 0& 0[ & 0& 0& 0& 0& 0& 00& 0& 00& 0& 00& 0n& 00& 0& 000@0@& 0& 00& 0& 0& 0& 0 & 0 & 0 & 0 & 0 & 0!& 0u& 0"0& 0"& 0#0& 0& 0$00& 0& 0%A& 0A& 0& 0& 0& 0&00& 0& 0'00& 0B& 0(000& 0& 0)00& 0& 0*0000& 0& 0+& 0& 0,00000000& 0& 0-00000000& 0& 0.& 0p& 0/000000& 0& 000000000& 0& 010000000& 0 & 02& 0P!& 0300000000& 0!& 0400& 0d"& 05& 0#& 06& 0:$& 07& 0$& 0800& 0%& 0900& 0&& 0:& 0;& 0](& 0<000000& 0(& 0=000000& 0b)& 0>& 0s*& 0?0000000& 0*& 0@& 0+& 0A000000& 0,& 0B& 0o-& 0C& 0.0& 0.0& 0.0& 0.0& 0D& 0G/& 0E& 0/& 0F0000000& 0y0& 0G0000000& 0U1& 0H00000000& 082& 0I& 0I3& 0I3& 0A3& 0A3& 0JH0H0H0H0H0H0H0H0H0H& 04H& 0KH0H0H0H0H0H0H0H& 05H& 0LH& 06H& 0MHA& 007H& 007H& 007H& 007H& 0NH& 0K8H& 0OH& 0-9H& 0-9H& 0-9H& 0-9H& 0PH& 0b:H& 0QHA& 06;HA& 06;HA& 06;H& 06;H& 0RH& 0 <H& 0 <H& 0 <H& 0 <H& 0SH& 0I=H& 0I=H& 0I=H& 0I=H& 0TH& 0>H& 0UH& 0\?H& 0VH& 0?H& 0WH& 0[@H& 0XH& 0@HA& 0@H@& 0YHA& 0 BH@& 0ZHA& 0BH@& 0[HA& 0CCH@& 0\HA& 0CH@& 0]HA& 0DHA& 0DHA& 0DHA& 0DH@& 0^HA& 0EH@& 0_HA& 0fEH@& 0`HA& 0EH@& 0aHA& 0FH@& 0bHA& 0FH@& 0cHA& 0GH0XY+6888;D %YBEJ8!"$ &c(#*+=./13T67^94;<h>?>B}CEJL0MOOP%RRTqUU+./02345679:<=>?ABCEGHJLNOPRTUWXZ[]_`bcefghjklm"&q(J*,195z8<(>CADJQUU,18;@DFIKMQSVY\^adinU-$&+2;!!8@0(  B S  ? (;?&+28} sv]`v!  ! PT  NQ")*-KNOPWX_`dhlm   !BF d g q t !!" """""""f#i#w#{###$$$$,%.%x%{%|%}%%%%%%%%%''V(Y((((()) ))))))')4)?)C)D)G)I)L)M)Q)R)U)Y)\)m)z))*L*O*P*V*W*Z*^*a*m*z***********X+a+++8,@,L,O,P,X,Y,\,`,c,,, ----- -,-/--.6.=.D.K.P.W.]............./ / ///'/./2/6/F/R/V/k0n0000000000000)2,2-2.2425262A2C2D2H2L2V2W2_2b2c2d2j2k2m2x2z2{222222222222222222222222222222222,333G3M344444444y5|5555555k6n666666666q7w777/858889999!9%9C9U9\9`9::>:A:B:T:V:Y:::::;;e<k<==>>D>G>>>@"@DD6E?EEFHHHH;M>MqMMM !*+67GH34\]?@TU#&/2 kmou+/!  z!0667ijz"'NQLWqrFIdhRUBF d g q t ~ 5!8!V!Y!n!q!!!!!" """""""""f#i#q#s#w#{#####$$$$$$r%u%%%''''''''(())I)L))*L*O***$+0+5+6+G+H+X+Z+8,A,L,O,i,k,~,,,,- -,-/-9-<-F-K-......N/O/k0n000000000H2L2222222,3337383D3E3Q3R3333333444444444444y5|555555555k6n6v6|6666666668889!9%96989C9V9i9l9::>:A:_:a:k:r:v:z:{::<<<<==X=Y=>>>>8?9?e?f???????@@AABBDBMBBBwD}DDDDDDDE%E3E4EMENEjEkEG GGG.G/GNGOGII=I@IxI{IIIvJwJJJJJ=K>KRKSKhKiKKKKKKKKKLL9M;MqMMM333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333GX;Td ]K1<0I3L;CFKMY7:V ! (!F!V!r!!I"f##$/%%%&&''**g,,--....N/Q/R/a/0001H2Z2222222Q3a3344K4446688::X=m=??DDjEENGaGGGJJhK|KKLLLXMpMqMMMMMMqMMMValued Gateway ClientValued Gateway ClientValued Gateway ClientValued Gateway ClientValued Gateway ClientValued Gateway ClientbsmallKaren Williams Monty Rhodesi WV8bh$"<~*vuRH~|+K" T^, @T6} 8eBN †|<@)+'yr)9r81mFZȀrg#(AX?fV>4!p*)%u/:p6"@.(6 "zB8T .VBpC MJVmN r:\Ah ~3!V8Ov"V$,)#QD#fS|_#'΍J(tV+ ,\Æ C.Y.J%e/6`+`=0Y\#t1IBle2z>S4<`4~At6 d6fh6P أXw07O8G~69*Prd6?k0?/@n%bAXYwdoBܣ:i'%CLô4@GZb3KGr^ G7I)H(#IZjw[Ibj_J* SdasJ>v K, "Kp7^$K~~%^KVsn"}Le(nMl{PtSMJ;AS\(T* >4WUy:x`VԿVc};XKzRGXO8 4X(!Y4;kZf~T2[V'6["5LiE].w]:Z`J^i`Np(bPj:Hibp#~bl'br:c*%d@ez+sue R"Yh*WiE9BAi0dgi ` j$#{,mHx  lmD7G|poTPMv q;QCqc*%d6} (nMWii`tS|+'yC Mi.xe/cVz)%Z`WVgO8 Gj_J+`=0w[IB<[wwdoB{PSa} K?'bBY.eBi'%CkZ .9rV^, <        8U        LTn        D        R                        L        {         6dK        ,        2c        :6                ʀ[        .        N        8v        )        l         |        hk01        lV        jK        r0        25b        | ԉ        h        ֺ(        n!                         &                5        d`        Jq        ps-                T=        z\        Pe                L        ;        xV                 ~$        x>        ^        p                (j        5        V[        f        T05        襨        £         :        E                ff        x        QNq        "{g        A                 :@8                %ʿ        G        d                 +        |        q        j        ӄj        8        g        NO8r        Y        8        *        F&        :         *5T        ,inL        D 1        0Q/        z:        bf        Η*c                 6        E        T,~        |>̾        8p)        v>        h=        "        Lm        w        \                *-        p!-                 *Ц        jT\        t        M        &c        X?֖        th        /h        k        nE%        :        yX        w        D        PR        `rR        ]ҹ        xd        54{k . ^ [q[*u"&e#G'6b<g'=uU? A-BD9GnTI\@m0tuuy<c$d_9L(V[(k*xpWU"Ml/0awK2 ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~  Oh+'0  4@ \ h t FBLA Computer Science C++ TestBLAValued Gateway ClientC+alualuNormalG Monty Rhodesy C4ntMicrosoft Word 10.0@[@Rο@ฐ@Nu A՜.+,D՜.+,P  hp  homei'JMA FBLA Computer Science C++ Test TitleD@ 8_AdHocReviewCycleID_EmailSubject _AuthorEmail_AuthorEmailDisplayName_ReviewingToolsShownOncep$FBLA State Programming Testsneducation@fbla.orgiBarbara Small.oarb  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnoqrstuvwyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefhijklmnpqrstuv{Root Entry F`Giu}Data p1TablexWordDocument,SummaryInformation(gDocumentSummaryInformation8oCompObjj  FMicrosoft Word Document MSWordDocWord.Document.89q