计算机类
公务员类
工程类
语言类
金融会计类
计算机类
医学类
研究生类
专业技术资格
职业技能资格
学历类
党建思政类
行业认证
全国计算机应用水平考试(NIT)
计算机软件水平考试
计算机等级考试(NCRE)
全国高校计算机等级考试CCT
行业认证
信息素养
多选题Given: 1. interface Horse {public void nicker(); } Which will compile? (Choose all that apply.)
进入题库练习
多选题以下是CLASS表中的数据: CLASS CLASS_ID CLASS_NAME HOURS_CREDIT INSTRUCTOR_ID 1 Incroduction to Accouncting 3 4 2 Computer Basics 3 1 3 Tax Accouncing Principles 3 4 4 American History 3 2 5 Basic Engineering 3 请评估如下的SQL语句,当使用这个查询语句查询数据库时将显示以下哪个值? SELECT COUNT(instructor_id) FROM class;
进入题库练习
多选题假设使用了如下的DDL语句: ALTER INDEX sales.customers_id_idx MONITORING USAGE; 之后,需要查看以下哪一个数据字典视图以追踪sales用户下的customers_id_idx索引的使用情况? A.DBA_INDEXES B.INDEX_STATS C.DBA_OBJECTS D.V$OBJECT_USAGE
进入题库练习
多选题在以下有关序列(sequence)的语句中,哪个是正确的?
进入题库练习
多选题Given: 1. public class Egg<E extends Object> { 2. E egg; 3. public Egg(E egg) { 4. this.egg=egg; 5. } 6. public E getEgg() { 7. return egg; 8. } 9. public static void main(String[] args) { 10. Egg<Egg> egg1 = new Egg(42); 11. Egg egg2 = new Egg<Egg>(egg1.getEgg()); 12. Egg egg3 = egg1.getEgg(); 13. } } Which are true? (Choose all that apply).
进入题库练习
多选题Given: 2. class Jiggy extends Thread { 3. Jiggy(String n) { super(n); } 4. public void run() { 5. for(int i = 0; i 6. if("tl".equals(Thread.currentThread() .getName( ) 8. throw new Error(); 9. } 10. if("t2".equals(Thread.currentThread() .getName()) 12. throw new Error(); 13. } 14. System.out.print (Thread.currentThread() .getName() + "-"); 15. } 16. } 17. public static void main(String[] args) { 18. Thread t1 = new Jiggy("t1"); 19. Thread t2 = new Jiggy("t2"); 20. t1.setPriority(1); t2.setPriority(9); 21. t2.start(); t1.start(); 22. } } Which are true? (Choose all that apply.)
进入题库练习
多选题Given the following three files: 2. package apollo; 3. import apollo.modules.Lunar; 4. public class Saturn { 5. public static void main(String[] args) { 6. Lunar lunarModule = new Lunar(); 7. System.out.println(lunarModule); 8. } } 2. package apollo.modules; 3. public interface Module { /* more code */ } 2. package apollo.modules; 3. public class Lunar implements Module { /* more code */ } And given that Module.java and Lunar.java were successfully compiled and the directory structureisshownbelow: $ROOT |-- apollo | |-- modules | |-- Lunar.class |-- controls.jar | |-- apollo | |-- modules | |-- Module. class |-- Saturn. java Which are correct about compiling and running the Saturn class from the $ROOT directory? (Choose all that apply.)
进入题库练习
多选题如要显示全部具有ALTER ANY ROLE系统权限的用户,请问,在如下的数据字典视图中,应该查询哪一个? A.DBA_COL_PRIVS B.DBA_SYS_PRIVS C.DBA_USER_PRIVS D.USER_TAB_PRIVS_RECD
进入题库练习
多选题Given: 1. import java.util. *; 2. class Radio { 3. String getFreq() {return "97.3"; } 4. static String getF() {return "97.3"; } 5. } 6. vclass Ham extends Radio { 7. String getFreq() {return "50.1"; } 8. static String getF() {return "50.1"; } 9. public static void main(String[] args) { 10. List<Radio> radios = new ArrayList<Radio>(); 11. radios.add(new Radio()); 12. radios.add(new Ham()); 13. for(Radio r: radios) 14. System.out.print(r.getFreq() + " " + r.getF() + " "); 15. } } What is the result?
进入题库练习
多选题Given: 1. class Hotel { 2. static void doStuff(int x) { 3. assert (x < 0) : "hotel"; 4. } 5. } 6. public class Motel13 extends Hotel { 7. public static void main(String[] args) { 8. doStuff(-5); 9. int y = 0; 10. assert (y < 0) : "motel"; 11. } } Which of the following revocations will run without exception? (Choose all that apply.)
进入题库练习
多选题EMPLOYEES表包括了如下的列: EMPLOYEE_ID NUMBER Primary Key LAST_NAME VARCHAR2(25) FIRST_NAME VARCHAR2(25) DEPARTMENT_ID NUMBER(3) POSITION VARCHAR2(30) MANAGER_ID NUMBER SALARY NUMBER(6, 2) 如果使用了如下的查询语句,请问哪个选项是正确的? SELECT DISTINCT department_id, manager_id FROM employees;
进入题库练习
多选题Given: 343. String s = "1234"; 344. StringBuilder sb = 345. new StringBuilder(s.substring(2).concat ("56").replace("7", "6")); 346. System.out.println(sb.append("89") .insert (3, "x")); What is the result?
进入题库练习
多选题作为一位高级数据库管理员为公司中的初级数据库管理员创建了一个角色。所创建角色的名字为JR_DBA,并将如下的预定义角色赋予了这个JR_DBA角色: DBA IMP_FULL_DATABASE DELETE_CATALOG_ROLE SELECT_CATALOG_ROLE EXECUTE_CATALOG_ROLE 该JR_DBA角色的成员应该只能够执行如下的这些任务(工作): (1)使用导入(Import)和导出(Export)应用程序导入和导出数据以创建数据库的完全逻辑备份。 (2)查看数据字典表中的数据。 (3)执行数据字典软件包。 为了给这个JR_DBA角色提供以上所述的这几个权限,必须采取如下的哪两步措施? A.授予该JR_DBA角色一个角色 B.授予该JR_DBA角色两个角色 C.从JR_DBA角色中回收一个角色 D.从JR_DBA角色中回收两个角色 E.授予该JR_DBA角色两个权限 F.从JR_DBA角色中回收两个权限
进入题库练习
多选题想要按如下方式显示INVENTORY表中每个产品的标识号(id_number)和描述(description):(1)产品的价格(price)必须是0.25或8.25。(2)产品必须是在1997年6月10日之前订购的。(3)显示的结果必须按照产品的描述(description)的字母顺序显示。如果使用以下的SQL查询语句,将可能获得的结果是哪个?注意所有的数据都存放在INVENTORY表中。SELECTid_number,descriptionFROMinventoryWHEREpriceIN(8.25,0.25)ORDERBYdescriptiondesc;
进入题库练习
多选题请看以下两个SQL语句: TRUNCATE TABLE dept; DROP TABLE emp; 当运行以上这两个SQL语句时,它们的执行结果会有什么不同? A.截断(TRUNCATE)dept表将产生还原数据,而删除(DROP)表将不会产生还原数据 B.被一个外键所引用的dept表是不能被截断的,但是可以删除 C.发“DROP TABLE dept; ”语句将造成隐含提交,而发“TRUNCATE TABLE dept;”语句将不会造成隐含提交 D.截断(TRUNCATE)dept表将从表中删除全部的数据并释放没有使用的磁盘空间,但是删除(DROP)表将不会释放所有没有使用的磁盘空间
进入题库练习
多选题Given: 2. import java.io.*; 3. public class Uboat { 4. public static void main(String[] args) { 5. try { 6. File f1 = new File("sub1"); 7. f1.mkdir(); 8. File f2 = new File(f1, "sub2"); 9. File f3 = new File(f1, "sub3"); 10. PrintWriter pw = new PrintWriter(f3); 11. } catch (Exception e) {System.out.println("ouch"); } 12. } } And, if the code compiles, what is the result if "java Uboat" is invoked TWICE? (Choose all that apply.)
进入题库练习
多选题以下的哪个CREATE RESTORE POINT命令将保留由初始化参数CONTROL_FILE_RECORD_KEEP_TIME指定的过去的还原时间点?
进入题库练习
多选题Given: 2. class Explode { 3. static String s = ""; 4. static {s += "sb1 "; } 5. Explode() {s += "e "; } 6. } 7. public class C4 extends Explode { 8. C4() { 9. s += "c4 "; 10. new Explode(); 11. } 12. static { 13. new C4(); 14. System.out.print(s); 15. } 16. {s += "i ";} 17. public static void main(String[] args) { } 18. } And given the command-line invocation "java C4", what is the result?
进入题库练习
多选题用户以wuda身份登录,之后发出如下的查询语句,请问这一查询语句将完成什么任务? SELECT * CFROM USER_CONS_COLUMNS;
进入题库练习
多选题当数据库开启时,如果需要,Oracle会进行实例恢复,请问以下的哪个Oracle后台进程开启会检查数据的一致性? A.DBWn B.LGWR C.SMON D.PMON
进入题库练习