计算机类
公务员类
工程类
语言类
金融会计类
计算机类
医学类
研究生类
专业技术资格
职业技能资格
学历类
党建思政类
行业认证
全国计算机应用水平考试(NIT)
计算机软件水平考试
计算机等级考试(NCRE)
全国高校计算机等级考试CCT
行业认证
信息素养
OCP
微软认证
IBM
Lotus
Sun
OCA
Cisco(思科)
Adobe
HP
Linux
CIW
JAVA
Red Hat
华为认证
北大青鸟ACCP认证
印度NIIT认证
(ISC)²注册信息系统安全专家(CISSP)认证
布线测试认证工程师培训考试(CCTT)
趋势科技认证信息安全专家(TSCP)
OCP
OCM
多选题请看一个SQL语句: ALTER USER jinlian DEFAULTROLE ALL; 以上这个DDL语句将完成下面的哪一项工作? A.赋予jinlian用户All这个角色 B.将所有的角色都设置成jinlian用户的默认角色 C.移除jinlian用户的所有默认角色 D.没有完成任何工作,因为这个命令将不会被执行
进入题库练习
多选题Given that the current directory is bigApp, and the following directory structure: bigApp |-- classes |-- com |-- wickedlysmart |-- BigAppMain.class And the code: package com.wickedlysmart; public class BigAppMain { public static void main(String[] args) { System. out.println("big app"); } } Which will invoke BigAppMain? (Choose all that apply.)
进入题库练习
多选题Given: 3. class One { 4. void go1() {System.out.print("1 "); } 5. final void go2() {System.out.print("2 "); } 6. private void go3() {System.out.print("3 "); 7. } 8. public class OneB extends One { 9. void go1() {System.out.print("ib "); } 10. void go3() {System.out.print("3b "); } 11. 12. public static void main(String[] args) 13. new OneB().go1(); 14. new One().go1(); 15. new OneB().go2(); 16. new OneB().go3(); 17. new One().go3(); 18. } } What is the result?
进入题库练习
多选题可以使用以下哪些方法来检索当前的系统更改号(SCN)?
进入题库练习
多选题Given: 2. public class Boggy { 3. final static int mine = 7; 4. final static Integer i = 57; 5. public static void main(String[] args) { 6. int x : go(mine); 7. System.out.print(mine + " " + x + " "); 8. x += mine; 9. Integer i2 = i; 10. i2 = go(i); 11. System.out.println(x + " " + i2); 12. i2 = new Integer(60); 13. } 14. static int go(int x) {return ++x; } 15. } What is the result?
进入题库练习
多选题Given: 1. public class Twine { 2. public static void main (String[] args) { 3. String s=""; 4. StringBuffer sb1=new StringBuffer("hi"); 5. StringBuffer sb2=new StringBuffer("hi"); 6. StringBuffer sb3=new StringBuffer(sb2); 7. StringBuffer sb4=sb3; 8. if(sb1.equals(sb2)) s += "1 "; 9. if(sb2.equals(sb3)) s += "2 "; 10. if(sb3.equals(sb4)) s += "3 "; 11. String s2="hi"; 12. String s3="hi"; 13. String s4=s3; 14. if(s2.equals(s3)) s += "4 "; 15. if(s3.equals(s4)) s += "5 "; 16. System.out.println(s); 17. } 18. } What is the result?
进入题库练习
多选题请看如下创建索引的DDL语句: CREATE INDEX hr.employee_last_name_idx ON dog.employee (last_name) PCTFREE 25 STORAGE (INITIAL 200K NEXT 200K) PCTCREASE 0 MAXEXTENTS 35) TABLESPACE indx; 请问,这个创建索引的DDL语句将创建哪一种类型的索引? A.位图索引 B.唯一索引 C.正常B-树索引 D.分区索引
进入题库练习
多选题Your company makes compute-intensive, 3D rendering software for the movie industry. Your chief scientist has just discovered a new algorithm for several key methods in a commonly used utility class. The new algorithm will decrease processing time by 15 percent, without having to change any method signatures. After you change these key methods, and in the course of rigorous system testing, you discover that the changes have introduced no new bugs into the software. In terms of your software"s overall design, which are probably true? (Choose all that apply.)
进入题库练习
多选题如果丢失了临时表空间中的所有临时文件,用户最有可能看到什么结果?
进入题库练习
多选题使用如下的CREATE SEOUENCE语句创建一个序列: CREATE SEQUENCE line_item_id_seq START WITH 10001 MAXVALUE 999999999 NOCYCLE; 基于以上这个CREATE SEOUENCE语句,以下的哪个陈述是正确的? A.这个序列将重用数字并将以10001开始 B.这个序列绝不会重用任何数字并且步长(增量)为1 C.当这个序列达到它的最大值之后将继续产生数值 D.这个CRENTE SEQUENCE语句将产生语法错误,因为在这个语句中没有包括INCREMENT BY数值
进入题库练习
多选题以下是PERSONNEL表的定义: ID NUMBER(9) LAST_NAME VARCHAR2(25) FIRST_NAME VARCHAR2(25) MANAGER_ID NUMBER(9) DEPT_ID NUMBER(9) 请看如下的SQL语句,它将返回以下的哪个结果? SELECT p.dept_id, p.first_name‖""‖p.last_name employee, c.first_name‖""‖c.last_name coworker FROM personnel p,personnel c WHERE p.dept id=c.dept_id AND p.id<>c.id;
进入题库练习
多选题请看DDL语句“DROP TABLE employee CASCADE CONSTRAINTS;”,请问这一DDL语句执行的结果会是哪3个? A.Employee表所使用的区段将被释放 B.Employee表的定义将被从数据字典中删除掉 C.Employee表中的数据将被删除,但是该表的结果将被保留 D.Employee表中的数据将被删除,但是该表所使用的区段将被保留 E.如果在一个外键关系中Employee表是主表就需要使用CASCADE CONSTRAINTS选项
进入题库练习
多选题BACKGROUND_DUMP_DEST初始化参数说明了什么文件的位置? A.报警文件(alert log file) B.用户追踪文件(user trace files) C.归档重做日志(archived redo logs) D.多重映像联机重组日志(online redo logs)
进入题库练习
多选题请看如下的SQL语句: ALTER SYSTEM SET UNDO_TABLESPACE=undo_tbs2; 这一SQL语句将完成以下的哪一个功能? A.创建undo_tbs2表空间 B.删除之前的还原表空间 C.将undo_tbs2表空间的状态置为挂起脱机(PENDING OFFLTNE) D.说明新的事务(transactions)将使用undo_tbs2这个还原表空间
进入题库练习
多选题要从RMAN自动备份还原控制文件,应按什么正确的顺序使用下面的命令? 1.RECOVER DATABASE 2.ALTER DATABASE OPEN RESETLOGS 3.STARTUP NOMOUNT 4.ALTER DATABASE MOUNT 5.RESTORE CONTROLFILE FROM AUTOBACKUP
进入题库练习
多选题Given: 3. class MotorVehicle { 4. protected int doStuff(int x) {return x * 2; } 5. } 6. class Bicycle { 7. void go(MotorVehicle m) { 8. System.out.print(m. doStuff (21) + " "); 9. } } 10. public class Beemer extends MotorVehicle { 11. public static void main(String[] args) { 12. System.out.print(new Beemer().doStuff(11) + " "); 13. new Bicycle().go(new Beemer()); 14. new Bicycle() .go(new MotorVehicle()); 15. } 16. int doStuff(int x) {return x * 3; } 17. } What is the result? (Choose all that apply.)
进入题库练习
多选题Given: 1. import java.util.*; 2. public class MyPancake implements Pancake { 3. public static void main(String[] args) { 4. List<String> x=new ArrayList<String>(); 5. x.add("3"); x.add ("7"); x.add ("5"); 6. List<String> y=new MyPancake() .doStuff(x); 7. y.add ("i"); 8. System.out.println (x); 9. } 10. List<String> doStuff(List<String> z) { 11. z.add("9"); 12. return z; 13. } 14. } 15. interface Pancake { 16. List<String> doStuff(List<String> s); 17. } What is the most likely result?
进入题库练习
多选题应该在哪一列上创建一个索引? A.一个很小的列 B.一个经常修改的列 C.一个取值范围很广的列 D.一个具有很少空值的列
进入题库练习
多选题以下是课程(CLASS)表和教师(INSTRUCTOR)表中的数据: CLASS CLASS_ID CLASS_NAME HOURS_CREDIT INSTRUCTOR_ID 1 Introduction to Accounting 3 4 2 Computer Basics 3 1 3 Tax Accounting Principles 3 4 4 American History 3 2 5 Basic Engineering 3 INSTRUCTOR INSTRUCTOR_ID LAST_NAME FIRST_NAME 1 Chao Ling 2 Vanderbilt Herbert 3 Wigley Martha 4 Page Albert 要生成一个包括每个教师所教课程的报表,该报表必须包括所有的教师,即使那些目前没有任课的教师也要包括在报表中。请问,应使用以下查询语句中的哪两个?
进入题库练习
多选题在Oracle数据库实例中,最多有几个数据库写入器进程(DBWn)?
进入题库练习