皮皮学,免费搜题
登录
logo - 刷刷题
搜题
【简答题】
How is a blue hole different from a cave? a. A blue hole is always underwater. b. Caves usually have two sinkholes. c. Caves are inland, but blue holes are not. 2. What makes blue holes dangerous for divers? a. The guidelines are often not long enough to reach deep into the hole. b. There is poisonous gas at the top of the hole and darkness below. c. Bacteria grow between the fresh water and salt water layers. 3. What is astrobiology? a. the study of the location of stars in the universe b. the study of living things on Earth and other planets c. the study of creatures that don’t need oxygen to live 4. What does the phrase "habitable environments off Earth" mean? a. locations on the ocean’s surface to build floating cities b. caves on Jupiter’s moon where bacteria might live c. places on other planets where humans could live 5. What is special about the creatures that live in blue holes? a. Like most other living things, they need oxygen and sunlight. b. It’s possible they are the same as they were millions of years ago. c. They are closely related to creatures in other parts of the universe. 6. What does Kenny Broad think about exploring blue holes? a. It's worth the risk. b. It's extremely dark. c. It's too difficult.
手机使用
分享
复制链接
新浪微博
分享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.
错误
【判断题】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
发布
创建自己的小题库 - 刷刷题