听力原文:In dealing with collections, banks will do nothing but follow the collection order.
(9)
A.In dealing with collections, banks will do nothing to follow the collection order.
B.Banks will do something in dealing with the collection order.
C.Banks should strictly follow the instructions in the collection order.
D.In dealing with collections, the bank is usually useless.
第1题:
听力原文:A bank or insurance company issues a document to guarantee that exporter will supply the goods or services as the required standard.
(4)
A.A bank or insurance company issues an advance payment bond.
B.A bank or insurance company issues a tender bond.
C.A bank or insurance company issues a maintenance bond.
D.A bank or insurance company issues a performance bond.
第2题:
听力原文:The tax return does not show accrued income.
(8)
A.The tax return is not shown in the income.
B.The income is not accurate in taxation.
C.The tax should be returned according to the income.
D.The tax return is not in accordance with the income that should be taxed.
第3题:
A.Collections.reverseSort(list,newMyComparator());
B.Collections.sort(list,newMyComparator());list.reverse();
C.Collections.sort(list,newInverseComparator(newMyComparator()));
D.Collections.sort(list,Collections.reverseOrder(newMyComparator()));
第4题:
听力原文:The rate of interest on savings accounts is usually a little lower than that on deposit accounts.
(5)
A.There is a higher rate of interest on deposit account.
B.There is a higher rate of interest on savings account.
C.The rate of interest on deposit accounts is always much higher than that on savings accounts.
D.The rate of interest on deposit accounts is usually much lower than that on savings accounts.
第5题:
A.Collections.sort(a,a.reverse());intresult=Collections.binarySearch(a,“6”);
B.Comparatorc=Collections.reverseOrder();Collections.sort(a,c);intresult= Collections.binarySearch(a,“6”);
C.Comparatorc=Collections.reverseOrder();Collections.sort(a,c);intresult=Collections.binarySearch(a,“6”,c);
D.Comparatorc=Collections.reverseOrder(a);Collections.sort(a,c);intresult=Collections.binarySearch(a,“6”,c);
E.Comparatorc=newInverseComparator(newComparator());Collections.sort(a);intresult=Collections.binarySearch(a,“6”,c);
第6题:
Collection 和 Collections 的区别。
Collection 是集合类的上级接口,继承与他的接口主要有Set 和List.
Collections 是针对集合类的一个帮助类,他提供一系列静态方法实现对各种集合的搜索、排
序、线程安全化等操作。