A.diag
B.cfgmgr
C.errlog
D.errlogger
第1题:
A. LOG_HISTORY
B. JOB_LOG_RETENTION
C. WINDOW_LOG_RETENTION
D. WHICH_LOG
E. LOG_NAME
第2题:
A、/var/log/boot.log
B、/var/log/xferlog
C、/var/log/wtmp
D、/var/run/utmp
第3题:
A. /var/log/dmesg
B. /var/log/messages
C. /var/log/public
D. /var/run/utmp
第4题:
A、/var/log/lastlog
B、/var/log/wtmp
C、/var/log/btmp
D、/var/run/utmp
第5题:
A. Run c -l 0?from the command line.Run ?c -l 0?from the command line.
B. Invoke SMIT for the shell environment.
C. Run the SC + H?combination at the command prompt.Run the ?SC + H?combination at the command prompt.
D. Use a rep?command with its UID against the /var/log/history_cmds file.Use a ?rep?command with its UID against the /var/log/history_cmds file.
第6题:
题示代码的功能为:循环遍历输出Map当中的每一个元素。《插入代码》处应填入的代码是()Map map=new HashMap(); map.put(“jessica”,100); map.put(“tom”,200); map.put(“den”,300); Set《插入代码1》 set =《插入代码2》; for (《插入代码3》 per : set) { System.out.println(per.getKey() + ":" + per.getValue()); }
A.<Entry> map.keySet() Entry#B.<Entry> map.entrySet() Entry#C.<Map.Entry<String, Integer>> map.keySet() Map.Entry<String, Integer>#D.<Map.Entry<String, Integer>> map.entrySet() Map.Entry<String, Integer>