皮皮学,免费搜题
登录
logo - 刷刷题
搜题
【单选题】
Which of the following statements about the informal organisation is not true?
A.
The influence of the informal organisation was highlighted by the Hawthorne Studies, in the way group norms and dynamics affected productivity.
B.
Informal organisation can pose a threat to employee health and safety.
C.
Informal organisation can stimulate innovation.
D.
Managers in positions cannot be part of the informal organisation.
手机使用
分享
复制链接
新浪微博
分享QQ
微信扫一扫
微信内点击右上角“…”即可分享
反馈
参考答案:
举一反三
【简答题】兽医药理学是一门什么样的学科?
【单选题】在非空线性链表中由p所指的结点后面插入一个由q所指的结点,则执行如下操作( )。
A.
q->next=p;p->next=q;
B.
q->next=p->next;p->next=q;
C.
q->next=p->next;p=q;
D.
p->next=q;q->next=p;
【单选题】编译并且执行以下代码,会出现什么情况( )。 public class Q{ public static void main(String argv[]){ int anar[]=new int[]{1,2,3}; System.out.println(anar[1]); } }
A.
1
B.
有错误,数组anar在初始化以前不能正常输出
C.
2
D.
有错误,数组的大小没有定义。
【判断题】在非空线性链表中由p所指的结点后面插入一个由q所指的结点的过程是依次执行语句:link(q)←link(p);link(p)←q。
A.
正确
B.
错误
【单选题】( )适合于需要多部门相互配合或工作具有临时性的组织。
A.
直线制
B.
直线职能制
C.
事业部制
D.
矩阵制
【判断题】MCS-51指令:MOV A,#40H ;表示将立即数40H传送至A中。
A.
正确
B.
错误
【判断题】在非空线性链表中由p所指的结点后面插入一个由q所指的结点的过程是依次执行语句:q->next=p->next;p->next=q。
A.
正确
B.
错误
【判断题】MCS-51 指令:MOV A,#40H ;表示将立即数40H传送至A中
A.
正确
B.
错误
【简答题】以下代码的运行结果是______。 public class exl5 { public static void main(String args []) { int i = 5; do { i--; if(i > 2) continue; }while(i < 0); System.out.println(i); } }
【单选题】在非空线性链表中由p所指的结点后面插入一个由q所指的结点的过程是依次执行()。
A.
q->link=p; p->link=q;
B.
q->link=p->link; p=q;
C.
q->link=p->link; p->link=q;
D.
p->link=q; q->link=p;
相关题目:
参考解析:
知识点:
题目纠错 0
发布
创建自己的小题库 - 刷刷题