智慧树知到《数据库管理》章节测试答案
A.printf(";hello world!\n";)
B.scanf(";hello world! \n";)
C.fprint(";hello world!\n";)
D.cout <;<; ";hello world!\n"
正确答案:printf(";hello world!\n";)
4、java不具备的注释方式是
A.//
B./*;*/
C.#
D./**; **/
正确答案:#
5、java默认的编码方式是
A.unicode
B.gb2312
C.gbk
D.gb18030
正确答案:unicode
第四章单元测试
1、java支持的数据类型包括以下哪些:
A.int
B.double
C.String
D.char
正确答案:int;double;String;char
2、以下不是简单数据类型的是
A.数组
B.整型
C.布尔型
D.字符型
正确答案:数组
3、以下不是复杂数据类型的是
A.数组
B.字符串
C.类
D.浮点型
正确答案:浮点型
4、以下关于数据溢出的说法,错误的是
A.显式转换不会出现数据溢出
B.隐式转换不会出现数据溢出
C.显式转换可能会出现数据溢出
D.数据溢出并不一定抛出异常
正确答案:显式转换不会出现数据溢出
5、java不包括的运算符是
A.算术运算符
B.启发式运算符
C.逻辑运算符
D.位运算符
正确答案:启发式运算符
第五章单元测试
1、看下面一段语句块,执行结果是:……int res=0;for(int i=1; i<;=100; i++){; if(i%2==0); continue; res+=i;}System.out.println(res);……
A.5050
B.2500
C.2550
D.1
正确答案:2500
2、以下Java的条件、循环结构的写法,有输出效果、且没有错误的有哪些?
A.……; if(true); System.out.println(";hello";);……
B.…… ;if(true){;System.out.println(";hello";); };……
C.……;while(1){; System.out.println(";hello";); };……
D.……;if(true); {; System.out.println(";hello";);};……
正确答案:……; if(true); System.out.println(";hello";);……;…… ;if(true){;System.out.println(";hello";); };……
3、Java语言中,使用大括号包裹一块语句块,像for、if等循环、条件结构,都必须使用大括号包裹语句块。
A.正确
B.错误
正确答案:错误
4、continue用来退出循环。
A.正确
B.错误
正确答案:错误
5、以下关于程序调试的说法错误的是
A.try...catch...可以捕获错误
B.throw可以抛出错误
C.exception类需要自定义
D.assert断言功能常用于单元测试