Compilation fails.
Nothing is added to the file system.
Only a new file is created on the file system.
Only a new directory is created on the file system.
Both a new file and a new directory are created on the file system.
第1题:
A.A file system cannot be mounted on a directory containing data.
B.Mounting a file system on a mount point containing data will delete the data.
C.Mounting a file system on a amount point containing data will make the data temporarily inaccessible.
D.A systems administrator must manually create an empty directory prior to mounting an AIX JFS.
第2题:
Which statements are true, given the code new FileOutputStream("data", true) for creating an object of class FileOutputStream?()
第3题:
A file named "core" exists in the current directory. Which of the following commands should be used to determine what created the "core" file?()
第4题:
Given a portion of a valid Java EE web application’s directory structure:MyApp | |--Directory1 ||--File1.html| |--META-INF| |--File2.html| |--WEB-INF |--File3.html You want to know whether File1.html, File2.html,and/or File3.html is protected from direct access by yourweb client’s browsers. What statement is true?()
第5题:
10. class MakeFile { 11. public static void main(String[] args) { 12. try { 13. File directory = new File(”d”); 14. File file = new File(directory,”f”); 15. if(!file.exists()) { 16. file.createNewFile(); 17. } 18. } catch (IOException e) { 19. e.printStackTrace 20. } 21. } 22. } The current directory does NOT contain a directory named “d.” Which three are true?()
第6题:
Examine the following command; ALTER SYSTEM SET enable_ddl_logging = TRUE; Which statement is true?()
第7题:
In which of the following scenarios is a tablespace recovery required?()
第8题:
dump -t core
strings core
trace -a core
crash core /unix_up
第9题:
Boolean exists=Directory.exists (“prefs”);
Boolean exists=(new File(“prefs”)).isDir();
Boolean exists=(new Directory(“prefs”)).exists();
Boolean exists=(new File(“prefs”)).isDirectory();
Boolean exists=true; Try{ Directory d = new Directory(“prefs”); } catch (FileNotFoundException e) { exists = false; }
第10题:
Compilation fails.
Nothing is added to the file system.
Only a new file is created on the file system.
Only a new directory is created on the file system.
Both a new file and a new directory are created on the file system.
第11题:
when recovering a lost read-only tablespace from a read-only tablespace backup
when recovering a lost read-only tablespace from a read-write tablespace backup when the database is running in ARCHIVELOG mode
when recovering a lost read-only tablespace from a read-write tablespace backup when the database is running in NOARCHIVELOG mode and the changes in the online redo log files have been overwritten
when recovering a lost read-only tablespace from a read-only tablespace backup using the backup of the control file, the control file was created using the ALTER DATABASE BACKUP CONTROLFILE TO TRACE statement, and this statement was issued when the tablespace was read-only
第12题:
FileOutputStream has no constructors matching the given arguments.
An IOExeception will be thrown if a file named data already exists.
An IOExeception will be thrown if a file named data does not already exist.
If a file named data exists, its contents will be reset and overwritten.
If a file named data exists, output will be appended to its current contents.
第13题:
Given a portion of a valid Java EE web application’s directory structure: MyApp | |-- File1.html | |-- Directory1 ||-- File2.html| |-- META-INF |-- File3.html You want to know whether File1.html, File2.html, and/or File3.html will be directly accessible by your webclient’s browsers. Which statement is true?()
第14题:
A user is attempting to access files shared on a remote computer. The file share permissions allow the user to have full control; however, the NTFS permissions allow the user to have read access. Which of the following is the user’s resulting access level for the remotely shared directory?()
第15题:
Which determines if “prefs” is a directory and exists on the file system?()
第16题:
Given that file is a reference to a File object that represents a directory, which code fragments will succeed in obtaining a list of the entries in the directory?()
第17题:
Examine the following command:ALTER SYSTEM SET enable_ddl_logging=FALSE;Which statement is true?()
第18题:
Given the following directory structure: bigProject |--source ||--Utils.java| |--classes |-- And the following command line invocation: javac -d classes source/Utils.java Assume the current directory is bigProject,what is the result?()
第19题:
In which scenario will you issue the following command?() SQL> RECOVER DATABASE UNTIL TIME ’2005-10-04 : 12:09:08’ USING BACKUP CONTROLFILE;
第20题:
when all the control files are missing and only a binary backup of the current control file exists
when a multiplexed copy of the current control file is missing
when all the control files are missing and only a script containing the CREATE CONTROLFILE statement exists
when the SPFILE is missing
第21题:
If the compile is successful, Utils.class is added to the source directory.
The compiler returns an invalid flag error.
If the compile is successful, Utils.class is added to the classes directory.
If the compile is successful, Utils.class is added to the bigProject directory.
第22题:
Modify
Full control
Write
Read
第23题:
A file system cannot be mounted on a directory containing data.
Mounting a file system on a mount point containing data will delete the data.
Mounting a file system on a amount point containing data will make the data temporarily inaccessible.
A systems administrator must manually create an empty directory prior to mounting an AIX JFS.
第24题:
Vector filelist = ((Directory) file).getList();
String[] filelist = file.directory();
Enumeration filelist = file.contents();
String[] filelist = file.list();
Vector filelist = (new Directory(file)).files();