Before a guest's name is put on waiting list, Click-Ahead Seating calls his cell phone for comfirmation.()
第1题:
给定如下Java程序代码片段,编译运行这段代码,结果是( )。
java.util.HashMapmap=newjava.util.HashMap();
map.put("name",null);
map.put("name","Jack");
System.out.println(map.get("name"));
A.null
B.Jack
C.nullJack
D.运行时出现异常
第2题:

第3题:
已知表student存储在HBase中,向表中插入记录{id:2015001,name:Mary,{score:math}:88},其id作为行键,其中,在插入数学成绩88分时,正确的命令是()。
A.put 'student','2015001','88'
B.put 'student','2015001','score:math','88'
C.put 'student','2015001','math','88'
D.put 'student','score:math','88'
第4题:
第5题:
已知一张表student存储在HBase中,向表中插入一条记录{id:2015001,name:Mary,{score:math}:88},其id作为行键,其中,在插入数学成绩88分时,正确的命令是
A.put 'student','2015001','score:math','88'
B.put 'student','2015001','88'
C.put 'student','2015001','math','88'
D.put 'student','score:math','88'
第6题:
给定如下Java 程序代码片段,编译运行这段代码,结果是 java.util.HashMap map = new java.util.HashMap(); map.put("name",null); map.put("name","Jack"); System.out.println(map.get("name"));
A.null
B.Jack
C.nullJack
D.运行时出现异常