【单选题】一台三相反应式步进电动机,其转子有40个齿:采用单、双六拍通电方式,其步距角是( )
【单选题】You have created a resource plan, DAY. You execute the following code: SQL> BEGIN DBMS_RESOURCE_MANAGER.CREATE__DIRECTIVE ( PLAN => ’DAY’, COMMENT => ’DEPARTMENTS PLAN’, ...
A.
The DEVELOPERS and DEPARTMENTS subplans will be allocated CPU equally.
B.
The DEVELOPERS subplan will be allocated 100 percent CPU if there are no resources allocated to the DEPARTMENTS subplan.
C.
The DEPARTMENT subplan will be allocated 100 percent CPU if there are no resources allocated to the DEVELOPERS subplan.
D.
The second code will not execute because one resource plan cannot be used by more than one subplan.
【单选题】In the use of closeness ratings for process layouts, the code "U" means the closeness between two departments is:
【单选题】关系模式department(code,name)、employee(code,name,,dept,phone),查询“研发部”的员工信息,查询结果包括code,name,,phone,正确的语句是()
A.
select code,name,,phone from employee where dept =’研发部’;
B.
select code,name,,phone from employee em,department de where de.code=em.dept and de.dept=’研发部’;
C.
select code,name,,phone from employee em,department de where de.code=em.code and de.name=’研发部’;
D.
Select em.code,name,,phone from employee em,department de where de.code=em.dept and de.name=’研发部’;
【判断题】表现金属材质时,反光处颜色较深不需要留白处理。
【判断题】在PowerPoint中使用“格式刷”与在Word中使用的方法完全相同。
【判断题】三相交流异步电机在向三相绕组通以不同相位的电流时,在定子会产生旋转磁场。
【单选题】关系模式department(code,name)、employee(code,name,,dept,phone),查询每个部门的员工数量,查询结果包括code,name,emps,正确的语句是()
A.
select code, name,emps from department de left join (select dept,count(*) emps from employee group by dept) vem on de.code=vem.dept;
B.
select code, name ,count(*) emps from department de,employee group by dept on de.code=em.dept;
C.
select code, name, count(*) emps from department de,employee group by dept where de.code=em.dept;
D.
select code, name, count(*) emps from department de,employee on de.code=em.dept group by dept;