|
Question 1. The system volumes are being backed up twice a week Data volumes are backed up four times a day CDP is used for critical data only Data change rate is 1-3% daily Data is kept for three months Compressible data will only be compressed at the disaster recovery site What is an appropriate amount of disk space to start with in the repository? A. half the disk space available B. the same size as the protected data space C. three to five times the protected data space D. one and a half times the protected data space Answer: C Question 2. A customer wants to back up three Microsoft Exchange servers with IBM Tivoli Storage Manager FastBack (TSM FastBack), but does not have a requirement to use individual item restore of items in any of their Microsoft Exchange servers. Each Microsoft Exchange server has four cores and they will all back up to the same TSM FastBack server. The TSM FastBack server also has four cores. In this configuration, what are the minimum TSM FastBack products required by the customer? A. The customer will need a TSMFastBack server, and three TSM FastBack clients. B. The customer will only need TSMFastBack for Exchange, and TSM FastBack server. C. The customer will need TSMFastBack for Exchange for use on the TSM FastBack server. D. The customer will need TSMFastBack for Exchange, and TSM FastBack Disaster Recovery. Answer: A Question 3. What is the last step to be taken for a dissimilar hardware bare machine recovery (BMR)? A. erase theFastBack.conf file location in boot drive root directory B. reboot the target server after restoring with the BMR Recovery CD C. restart the IBM Tivoli Storage Manager FastBack Manager task with the active flag D. change the host name from IBM Tivoli Storage ManagerFastBack BMR to the source system host name Answer: B Question 4. When performing an e-mail restore using Simple Mail Transfer Protocol (SMTP), why is there a prompt to provide a sender e-mail address? A. The restore will fail if the address is not included. B. A reference point for the source is always required in order to send the e-mail. C. The e-mail address for the sender is identified as the source address for any restored e-mail messages. D. Some SMTP servers require a valid sender e-mail address to authenticate the user and accept the e-mail. Answer: D Question 5. How can the configuration of the FTP Server be tested? A. Use the IBM Tivoli Storage ManagerFastBack Client Configurator to force an immediate data replication operation. B. Use IBM Tivoli Storage ManagerFastBack Mount to schedule a near-term replication operation, then attempt to mount the replicated volume. C. Launch the IBM Tivoli Storage ManagerFastBack Manager interface, access the DR Configuration tab, and click the Test Configuration button. D. Open a command prompt on the Disaster Recovery (DR) Hub Server and attempt to use FTP to connect to the IBM Tivoli Storage ManagerFastBack Server. Answer: C Question 6. An IBM Tivoli Storage Manager FastBack (TSM FastBack) protected server (\\Server_27.mycompany.com, 192.168.0.20) has suffered a hardware failure of the primary operating system drive. A similar replacement drive is found and installed. A Bare Machine Recovery (BMR) CD has been created and tested on this server prior to the failure. The TSM FastBack server is named Austin_FB and has an IP address of 192.168.0.55. Now it is time to start the restore of the system OS drive. The administrator enters the name of the repository share as \\Austin_FB\FB_REP_E and OK. An error message is returned that \\Austin_FB\FB_REP_E is not a valid repository. The administrator re-enters the repository share as \\192.168.0.55\FB_REP_E and connects. What is the problem? A. The Repository share was wrong. B. The CD was bad and should be re-built. C. The BMR client requires all repository locations to be entered with their IP address. D. The DNS name was not resolved. Check the DNS IP address as entering the BMR client. Answer: D Question 7. Which information is displayed when right-clicking the snapshot in the Snapshots Monitor display and choosing events for a specific job? A. only failed jobs and their status B. start times and estimated duration C. every event that occurs while the job is in progress D. whether any unusual events have occurred while the job is in progress Answer: D Question 8. Which two options describe Microsoft Exchange data restore levels? (Choose two.) A. File B. Block C. Subfile D. Mailbox E. Message Answer: D, E Question 9. How is a disk removed from the IBM Tivoli Storage Manager FastBack (TSM FastBack) repository? A. A disk cannot be removed from the repository once it has been used. B. Stop TSMFastBack server, move the repository files to another disk, update the TSM FastBack configuration file, and restart the TSM FastBack server. C. Select Remove from repository (with snapshot relocation) using the TSMFastBack Server Manager tool, and the server will move the files in the repository automatically. D. Select Remove from repository (with snapshot relocation) using the TSMFastBack Server Manager tool, stop TSM FastBack Server, move the repository files to another disk, and restart TSM FastBack server. Answer: C Question 10. Each snapshot has an icon showing its present status. Which information can be obtained by simply viewing the icon next to the snapshot? A. Snapshot is cancelled. B. Repository out of space condition exists. C. Continuous Data Protection process is pending. D. Continuous Data Protection Snapshot has completed successfully. Answer: D
|
Question 1. Given the code in the exhibit. What is the result? A. Compilation fails B. An exception is thrown at runtime. C. An instance of Forest is serialized. D. An instance of Forest and an instance of Tree are both serialized. Answer: B Question 2. Which code, inserted ay line 14, will allow this class to correctly serialized and desterilize? A. S. default ReadObject ( ); B. This = s.defaultReadObject ( ); C. Y = s. default ( ) ; x = s.readInt ( ); D. X = s. readInt; y = s. readInt ( ); Answer: D Question 3. Given the exhibit. What is the result? A. 0 B. 1 C. 4 D. Compilation fails E. An exception is thrown at runtime Answer: D Question 4. Given the exhibit: The variable df is an object of type Date Format that has been initialized in line 11. What is the result if this code is run on December 14,2000? A. The value of S is 14 - dic-2004 B. The value of S is Dec 14, 2000 C. An exception is thrown at runtime D. Compilation fails because of an error in line 13. Answer: D Question 5. DRAG DROP The does File Exist method takes an array of directory names representing a path from the root file system and a file name. The method returns true if the file exists, fast if does not. Place the code fragments in position to complete this method. Answer: Explanation: Example code: import java.io.*; public class test2 { public static void main(String []a){ test2 t = new test2(); String []d = new String[2]; d[0] = "C:"; System.out.println(t.doesFileExist(d,"test")); } public boolean doesFileExist(String []directories,String filename){ String path = ""; for(String dir: directories){ path = path +File.separator+dir; //path = path.getSubdirectory(dir); } System.out.println(path); File file = new File(path,filename); return file.exists(); }} Question 6. DRAG DROP Given: System.out.printf("Pi is approximately %f and E is approximately %b", Math.PI, Math.E); Place the values where they would appear in the output. Answer: Question 7. When comparing java. Io. Buffered Writer to java.io.File Writer, which capability exist as a method in only one of the two? A. closing the stream B. flushing the stream C. writing to the stream D. marking a location in the stream E. writing a line separator to the stream Answer: E Question 8. Given the exhibit: Which two code fragments, inserted independently at line 3, generate the output 4247? (choose two) A. String s = "123456789" S. = (s-"123").replace (1,3, "24") - "89"; B. StringBuffer s = new StringBuffer ("123456789"); S.delete (0,3) replace(1,3,"24"). Delete (4,6) C. StringBuffer s = new StringBuffer ("123456789"); S.substring (3,6).delete(1,3). insert (1, "24"). D. StringBuilder s = new StringBuilder ("123456789"); S.substring (3,6) delete (1,2). insert (1, "24") E. StringBuilder s = new StringBuilder ("123456789"); S.delete (0,3) replace(1,3,). Delete (2,5) insert (1, "24") Answer: B, E Question 9. Which three statements concerning the use of the java . io. Realizable interface are true? (choose three) A. Object from classes that use aggregation cannot be serialized. B. An object serialized on one JVM can be successfully desterilized on a different JVM. C. The values in fields with the Volatile modifier will NOT survive serialization and deserialization D. The values in field with the transient modifier will NOT survive serialization and deserialization E. It is legal to serialize an object of a type that has a supertype that does NOT implement java .io.Serialization Answer: B, D, E Question 10. Given the exhibit: What is the result? A. short Long B. SHORT LONG C. Compilation fails D. An exception is thrown at runtime Answer: C Question 11. Given the exhibit: * D is valid , non-null Dateobject * df is a valid, non-null DateFormat object set to the current local What outputs the current ; local's country name and the appropriate version of d's date? A. Local loc = Local.getLocal ( ); System.out printIn (loc.getDisplayCountry ( ) B. Local loc = Local.getDefault ( ); System.out printIn (loc.getDisplayCountry ( ) + " " " +df. Format (d) ); C. Local loc = Local.getLocal ( ); System.out printIn (loc.getDisplayCountry ( ) + " " +df. setDateFormat (d) ) ; D. Local loc = Local.getDefault ( ); System.out printIn (loc.getDisplayCountry ( ) + " " +df.seDateFormat (d) ); Answer: B
Copyright © 2004 CertsBraindumps.com Inc. All rights reserved.