Questions from 31 to 35 are based on the following passage: The exporter, as drawer of a draft (bill of exchange), hands the draft to his bank, the remitting bank, who in turn forwards it to the buyer through a collecting bank in the buyer’s country. A draft (also called a bill) is a written order to a bank or a customer to pay someone on demand or at a fixed time in the future a certain sum of money. If shipping documents accompany the draft, the collection is called “documentary collection.” Documentary collection falls into two major categories: one is documents against payment(D/P); the other, documents against acceptance (D/A). Documents against payment, as the term suggests, is that the collecting bank will only give the shipping documents representing the title to the goods on the condition that the buyer makes payment. Where the paying arrangement is D/A, the collecting bank will only give the buyer the shipping documents after buyer’s acceptance of the bill drawn on him, i.e. the buyer signs his name on the bill promising to pay the sum when it matures. In return he gets what he needs – the shipping documents. Under D/A, the seller gives up the title to the goods – shipping documents before he gets payment of the goods. Therefore, an exporter must think twice before he accepts such paying arrangement. The meaning of D/A is().
第1题:
From the text, we learn that Vinton Cerf is _____.
[A] seeking answers to questions about the Internet web
[B] working on interplanetary Internet with collaboration of NASA
[C] trying to commercialize the interplanetary Internet
[D] exploring the possibility of establishing Internet network on Mars
本题考查事实细节。第五段首句提到,塞尔夫正一直与(美)国家宇航局帕萨提那的喷气推进实验室合作,设计他所说的“星际因特网协议”,与[B]项同义。[A]项是塞尔夫在日内瓦参加的一个年会的主题,并不是塞尔夫正在从事的工作。星际因特网商业化只在文章最后一段作为可能性提到,星际因特网还没有研究出来,更不用说商业化了,所以[C]项错误。全文主要论述的是星际因特网的问题,并没有指出要在火星上建立因特网。[D]项错误。
第2题:
第 (31) 到第 (35) 题基于学生表 S 和学生选课表 SC 两个数据库表,它们的结构如下:
S( 学号,姓名,性别,年龄 ) 其中学号、姓名和性别为 C 型字段,年龄为 N 型字段。
SC( 学号,课程号,成绩 ) ,其中学号和课程号为 C 型字段,成绩为 N 型字段 ( 初始为空值 )
(31) 查询学生选修课程成绩小于 60 分的学号,正确的 SQL 语句是
A)SELECT DISTINCT 学号 FROM SC WHERE " 成绩 " < 60
B)SELECT DISTINCT 学号 FROM SC WHERE 成绩 < " 60 "
C)SELECT DISTINCT 学号 FROM SC WHERE 成绩 < 60
D)SELECT DISTINCT " 学号 " FROM SC WHERE " 成绩 " < 60
第3题:
第4题:
第5题:
第6题:
铲运机CY一35型最大爬坡度()。
第7题:
烧结矿自然堆角为()度。
第8题:
数据库中有一张表名为Emp,包含有如下列:EmpNO(雇员编号,Varchar(20),Pk),Job(职位Varchar(10)),HirDate(雇佣日期,Date),Sal(月薪,Float)。查询出受雇于1981年的雇员信息是()
第9题:
elect * From Emp Where HirDate>='1981-1-1' And HirDate <='1981-12-31'
Select * From Emp Where Between In '1981-1-1' And <'1981-12-31'
Select * From Emp Where Between In '1981-12-31' And <'1981-1-1'
Select * From Emp Where HirDate>='1981-1-1' NOT HirDate <='1981-12-31'
第10题:
第11题:
<31
26~32
31~35
>32
>35
第12题:
Display questions.
Divergent questions.
Open questions.
Evaluation questions.
第13题:
( 31 )~( 35 )使用如下关系:
客户 (客户号,名称,联系人,邮政编码,电话号码)
产品(产品号,名称,规格说明,单价)
订购单(订单号,客户号,订购日期)
订购单名细( 订单号,序号,产品号,数量)
( 31 )查询单价在 600 元以上的主机板和硬盘的正确命令是
A ) SELECT * FROM 产品 WHERE 单价 >600 AND ( 名称 =' 主机板 ' AND 名称 =' 硬盘 ')
B ) SELECT * FROM 产品 WHERE 单价 >600 AND ( 名称 =' 主机板 ' OR 名称 =' 硬盘 ')
C ) SELECT * FROM 产品 FOR 单价 >600 AND ( 名称 =' 主机板 ' AND 名称 =' 硬盘 ')
D ) SELECT * FROM 产品 FOR 单价 >600 AND ( 名称 =' 主机板 ' OR 名称 =' 硬盘 ' )
第14题:
第15题:
第16题:
第17题:
按形态学分类,正常细胞性贫血的MCHC(%)为()。
第18题:
The STUDENT_GRADES table has these columns: STUDENT_ID NUMBER(12) SEMESTER_END DATE GPA NUMBER(4,3) The registrar has asked for a report on the average grade point average (GPA) for students enrolled during semesters that end in the year 2000. Which statement accomplish this? ()
第19题:
下列4次平行测定的实验结果中,精密度最好的是()。
第20题:
假设某数据表中有一个"生日"字段,删除80年出生的学生记录的语句是()
第21题:
DELETE FROM Student WHERE生日Between #80-01-01#And#80-12-31#
DELETE FROM Student WHERE生日Between(80-01-01And80-12-31)
DELETE FROM Student WHERE生日Between(80.01.01And80.12.31)
DELETE FROM Student WHERE生日Between #80.01.01#And#80.12.31#
第22题:
SELECT AVERAGE(gpa) FROM student_grades WHERE semester _ end > '01-JAN-2000' and semester end <31-DEC-2000';
SELECT COUNT(gpa) FROM student grades WHERE semester _ end > '01-JAN-2000' and semester end <31-DEC-2000';
SELECT MIN(gpa) FROM student grades WHERE semester _ end > '01-JAN-2000' and semester end <31-DEC-2000';
SELECT AVG(gpa) FROM student_grades WHERE semester _ end BETWEEN '01-JAN-2000' and '31-DEC-2000';
SELECT SUM(gpa) FROM student grades WHERE semester _ end > '01-JAN-2000' and semester end <31-DEC-2000';
SELECT MEDIAN(gpa) FROM student_grades WHERE semester _ end > '01-JAN-2000' and semester end <31-DEC-2000';
第23题:
Display questions.
Rhetorical questions.
Evaluation questions.
Referential questions.
第24题:
La Solidaridad became the most important local newspaper
Filipino exiles returned to their impoverished nation
Jose Rizal produced experiments showing Filipino superiority
Spanish-born residents had more rights than the natives had
a revolution broke out with the goal of separation from Spain