Section ADirections:This section is to test your ability to give proper answers tot questions. There are 5 recorded questions in it. After each question, there is a pause. The questions will be spoken two times. When you hear a question you should decide on the correct answer from the 4 choices marked A), B), C) and D)given in your test paper. Then you should mark the corresponding letter on the Answer Sheet with a single line through the center.
About 3 miles.
B. You can take the No. 2 bus.
C. In half an hour.
D. It’s very near.
查看答案
Passage Two There are five parties concerned with a collection, the customer, the remitting bank, the presenting bank and the drawee. The customer is the principal who entrusts the operation of collecting to his bank, which is the remitting bank. The collecting bank is any bank, other than the remitting bank, involved in processing the collection order, and the presenting bank is the collecting bank making presentation to the drawee--more than one collecting bank may be involved in collecting a bill and it is the bank that actually presents the bill to the drawee for acceptance/payment that is the presenting bank. The drawee is the person specified as the one to whom the financial document and/or commercial documents is to be presented. A collecting bank must be sent a collection order with the documents concerned, and this must give complete and concise instructions. It will in fact incorporate, all the instructions contained in the application form. Banks are only permitted to act upon instructions given in such an order and must advise the remitting bank immediate if they can not comply with the instructions contained in the order. The remitting bank in the procedure of a collection may not be the collecting bank.
A. Right
B. Wrong
C. Doesn’t say
Passage 2 A financial future is a contract to buy or sell certain forms of money at a specified future date, with the price agreed at the time of the deal. Under such a contract, if the market price of the financial instrument concerned should be higher on the delivery date than the price specified in the contract or if its yield should be lower, the seller undertakes to meet the different and, by collecting this, the buyer can obtain a price or yield which is settled at the time the contract is agreed. Conversely, if the market price of the financial instrument should be lower or its yield higher than is specified in the contract, the seller will gain and the buyer will lose the difference: but at least the buyer still has the comfort of knowing the price or yield in advance, as it was fixed at the date the contract was entered into. The London International Financial Futures Exchange brings together those buyers and sellers who wish to hedge against interest rate and exchange rate fluctuations. On the exchange, "standard" agreements ( or contracts ), are available for : 1 ) interest rate movements--by trading interest bearing securities, such as bank deposit certificates, in sterling or Eurodollars, gilt-edged stocks and United States Treasury Bonds ; 2) exchange rate fluctuations--by trading a range of currencies, for example the United States dollar against the pound sterling, the United States dollar against the Swiss franc and so on. On LIFFE, in order to make the contracts more tradable and to enable keener prices to be quoted, a limited range of standard contracts is available with fixed settlement dates. For example, the contract size for sterling bank deposit certificates is GBP 500 000 with delivery on the second Wednesday of the delivery month which could be March, June, September or December. With a contract covering the movement of interest rates, the market brings together those who wish to take delivery of specific financial instruments, with those who are prepared to supply the same financial instrument on the same terms. Similarly, with a contract coveting exchange rate fluctuations, the market brings together those who wish to sell a stated amount of a certain foreign currency at an agreed future date, and those who wish to buy on the same terms. The author doesn’t mention those participants ______ in the London International Financial Futures Exchange( LIFFE ).
A. who want to hedge against interest rate fluctuations
B. who wish to hedge against exchange rate fluctuations
C. who bet on which way interest rate will move
D. both A and B
Directions: Read the following passages and determine whether the sentences are " Right" or "Wrong". If there is not enough information to answer "Right" or "Wrong", choose "Doesn’t say". Then mark the corresponding letter on the ANSWER SHEET by drawing a single line through the center.Passage One The normal income statement which constitutes one of the financial statements of a company, is financial income statement. So functional income statement is an income statement that segregates all costs by use ; it shows revenues less cost of goods sold ( gross margin) less selling and administrative expenses. This approach is useful for financial reporting purpose ; it provides outsider readers with information about company’s progress and about which functional areas are being emphasized. For management’s use in the decision-making process, however, an income statement that follows a cost behavior approach, often referred to as a Contribution Margin Income Statement, is more valuable. When the management of a business makes some decisions, it often refers to the normal income statement because the normal income statement is more useful in that.
A. Right
B. Wrong
C. Doesn’t say
在文件in71.dat中有200组数据,每组有3个数,每个数均为3位数。函数readDat()的功能是读取这200组数据并存放到结构数组aa中。请编制函数jsSort(),其函数的功能是:要求在200组数据中找出条件为每组数据中的第一个数大于第二个数加第三个数之和,其中满足条件的个数作为函数jsSort()的返回值,同时把满足条件的数据存入结构数组bb中,再对bb中的数按照每组数据的第一个数加第三个数之和的大小进行升序排列(第一个数加第三个数的和均不相等),排序后的结果仍重新存入结构数组bb中。最后调用函数writeDat()把结果bb输出到文件out71.dat中。 注意:部分源程序已给出。 请勿改动主函数main()、读函数readDat()和写函数writeDat()的内容。 试题程序: #include <stdio.h> #include <string.h> #include <stdlib.h> typedef struct int x1,x2,x3; Data; Data aa[200],bb[200]; void readDat(); void writeDat(); int jsSort() void main() int count; readDat(); count=jsSort(); writeDat(count); void readDat() FILE * in; int i; in=fopen("IN71.dat","r"); for(i=0;i<200;i + +) fscanf(in,"% d % d % d",&aa[i].x1,&aa[i].x2,&aa[i].x3); fclose(in); void writeDat(int count) FILE * out; int i; system("CLS"); out=fopen("OUT71.dat","w"); for(i=0;i<count;i + +) printf("% d,% d,% d 第一个数+第三个数=% d\n",bb[i].x1,bb[i].x2,bb[i].x3,bb[i].x1+bb[i].x3); fprintf(out,"% d,% 5d,% d\n",bb[i].x1,bb[i].x2,bb[i].x3); fclose(out);