计算机类
公务员类
工程类
语言类
金融会计类
计算机类
医学类
研究生类
专业技术资格
职业技能资格
学历类
党建思政类
行业认证
全国计算机应用水平考试(NIT)
计算机软件水平考试
计算机等级考试(NCRE)
全国高校计算机等级考试CCT
行业认证
信息素养
多选题评估如下这个SQL语句: SELECT * FROM product WHERE LOWER(description)="CABLE"; 这个SQL语句将产生以下哪个结果?
进入题库练习
多选题Given: 3. public class KaChung { 4. public static void main(String[] args) { 5. String s = ""; 6. if(Integer.parseInt("011") == Integer.parseInt("9")) s += 1; 7. if(021 == Integer.valueOf("17")) s += 2; 8. if(1024 == new Integer(1024)) s += 3; 9. System.out.println(s); 10. } } What is the result?
进入题库练习
多选题在以下的表空间中,哪一个不能设置为脱机? A.临时(TEMP) B.数据(DATA) C.索引(INDEX) D.系统(SYSTEM)
进入题库练习
多选题在fox数据库初始化参数的默认位置包含了如下的文件:init.ora、sofile.ora、initfox.ota、和spfilefox.ora。 当以未说明参数文件的方式启动数据库时,Oracle服务器将试图首先读以下哪一个文件? A.init.ora B.initfox.ora C.spfile.ora D.spfilefox.ora
进入题库练习
多选题Given: 2. public class Swanky { 3. Swanky s; 4. public static void main(String[] args) { 5. Swanky s1 = new Swanky(); 6. s1.s = new Swanky(); 7. go (s1. s); 8. Swanky s2 = go(s1); 9. if(s2.s.equals(s1)) System.out.print("1 "); 10. if(s2.equals(s1)) System.out.print ("2 "); 11. if(s1.s.equals(s1)) System.out.print("3 "); 12. if(s2.s.equals(s2)) System.out.print("4 "); 13. } 14. static Swanky go(Swanky s) { 15. Swanky gs = new Swanky(); 16. gs.s = s; 17. return gs; 18. } } What is the result?
进入题库练习
多选题你已经使用CONFIGURE BACKUP OPTIMIZATION ON配置了数据库的备份优化。在使用哪些命令时,RMAN不会在文件相同的情况下忽略备份文件?
进入题库练习
多选题SQL*Loader Express Mode作业运行,且能够找到目标表,但是作业失败,没能加载任何行。可能的原因是什么?
进入题库练习
多选题CAT数据库有两个重做日志组,而且每一个组有3个成员。如果要为这个数据库添加一个重做日志组,Oracle推荐该组有多少个成员? A.0 B.1 C.2 D.3
进入题库练习
多选题如要创建temp_dog表空间,而这个表空间是由本地管理的,并且为临时表空间,请问应该使用如下的哪一个语句? A.CREATE TABLESPACE temp_dog TEMPFILE '/usr/oracle/OraHome1/temp_data.dbf' SIZE 20M EXTENT MANAGEMENT LOCAL UNIFORM SIZE 2M; B.CREATE TABLESPACE temp_dog TEMPORARY TEMPFILE '/usr/oracle/OraHome1/temp_data.dbf SIZE 2M AUTOEXTEND ON; C.CREATE TEMPORARY TABLESPACE temp_dog DATAFILE '/usr/oracle/OraHome1/temp_data.dbf SIZE 2M AUTOEXTEND ON; D.CREATE TEMPORARY TABLESPACE temp_dog TEMPFILE '/usr/oracle/OraHome1/temp_data.dbf SIZE 20M EXTENT MANAGEMENT LOCAL UNIFORM SIZE 2M;
进入题库练习
多选题以下哪个内存区被用来存储数据库共享的所有数据库信息? A.SGA B.PGA C.UGA
进入题库练习
多选题Given: 1. abstract class Vibrate { 2. static String s = "-"; 3. Vibrate() {s += "v"; } 4. } 5. public class Echo extends Vibrate { 6. Echo() {this(7); s += "e"; } 7. Echo(int x) {s += "e2"; } 8. public static void main(String[] args) { 9. System.out.print("made " + s + " "); 10. } 11. static { 12. Echo e = new Echo(); 13. System.out.print("block " + s + " "); 14. } } What is the result?
进入题库练习
多选题如果使用没有WHERE子句的UPDATE命令,意外地将所有TECHNICIAN ID的值都更改成了999999,请问可以发出如下的哪个命令来还原(回滚)这些更改?
进入题库练习
多选题要截断(TRUNCATE)其他用户拥有的一个表,需要哪一个权限? A.ALTER TABLE B.DROP ANY TABLE C.DELETE ANY TABLE D.TRUNCATE ANY TABLE
进入题库练习
多选题下列哪些方法可以用来创建新PDB的服务或给现有的PDB添加另一个服务?
进入题库练习
多选题Given: 1. public class BackHanded { 2. int state = 0; 3. BackHanded(int s) {state = s; } 4. public static void main(String... hi) { 5. BackHanded b1 = new BackHanded(1); 6. BackHanded b2 = new BackHanded(2); 7. System.out.println(b1.go(b1) + " " + b2.go(b2)); 8. } 9. int go(BackHanded b) { 10. if(this.state == 2) { 11. b.state = 5; 12. go(this); 13. } 14. return ++this.state; 15. } } What is the result?
进入题库练习
多选题将公共用户C##RJB限制为只能看到WHSE容器(PDB)内的V$SESSION的内容。查看哪个表可确认C##RJB被限制为查看WHSE的V$SESSION数据?
进入题库练习
多选题Given the following directory structure: test -| |- Finder.class |- testdir -| |- subdir |- subdir2 |- testfile.txt If test, testdir, subdir, and subdir2 are all directories, and Finder.class and testfile.txt are files, and given: import java.io.*; public class Finder { public static void main(String[] args) throws IOException { String[] files = new String[100]; File dir = new File(args[0]); files = dir.list(); System. out.println (files.length); } } And, if the code compiles, the invocation: java Finder testdir What is the result?
进入题库练习
多选题Given: 3. public class Ice { 4. Long[] stockings = {new Long(3L), new Long(4L), new Long(5L)}; 5. static int count = 0; 6. public static void main(String[] args) { 7. new Ice() .go(); 8. System. out. println (count); 9. } 10. void go() { 11. for(short x = 0; x < 5; x++) { 12. if(x == 2) return; 13. for(long ell: stockings) { 14. count++; 15. if(ell == 4) break; 16. } } } } What is the result? (Choose all that apply.)
进入题库练习
多选题Given: 1. public class Begin { 2. static int x; 3. {int[] ia2 = {4,5,6}; 4. static { 5. int[] ia = {1,2,3}; 6. for(int i = 0; i < 3; i++) 7. System.out.print(ia[i] + " "); 8. x= 7; 9. System.out.print(x + " "); 10. } } And, if the code compiles, the invocation: java Begin What is the result?
进入题库练习
多选题下面的哪些条目会永久存储在快速恢复区中?
进入题库练习