网友您好, 请在下方输入框内输入要搜索的题目:
题目内容
(请给出正确答案)
单选题
In order to maintain speed while changing course from a close reach to a broad reach,the sails should be().
A
lowered
B
reefed
C
hauled in
D
eased out
参考答案
参考解析
解析:
暂无解析
更多 “单选题In order to maintain speed while changing course from a close reach to a broad reach,the sails should be().A loweredB reefedC hauled inD eased out” 相关考题
考题
设有订单表order(其中包含字段:订单号,客户号,职员号,签订日期,金额),查询2007年所签订单的信息,并按金额降序排序,正确的SQL命令是( )。A.SELECT * FROM order WHERE YEAR(签订日期)=2007 ORDER BY 金额 DESCB.SELECT * FROM order WHILE YEAR(签订日期)=2007 ORDER BY 金额 ASCC.SELECT * FROM order WHERE YEAR(签订日期)=2007 ORDER BY 金额 ASCD.SELECT * FROM order WHILE YEAR(签订日期)=2007 ORDER BY 金额 DESC
考题
设有订单表order(其中包含字段:订单号,客户号,职员号,签订日期,金额),查询 2007年所签订单的信息,并按金额降序排序,正确的SQL命令是( )。A.SELECT*FROM order WHERE YEAR(签订日期)=2007 0RDER BY金额DESCB.SELECT*FROM order WHILE YEAR(签订日期)=2007 0RDER BY金额ASCC.SELECT*FROM order WHERE YEAR(签订日期)=2007 0RDER BY金额ASCD.SELECT*FROM order WHILE YEAR(签订日期)=2007 0RDER BY金额DESC
考题
设有表:0rder(订单号,客户号,职员号,签订日期,金额)。查询2007年所签订单的信息,并按金额降序排序,正确的SQL命令是( )。A. SELECT*FROM order WHERE YEAR(签订日期)=2007 0RDER BY金额DESCB. SELECT*FROM order WHILE YEAR(签订日期)=2007 0RDER BY金额ASCC. SELECT*FROM order WHERE YEAR(签订日期)=2007 0RDER BY金额ASCD. SELECT*FROM order WHILE YEAR(签订日期)=2007 0RDER BY金额DESC
考题
While troubleshooting a network outage, you discover that an employee brought a switch from home into the office to connect additional equipment to the network. In order to increase his speed, he connected this switch to both network ports in his office, resulting in a bridge loop.Which of these can you implement to prevent future occurrences of this issue?()A.RSTPB.root guardC.BPDU guardD.GLBP
考题
设有订单表 order ( 其中包含字段 : 订单号 , 客户号 , 职员号 , 签订日期 , 金额 ) , 删除 2002 年 1 月 1 日以前签订的订单记录,正确的 SQL 命令是A) DELETE TABLE order WHERE 签订日期 {^2002-1-1}B) DELETE TABLE order WHILE 签订日期 {^2002-1-1}C) DELETE FROM order WHERE 签订日期 {^2002-1-1}D) DELETE FROM order WHILE 签订日期 {^2002-1-1}
考题
A fire is discovered in the bow of your vessel while making way. The wind is from ahead at 35 knots. You should ______.A.remain on course and hold speedB.remain on course but slack the speedC.change course to put the wind on either beam and increase speedD.change course and put the stern to the wind
考题
While proceeding to a distress site,you hear the words “Seelonce mayday” on the radiotelephone.Which action should you take ________.A.Resume base course and speed as your assistance is no longer requiredB.Acknowledge receipt and advise your course,speed,and ETAC.Relay the original distress message as no other vessel has acknowledged itD.Monitor the radiotelephone but do not transmit
考题
Your radar is set on a true motion display.Which of the following will NOT appear to move across the PPI scope ________.A.Echoes from a buoyB.Own ship's markerC.Echo from a ship on the same course at the same speedD.Echo from a ship on a reciprocal course at the same speed
考题
A fire is discovered in the forepeak of a vessel at sea. The wind is from ahead at 35 knots. You should ______.A.remain on course and hold speedB.change course and put the stern to the windC.change course to put the wind on either beam and increase speedD.remain on course but slack the speed
考题
By radar alone, you detect a vessel ahead on a collision course, about 3 miles distant. Your radar plot shows this to be a meeting situation. You should ______.A.turn to portB.turn to starboardC.maintain course and speed and sound the danger signalD.maintain course and speed and sound no signal
考题
Five or more short blasts on a vessel’s whistle indicates that she is ______.A.in doubt that another vessel is taking sufficient action to avoid a collisionB.altering course to starboardC.altering course to portD.the stand-on vessel and will maintain course and speed
考题
Changing the boot order of devices can be configured from which of the following?()A、DIP switchesB、BIOSC、ChipsetD、Control Panel
考题
单选题A stand-on vessel is().A
required to give way in a crossing situationB
required to sound the first passing signal in a meeting situationC
free to maneuver in any crossing or meeting situation as it has the right-of-wayD
required to maintain course and speed in a crossing situation but may take action to avoid collision
考题
单选题You are a watch standing mate and have come to the bridge to relieve the watch while underway at sea.The watch should not be transferred().A
During an engine speed changeB
During a navigational course changeC
Unless the helm is in the“hand”modeD
All of the above
考题
单选题Examine the structure of the STUDENTS table: STUDENT_ID NUMBER NOT NULL, Primary Key STUDENT_NAME VARCHAR2(30) COURSE_ID VARCHAR2(10) NOT NULL MARKS NUMBER START_DATE DATE FINISH_DATE DATE You need to create a report of the 10 students who achieved the highest ranking in the course INT SQL and who completed the course in the year 1999. Which SQL statement accomplishes this task? ()A
SELECT student_ id, marks, ROWNUM Rank FROM students WHERE ROWNUM = 10 AND finish_date BETWEEN '01-JAN-99' AND '31-DEC-99 AND course_id = 'INT_SQL' ORDER BY mark DESC;B
SELECT student_id, marks, ROWID Rank FROM students WHERE ROWID = 10 AND finish_date BETWEEN '01-JAN-99' AND '31-DEC-99' AND course_id = 'INT_SQL' ORDER BY mark;C
SELECT student_id, marks, ROWNUM Rank FROM (SELECT student_id, marks FROM students WHERE ROWNUM = 10 AND finish_date BETWEEN '01-JAN-99' AND '31-DEC- 99' AND course_id = 'INT_SQL' ORDER BY mark DESC;D
SELECT student_id, marks, ROWNUM Rank FROM (SELECT student_id, marks FROM students WHERE (finish_date BETWEEN '01-JAN-99 AND '31-DEC-99' AND course_id = 'INT_SQL' ORDER BY marks DESC) WHERE ROWNUM = 10;E
SELECT student id, marks, ROWNUM Rank FROM (SELECT student_id, marks FROM students ORDER BY marks) WHERE ROWNUM = 10 AND finish date BETWEEN '01-JAN-99' AND '31-DEC-99' AND course _ id 'INT_SQL';
考题
单选题When changing from a compass course to a true course you should apply().A
variationB
deviationC
variation and deviationD
a correction for the direction of current set
考题
单选题Five or more short blasts on a vessel’s whistle indicates that she is().A
In doubt that another vessel is taking sufficient action to avoid a collisionB
Altering course to starboardC
Altering course to portD
The stand-on vessel and will maintain course and speed
考题
单选题设有订单表order(其中包含字段:订单号,客户号,职员号,签订日期,金额),查询2007年所签订单的信息,并按金额降序排序,正确的SQL命令是( )。A
SELECT * FROM order WHERE YEAR(签订日期)=2007 ORDER BY金额DESCB
SELECT * FROM order WHILE YEAR(签订日期)=2007 ORDER BY金额ASCC
SELECT * FROM order WHERE YEAR(签订日期)=2007 ORDER BY金额ASCD
SELECT * FROM order WHILE YEAR(签订日期)=2007 ORDER BY金额DESC
考题
单选题While troubleshooting a network outage, you discover that an employee brought a switch from home into the office to connect additional equipment to the network. In order to increase his speed, he connected this switch to both network ports in his office, resulting in a bridge loop. Which of these can you implement to prevent future occurrences of this issue?()A
RSTPB
root guardC
BPDU guardD
GLBP
考题
单选题Examine the structure of the STUDENTS table: STUDENT_ID NUMBER NOT NULL, Primary Key STUDENT_NAME VARCHAR2(30) COURSE_ID VARCHAR2(10) NOT NULL MARKS NUMBER START_DATE DATE FINISH_DATE DATE You need to create a report of the 10 students who achieved the highest ranking in the course INT SQL and who completed the course in the year 1999. Which SQL statement accomplishes this task?()A
SELECT student_ id, marks, ROWNUM Rank FROM students WHERE ROWNUM = 10 AND finish_date BETWEEN '01-JAN-99' AND '31-DEC-99' AND course_id = 'INT_SQL' ORDER BY marks DESC;B
SELECT student_id, marks, ROWID Rank FROM students WHERE ROWID = 10 AND finish_date BETWEEN '01-JAN-99' AND '31-DEC-99' AND course_id = 'INT_SQL' ORDER BY marks;C
SELECT student_id, marks, ROWNUM Rank FROM (SELECT student_id, marks FROM students WHERE ROWNUM = 10 AND finish_date BETWEEN '01-JAN-99' AND '31-DEC-99' AND course_id = 'INT_SQL' ORDER BY marks DESC);D
SELECT student_id, marks, ROWNUM Rank FROM (SELECT student_id, marks FROM students ORDER BY marks DESC) WHERE ROWNUM = 10 AND finish_date BETWEEN '01-JAN-99' AND '31-DEC-99' AND course _ id ='INT _ SQL';
考题
单选题A fire is discovered in the forepeak of a vessel at sea. The wind is from ahead at 35 knots. You should().A
remain on course and hold speedB
change course and put the stern to the windC
change course to put the wind on either beam and increase speedD
remain on course but slack the speed
考题
单选题A fire is discovered in the bow of your vessel while making way. The wind is from ahead at 35 knots. You should().A
remain on course and hold speedB
remain on course but slack the speedC
change course to put the wind on either beam and increase speedD
change course and put the stern to the wind
考题
单选题While proceeding to a distress site,you hear the words “Seelonce mayday” on the radiotelephone.Which action should you take().A
Resume base course and speed as your assistance is no longer requiredB
Acknowledge receipt and advise your course,speed,and ETAC
Relay the original distress message as no other vessel has acknowledged itD
Monitor the radiotelephone but do not transmit
考题
单选题In order to maintain a safe speed at all times,any necessary alterations of speed must().A
be instantly put onB
be instant put into useC
be instantly put into effectD
be put immediately
考题
单选题In the Northern Hemisphere,if your vessel is in a hurricane’s navigable semicircle it should be positioned with the wind on the().A
Starboard quarter,hold course and make as much speed as possibleB
Port bow,hold course and make as much speed as possible until the hurricane has passedC
Port quarter,maintain course and make as much speed as possibleD
Starboard bow and heave to until the hurricane has passed
考题
单选题A radar contact will remain stationary on a relative motion radar display only when it is().A
on the same course as your vesselB
at the same speed as your vesselC
on the same course and speed as your vesselD
on a reciprocal course at the same speed as your vessel
考题
单选题Your radar is set on a true motion display.Which of the following will NOT appear to move across the PPI scope().A
Echoes from a buoyB
Own ship's markerC
Echo from a ship on the same course at the same speedD
Echo from a ship on a reciprocal course at the same speed
热门标签
最新试卷