计算机类
公务员类
工程类
语言类
金融会计类
计算机类
医学类
研究生类
专业技术资格
职业技能资格
学历类
党建思政类
行业认证
全国计算机应用水平考试(NIT)
计算机软件水平考试
计算机等级考试(NCRE)
全国高校计算机等级考试CCT
行业认证
信息素养
多选题如果Duck数据库有4组重做日志,并且每一组有3个成员,Oracle将推荐使用多少个硬盘来维护这些重做日志文件? A.3 B.4 C.6 D.8 E.12
进入题库练习
多选题Given: 1. import java.io.*; 2. public class Edgy { 3. public static void main(String[] args){ 4. try { 5. wow(); 6. // throw new IOException(); 7. } finally { 8. // throw new Error(); 9. // throw new IOException(); 10. } 11. } 12. static void wow() { 13. // throw new IllegalArgumentException(); 14. // throw new IOException(); 15. } } And given that IOException is a direct subclass of java.lang.Exception, and that llegalArgumentException is a runtime exception, which of the following, if uncommented independently, will compile? (Choose all that apply.)
进入题库练习
多选题Given: 2. public class Buffalo { 3. static int x; 4. int y; 5. public static int getX() {return x; } 6. public static void setX(int newX) {x = newX; } 7. public int getY() {return y; } 8. public void setY(int newY) {y = newY; } 9. } Which lines of code need to be changed to make the class thread safe? (Choose all that apply.)
进入题库练习
多选题Given: 2. public class Boot { 3. static String s; 4. static {s = "" ; } 5. {System.out.print("shinier "); } 6. static {System.out.print(s.concat("better ")); } 7. Boot() {System.out.print(s.concat("bigger ")); } 8. public static void main(String[] args) { 9. new Boot(); 10. System.out.println("boot"); 11. } } What is the result?
进入题库练习
多选题Given that the current directory is bigApp, and the following directory structure: bigApp |-- classes |-- source |-- com |-- wickedlysmart |-- BigAppClassl.java And the code: package com.wickedlysmart; public class BigAppClassl { int doStuff() {return 42; } } And the following command-line invocations: Ⅰ. javac -d source/com/wickedlysmart/BigAppClassl.java Ⅱ. javac -d classes source/com/wickedlysmart/BigAppClassl.java Ⅲ. javac -d classes/com/wickedlysmartsource/com/wickedlysmart/BigAppClassl.java Which are true? (Choose all that apply.)
进入题库练习
多选题Given: 2. public class Pregnant extends Thread { 3. int x = 0; 4. public static void main(String[] args) { 5. Runnable r1 = new Pregnant(); 6. new Thread(r1) .start(); 7. new Thread(r1) .start(); 8. } 9. public void run() { 10. for(int j = 0; j < 3; j++) { 11. x = x + 1; 12. x = x + 10; 13. System.out.println(x + " "); 14. x = x + 100; 15. } } } If the code compiles, which value(s) could appear in the output? (Choose all that apply.)
进入题库练习
多选题如要关闭资源限制,应该修改如下的哪一个初始化参数? A.PROCESSES B.SESSION_LIMIT C.RESOURCE_LIMIT D.TIMED_STATISTICS
进入题库练习
多选题使用分组函数可完成以下的哪个操作? A.以‘DD MON YYYY’的格式显示订单(orders)的订货日期(order date) B.将字符串‘January 23 2010’转换成日期格式 C.产生PRODUCT表中COST列所有值的总和 D.以小写字母的形式显示PRODUCT表中DESCRIPTION列所有的值
进入题库练习
多选题Given: 3. public class Chopper { 4. String a = "12b"; 5. public static void main(String[] args) { 6. System.out.println (new Chopper().chop(args[0])); 7. } 8. int chop(String a) { 9. if(a == null) throw new IllegalArgumentException(); 10. return Integer.parseInt(a); 11. } } And, if the code compiles, the invocation: java Chopper What is the result?
进入题库练习
多选题以下哪个SQL命令将删除视图PARTS_VU?
进入题库练习
多选题假设正在计划数据库的配置,那么应该如何组织数据的存储? A.应该将具有不同备份需求的对象组织在一起 B.应该将具有I/O竞争需求的对象组织在一起 C.应该将具有不同生命期的对象分开存放以最小化碎片问题 D.应该将具有静态特性的对象分开存放
进入题库练习
多选题评估如下的SQL*Plus命令: SPOOL dog.1st 这一SQL*Plus命令将产生哪个结果?
进入题库练习
多选题在以下有关Oracle约束的陈述中,哪4个是正确的? A.条件约束说明一个必须成立的条件 B.主键约束唯一地标识一个表中的每一行 C.非空(NOT NULL)约束确保在一列中不允许有空值(NULL) D.唯一约束防止输入空值,因为空值对这一约束不安全 E.唯一约束说明对一个表中所有的数据行的一列或几列的组合必须是唯一的 F.当一列是唯一标识每一行的一部分时,主键约束允许这一列可以出现空值
进入题库练习
多选题下面哪些描述是使用恢复目录替代目标数据库控制文件的正当理由。
进入题库练习
多选题下面哪些初始化参数无效?
进入题库练习
多选题在以下的命令中,应该使用哪一个来激活(开启)一个角色? A.SET ROLE B.ALTER USER C.CREATE ROLE D.ALTER SYSTEM
进入题库练习
多选题要从TRX表中移除一年以上的事务,请问如下的哪一类型的语句可以完成这一操作?
进入题库练习
多选题以下是教师(TEACHER)表中的数据: TEACHER ID LAST_NAME FIRST_NAME SUBJECT_ID 88 Tsu Ming HST AMER 70 Smith Ellen HST INDIA 56 Jones Karen 58 Hann Jeff HST CURR 63 Hopewell Mary Elizabeth HST_RELIG 请评估如下的SQL语句,当这个查询语句执行时将首先显示如下的哪条信息? SELECT last_name‖", "‖first_name FROM teacher WHERE subject_id!=NULL ORDER BY last_name;
进入题库练习
多选题Given this code in a method: 5. boolean[] ba = {true, false}; 6. short[] [] gr = {{1,2}, {3,4}}; 7. int i = 0; 8. for( ; i < i0; ) i++; 9. for(short s: gr) ; 10. for(int j = 0, k = 10; k > j; ++j, k--); 11. for(int j = 0; j < 3; System.out.println(j++)) 12. for(Boolean b: ba); What is the result? (Choose all that apply.)
进入题库练习
多选题一个实例启动之后,在以下的哪个状态时Oracle服务器开始阅读控制文件? A.NOMOUNT B.MOUNT C.OPEN
进入题库练习