网友您好, 请在下方输入框内输入要搜索的题目:
题目内容
(请给出正确答案)
单选题
engine department()
A
甲板部
B
轮机部
C
事务部
D
策划部
参考答案
参考解析
解析:
暂无解析
更多 “单选题engine department()A 甲板部B 轮机部C 事务部D 策划部” 相关考题
考题
在执行语句SELECT department_id FROM employees,departments WHERE employees.department_id= departments.department_id;时报错,原因是()。
A.没有给表employees和表departments加别名B.没有给列department_id加别名C.不能用employees.department_id=departments.department_id作为条件D.SELECT后面的department_id没有指定是哪个表
考题
---Ring off engine! ---Ring off engine! _________________A.Finished with engine!B.Engine rung off!C.Engine stand by!D.Got it.
考题
Examine the structure of the EMPLOYEES table: EMPLOYEE_ID NUMBER Primary KeyFIRST_NAME VARCHAR2(25)LAST_NAME VARCHAR2(25)DEPARTMENT_ID NUMBERSALARY NUMBERWhat is the correct syntax for an inline view? ()A. SELECT a.last_name, a.salary, a.department_id, b.maxsal FROM employees a, (SELECT department_id, max(salary)maxsal FROM employees GROUP BY department_id) b WHERE a.department_id = b.department_id AND a.salary b.maxsal;B. SELECT a.last name, a.salary, a.department_id FROM employees a WHERE a.department_id IN (SELECT department_id FROM employees b GROUP BY department_id having salary = (SELECT max(salary) from employees))C. SELECT a.last_name, a.salary, a.department_id FROM employees a WHERE a.salary = (SELECT max(salary) FROM employees b WHERE a.department _ id = b.department _ id);D. SELECT a.last_name, a.salary, a.department_id FROM employees a WHERE (a.department_id, a.salary) IN (SELECT department_id, a.salary) IN (SELECT department_id max(salary) FROM employees b GROUP BY department_id ORDER BY department _ id);
考题
ExhibitExamine the data in the EMPLOYEES and DEPARTMENTS tables.You want to retrieve all employees‘ last names, along with their manager‘s last names and their department names. Which query would you use?()A. SELECT last_name, manager_id, department_name FROM employees e FULL OUTER JOIN department d ON (e.department_id = d.department_id);B. SELECT e.last_name, m.last_name, department_name FROM employees e LEFT OUTER JOIN employees m on ( e.managaer_id = m.employee_id) LEFT OUTER JOIN department d ON (e.department_id = d.department_id);C. SELECT e.last_name, m.last_name, department_name FROM employees e RIGT OUTER JOIN employees m on ( e.manager_id = m.employee_id) FULL OUTER JOIN department d ON (e.department_id = d.department_id);D. SELECT e.last_name, m.last_name, department_name FROM employees e LEFT OUTER JOIN employees m on ( e.manager_id = m.employee_id) RIGT OUTER JOIN department d ON (e.department_id = d.department_id);E. SELECT e.last_name, m.last_name, department_name FROM employees e RIGHT OUTER JOIN employees m on ( e.manager_id = m.employee_id) RIGHT OUTER JOIN departments d ON (e.department_id = d.department_id)F. SELECT last_name, manager_id, department_name FROM employees e JOIN department d ON (e.department_id = d.department_id);
考题
"Stand by an engine" meansA."prepare to stop the engine"B."assemble an engine on its bedplate"C."make an engine ready for starting"D."dismantle an engine"
考题
WhichcommandwouldcreateamachineaccountinActiveDirectoryundertheComputers\BusinessUnit\Department\Serversorganizationalunit?()
A.netrpcjoin-mlocalhost-ldap=ldap.ldapserver.comComputers\BusinessUnit\Department\ServersB.rpcclient-cjoinComputers\BusinessUnit\Department\ServersC.netadsjoinou=Computers\BusinessUnit\Department\ServersD.netadsjoinComputers\BusinessUnit\Department\Servers
考题
Which department do you work in on board?()A、Deck department.B、Engine department.C、Service department.D、Sorry.
考题
在执行语句SELECT department_id FROM employees,departments WHERE employees.department_id= departments.department_id;时报错,原因是()。A、没有给表employees和表departments加别名B、没有给列department_id加别名C、不能用employees.department_id=departments.department_id作为条件D、SELECT后面的department_id没有指定是哪个表
考题
---Stand by engine! ---Stand by engine!()A、Engine stand by!B、Finished with engine!C、Engine by stand!D、OK.
考题
---Ring off engine! ---Ring off engine! () A、Finished with engine!B、Engine rung off!C、Engine stand by!D、Got it.
考题
单选题In the engine department, the () is looked upon to provide the leadership that is needed.A
captainB
chief engineerC
chief officerD
chief motorman
考题
单选题船上的船员属于三个部门:甲板部、轮机部和事务部。()A
Seamen on board the ship are in two departments: Deck Department, Engine Department.B
Seaman on board the ship are in two department: Deck Department, Engine Department and Service Department.C
The Deck Department and the Engine Department are the two departments.D
Seamen on board the ship are in three departments: the Deck Department, the Engine Department and the Service Department.
考题
单选题In a four-stroke engine the camshaft rotates at ().A
half the engine speedB
twice the engine speedC
the engine speedD
four times the engine speed
考题
单选题Which department do you work in on board?()A
Deck department.B
Engine department.C
Service department.D
Sorry.
考题
单选题When ship in the dock repairing, engine department should emphasize on the inspection of()A
sea valve chest, sect valve, thrusterB
bilge motherboard, steering and the shaft systemC
sea water systemD
fresh water system
考题
单选题In conventional systems, the injection pressure(), while it’s()in common rail diesel engines.A
fluctuates with the engine speed to some extent, independent of the engine speedB
keeps constant at all engine speed, dependent on the engine speed to some extentC
keeps constant at all engine speed, independent of the engine speedD
is decided by the engine speed, constant at all engine speed
考题
单选题()of the following need not be entered in the official logbook?A
The testing of the internal combustion engine driven emergency generator at least once each month the vessel is navigatedB
The testing of storage betteries for emergency lighting and systems once each 6 months the vessels is navigatedC
The actual draft when the vessel arrives in salt water after department a portD
The testing of the line-throwing appliance once every 3 months
考题
单选题Examine the structure of the EMPLOYEES and DEPARTMENTS tables: EMPLOYEESColumn name Data type Remarks EMPLOYEE_ID NUMBER NOT NULL, Primary Key EMP_NAME VARCHAR2 (30) JOB_ID VARCHAR2 (20) SALARY NUMBER MGR_ID NUMBER References EMPLOYEE_ID COLUMN DEPARTMENT ID NUMBER Foreign key to DEPARTMENT ID column of the DEPARTMENTS table DEPARTMENTSColumn name Data type Remarks DEPARTMENT_ID NUMBER NOT NULL, Primary Key DEPARTMENT_NAME VARCHAR2(30) MGR_ID NUMBER References MGR_ID column of the EMPLOYEES table Evaluate this SQL statement: SELECT employee_id, e.department_id, department_name, salary FROM employees e, departments d WHERE e. department_id = d.department_id; Which SQL statement is equivalent to the above SQL statement? ()A
SELECT employee_id, department_id, department_name, salary FROM employees WHERE department_id IN (SELECT department_id FROM departments);B
SELECT employee_id, department_id, department_name, salary FROM employees NATURAL JOIN departments;C
SELECT employee_id, d.department_id, department_name, salary FROM employees e JOIN departments d ON e.department _ id = d. department_id;D
SELECT employee_id, department_id, department_name, Salary FROM employees JOIN departments USING (e.department_id, d.department_id);
考题
单选题The modern Internet, first established in the mid-1980s, is based on the technology developed for the ARPANET, it was created by the United States Department of Defense in the 1960s.A
ARPANET, it was created by the United States Department of DefenseB
ARPANET; it was created by the United States Department of DefenseC
ARPANET, which was created by the United States Department of DefenseD
ARPANET, being created by the United States Department of DefenseE
ARPANET; the United States Department of Defense created it
考题
单选题Click the Exhibit button and examine the data in the EMPLOYEES and DEPARTMENTS tables.You want to retrieve all employees, whether or not they have matching departments in the departments table. Which query would you use?()A
SELECT last_name, department_name FROM employees NATURAL JOIN departments;B
SELECT last_name, department_name FROM employees JOIN departments ;C
SELECT last_name, department_name FROM employees e JOIN departments d ON (e.department_id = d.department_id);D
SELECT last_name, department_name FROM employees e RIGHT OUTER JOIN departments d ON (e.department_id = d.department_id);E
SELECT last_name, department_name FROM employees FULL JOIN departments ON (e.department_id = d.department_id);F
SELECT last_name, department_name FROM employees e LEFT OUTER JOIN departments d ON (e.department_id = d.department_id);
考题
单选题Examine the data in the EMPLOYEES and DEPARTMENTS tables. EMPLOYEES LAST_NAME DEPARTMENT_ID SALARY Getz 10 3000 Davis 20 1500 Bill 20 2200 Davis 30 5000 Kochhar 5000 DEPARTMENTS DEPARTMENT_ID DEPARTMENT_NAME 10 Sales 20 Marketing 30 Accounts 40 Administration You want to retrieve all employees, whether or not they have matching departments in the departments table. Which query would you use?()A
SELECT last_name, department_name FROM employees , departments(+);B
SELECT last_name, department_name FROM employees JOIN departments(+);C
SELECT last_name, department_name ON (e. department_ id = d. departments_id); FROM employees(+) e JOIN departments dD
SELECT last_name, department_name FROM employees e RIGHT OUTER JOIN departments d ON (e.department_id = d.department_id);E
SELECT last_name, department_name FROM employees(+) , departments ON (e. department _ id = d. department _id);F
SELECT last_name, department_name FROM employees e LEFT OUTER JOIN departments d ON (e. department _ id = d. department _id);
考题
单选题Examine the structure of the EMPLOYEES and DEPARTMENTS tables: EMPLOYEESColumn name Data type Remarks EMPLOYEE_ID NUMBER NOT NULL, Primary Key EMP_NAME VARCHAR2 (30) JOB_ID VARCHAR2 (20) SALARY NUMBER MGR_ID NUMBER References EMPLOYEE_ID COLUMN DEPARTMENT ID NUMBER Foreign key to DEPARTMENT ID column of the DEPARTMENTS table DEPARTMENTSColumn name Data type Remarks DEPARTMENT_ID NUMBER NOT NULL, Primary Key DEPARTMENT_NAME VARCHAR2(30) MGR_ID NUMBER References MGR_ID column of the EMPLOYEES table Evaluate this SQL statement: SELECT employee_id, e.department_id, department_name, salary FROM employees e, departments d WHERE e. department_id = d.department_id; Which SQL statement is equivalent to the above SQL statement?()A
SELECT employee_id, department_id, department_name, salary FROM employees WHERE department_id IN (SELECT department_id FROM departments);B
SELECT employee_id, department_id, department_name, salary FROM employees NATURAL JOIN departments;C
SELECT employee_id, d.department_id, department_name, salary FROM employees e JOIN departments d ON e.department _ id = d. department_id;D
SELECT employee_id, department_id, department_name, Salary FROM employees JOIN departments USING (e.department_id, d.department_id);
考题
单选题Which is false about engine trials?()A
engine trails should be done after finishing the operation of turning the engine with the turning gear and starting the engine on air brieflyB
in the operation of engine trails, the main engine should be running in low-speedC
As to the ship equipment with twin main engine, engine trials should be done with one engine ahead and another engine astern at the same timeD
the order “engine trials” should be given by the bridge
考题
单选题“Stand by engine” means ().A
prepare to stop the engineB
assemble an engine on its bedplateC
make an engine ready for startingD
make an engine run steadily
考题
单选题During the dock repair, when installing the tail shaft and propeller, who should be on the spot to supervise?()A
chief engineerB
the engineerC
captainD
any member of the engine department
热门标签
最新试卷