Sailing vessels are stand-on over power-driven vessels except ______.A.in a crossing situationB.in a meeting situationC.when they are the overtaking vesselD.on the inland waters of the PR China

Sailing vessels are stand-on over power-driven vessels except ______.

A.in a crossing situation

B.in a meeting situation

C.when they are the overtaking vessel

D.on the inland waters of the PR China


相关考题:

23_______. A. watchingB. visitingC. circlingD. crossing

在“选择对象”提示下的默认选项是()命令。A.AllB.BoxC.WindowD.Crossing

使用try……except……结构时,except后可不必指出异常类型

我们用try-except来处理异常,except语句后面通常会写上________________,当except语句后面什么都不写时,表示可以处理其他所有的异常。

在完整的异常语句中,语句出现的顺序正确是()。A.try-->except-->else-->finallyB.try-->else-->except-->finallyC.try-->else-->finally-->exceptD.try-->except-->finally-->else

用try-except语句进行异常处理时,try语句可以有多个,但except语句只有一个。

在完整的异常语句中,子句出现的顺序正确的是_______。A.try—>except—>else—>finallyB.try—>else—>except—>finallyC.try—>except—>finally—>elseD.try—>except—>except—>finally

Python处理异常的方式包括:A.try……exceptB.try……except……C.try……except……except……elseD.try……except……else……finally

关于try-except,哪个选项的描述是正确的?A.try-except可以捕获所有类型的程序错误B.编写程序时应尽可能多的使用try-except,以提供更好的用户体验C.try-except在程序中不可替代D.文件打开或网络获取的成功性等

在Python 3中,能使用下列哪个语句处理多个异常?()A.except [NameError, FileNotFoundError]B.except {NameError, FileNotFoundError}C.except (NameError, FileNotFoundError)D.except NameError, FileNotFoundError