计算机类
公务员类
工程类
语言类
金融会计类
计算机类
医学类
研究生类
专业技术资格
职业技能资格
学历类
党建思政类
行业认证
全国计算机应用水平考试(NIT)
计算机软件水平考试
计算机等级考试(NCRE)
全国高校计算机等级考试CCT
行业认证
信息素养
OCP
微软认证
IBM
Lotus
Sun
OCA
Cisco(思科)
Adobe
HP
Linux
CIW
JAVA
Red Hat
华为认证
北大青鸟ACCP认证
印度NIIT认证
(ISC)²注册信息系统安全专家(CISSP)认证
布线测试认证工程师培训考试(CCTT)
趋势科技认证信息安全专家(TSCP)
OCP
OCM
多选题Given: 2. public class Payroll { 3. int salary; 4. int getSalary() {return salary; } 5. void setSalary(int s) { 6. assert(s > 30000); 7. salary = s; 8. } } Which are true? (Choose all that apply.)
进入题库练习
多选题Given: 2. class Car { 3. private Car() { } 4. protected Car(int x) { } 5. } 6. public class MG extends Car { 7. // MG(int x) { } 8. // MG(int x) {super(); } 9. // MG(int x) {super(x); } 10. // private MG(int x) {super(x); } 11. // MG() { } 12. // MG() {this(); } 13. // MG() {this(6); } 14. // MG() {super(7); } 15. public static void main(String[] args) { 16. new MG(7); 17. new MG(); 18. } } Which sets of constructors can be uncommented for the code to compile? (Choose all that apply.)
进入题库练习
多选题数据库管理员使用了“ALTER INDEX babydog DEALLOCATE UNUSED;”,请问这个DDL,语句的作用是什么? A.截断babydog索引 B.回收babydog索引所使用的全部磁盘空间 C.释放在babydog索引中所有没有使用的磁盘空间 D.释放在babydog索引中高水线之上所有没有使用的磁盘空间
进入题库练习
多选题Given: 2. class Pancake { } 3. class BlueberryPancake extends Pancake { } 4. public class SourdoughBlueberryPancake2 extends BlueberryPancake { 5. public static void main(String[] args) { 6. Pancake p4 = new SourdoughBlueberryPancake2(); 7. // insert code here 8. } } And the following six declarations (which are to be inserted independently at line 7): Ⅰ. Pancake p5 = p4; Ⅱ. Pancake p6 = (BlueberryPancake)p4; Ⅲ. BlueberryPancake b2 = (BlueberryPancake)p4; Ⅳ. BlueberryPancake b3 = (SourdoughBlueberryPancake2)p4; Ⅴ. SourdoughBlueberryPancake2 s1 = (BlueberryPancake)p4; Ⅵ. SourdoughBlueberryPancake2 s2 = (SourdoughBlueberryPancake2)p4; Which are true? (Choose all that apply.)
进入题库练习
多选题Which statement(s) are true? (Choose all that apply.)
进入题库练习
多选题以下哪个命令将造成事务的隐式提交?
进入题库练习
多选题Given: 1. class Contact { 2. String doStuff() {return "howdy "; } 3. } 4. class Supplier extends Contact { 5. String doStuff() {return "send money "; } 6. public static void main(String[] args) { 7. Supplier s1 = new Supplier(); 8. Contact c3 = new Contact(); 9. Contact c1 = s1; 10. Supplier s2 = (Supplier) c1; 11. Supplier s3 = (Supplier) c3; 12. Supplier s4 = new Contact(); 13. } } Which are true? (Choose all that apply.) A. Compilation succeeds. B. The code runs without exception. C. If the line(s) of code that do NOT compile (if any) are removed, the code runs without exception. D. If the line(s) of code that do NOT compile (if any) are removed, the code throws an exception at runtime.
进入题库练习
多选题下面哪条语句正确描述了Flashback Data Archive?
进入题库练习
多选题如果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命令将产生哪个结果?
进入题库练习