|
Question |
Rating |
View Answer |
 |
Using the XCLI, which qualifiers are required to create a thin provisioned pool?
A. pool, hard size, soft size, snapshot size B. pool, hard size, soft size, read block behavior C. pool, resize allowed, maximum volumes, maximum snapshots D. pool, read block behavior, maximum volumes, maximum snapshots |
|
View Answer |
 |
A customer is planning to create a non-hosted Linux partition on an i825. Linux will have only direct-attach devices. What is the Linux console option?
A Use OS/400 VNC support. B Telnet to the virtual console. C Share the primary partitions console. D Allocate a console IOA to the Linux partition.
|
|
View Answer |
 |
A VM/VSE customer wants to implement a WAS on an existing zSeries server. On which of the following operating environments would WAS best be implemented?
A. VSE B. z/VM C. z/OS D. Linux
|
|
View Answer |
 |
Given the following statements from two embedded SQL programs: Program 1: CREATE TABLE mytab (col1 INT, col2 CHAR(24)) COMMIT Program 2: INSERT INTO mytab VALUES( 20989,�Joe Smith�) COMMIT INSERT INTO mytab VALUES( 21334,�Amy Johnson�) DELETE FROM mytab COMMIT INSERT INTO mytab VALUES( 23430,�Jason French�) ROLLBACK INSERT INTO mytab VALUES( 20993,�Samantha Jones�) COMMIT DELETE FROM mytab WHERE col1=20993 ROLLBACK Assuming Program 1 ran to completion and then Program 2 ran to completion, which of the following records would be returned by the statement: SELECT * FROM mytab? A.20989, Joe Smith B.21334, Amy Johnson C.23430, Jason French D.20993, Samantha Jones E.No records are returned. |
|
View Answer |
 |
A z10 customer has numerous Unix servers, a large number of Windows servers, and an unidentified number of small department servers that were acquired outside of IT influence. The CIO wants to know how much they are currently spending on IT company wide and determine if software licenses are managed correctly. Which of the following approaches would provide that information?
A. Perform a TCO analysis B. An internal review, department by department C. Review of IT department expense items D. Interview all department heads
|
|
View Answer |
 |
Given the following two tables: TAB1 TAB2 C1 C2 CX CY ญญญญญญ ญญญญญ ญญญญญ ญญญญญญ A 11 A 21 B 12 C 22 C 13 D 23 The following results are desired: C1 C2 CX CY ญญญญญญ ญญญญญ ญญญญญ ญญญญญญ A 11 A 21 B 12 ญ ญ C 13 C 22 Which of the following joins will yield the desired results? A.SELECT * FROM tab1 INNER JOIN tab2 ON c1=cx B.SELECT * FROM tab2 LEFT OUTER JOIN tab1 ON c1=cx C.SELECT * FROM tab2 FULL OUTER JOIN tab1 ON c1=cx D.SELECT * FROM tab1 LEFT OUTER JOIN tab2 ON c1=cx |
|
View Answer |
 |
Where are table spaces (tblspaces) created?
A. in dbspaces B. in pages C. in extents D. in chunks
|
|
View Answer |
 |
Given that the following statements were executed in order: CREATE TABLE tab1 (c1 CHAR(1))
INSERT INTO tab1 VALUES (�b�) CREATE VIEW view1 AS SELECT c1 FROM tab1 WHERE c1 =�a� INSERT INTO view1 VALUES (�a�) INSERT INTO view1 VALUES (�b�) How many rows would be returned from the following statement? SELECT c1 FROM tab1 A.0 B.1 C.2 D.3
|
|
View Answer |
 |
When using the SAN Volume Controller (SVC) as a host for a full 15 module XIV Storage System, how many ports are recommended to be connected to the SVC?
A. 8 B. 12 C. 16 D. 24
|
|
View Answer |
 |
The manager of the IT department indicates that their company is pursuing a website expansion because of growing e-business sales. Which of the following people will be able to provide the necessary information to perform ROI analysis for this project?
A. Webmaster B. Office manager C. Marketing manager D. Purchasing manager
|
|
View Answer |
 |
Which two of the following SQL data types should be used to store a small binary image? A.CLOB B.BLOB C.VARCHAR D.GRAPHIC E.VARCHAR FOR BIT DATA
|
|
View Answer |
 |
Which of the following describes an advantage that Linux on iSeries brings to an enterprise?
A Runs all Linux binaries unchanged B Server consolidation with support for dynamic resource allocation C Support for high capacity tape drives not otherwise available to Linux D Provides dedicated, RAID-5 protected, disk drives from OS/400 controlled disk lOAs
|
|
View Answer |
 |
A Linux partition running in a non-hosted environment has only a QIC50GB tape drive. They need to send a tape of data to a vendor in LTO format to be loaded onto a UNIX system, but the only LTD drive they have is attached to an i5/OS partition. Which of the following will accomplish this goal?
A Create an LTD format tape on the QIC50GC drive and have this tape duped onto a LTO drive. B Save the data to disk, FTP it to the iSeries, and use the SAV command to save it to the LTO drive. C In the i5/OS partition, change the LTO tape drive device description to shared by changing the Device Model to *VRT. D Create a NWSD in the i5/OS partition to control the Linux partition. Shut down the Linux partition, vary on the NWSD, and vary off the tape drive.
|
|
View Answer |
 |
Given the SQL statement: ALTER TABLE table1 ADD col2 INT WITH DEFAULT Which of the following is the result of the statement? A.The statement fails because no default value is specified. B.A new column called COL2 is added to TABLE1 which would have a null value if selected. C.A new column called COL2 is added to TABLE1 which would have a value of zero if selected. D.A new column called COL2 is added to TABLE1 which would require the default value to be set before working with the table.
|
|
View Answer |
 |
A unit of work is using an isolation level of Read Stability. An entire table is scanned twice within
the unit of work. Which of the following can be seen on the second scan of the table? A.Rows removed by other processes B.Rows added to a result set by other processes C.Rows changed in a result set by other processes D.Rows with uncommitted changes made by other processes
|
|
View Answer |
 |
A customer is attempting to determine what failed during the last boot sequence of the Linux partition. Which of the following can be used to determine the error condition?
A /var/log/messages B /proc/startup C /usr/sbin/log D /etc/boot
|
|
View Answer |
 |
Which of the following commands will format a new disk drive partition in Linux on iSeries?
A mkts -e2 <path to device> B mkfs.ext2 <path to device> C mkfs -ext2 &It;path to device > D mkfs format -e2 <path to device>
|
|
View Answer |
 |
Given the following SQL statements: CREATE TABLE birthday1 (day INT CHECK(day BETWEEN 1 AND 31), month INT CHECK(month BETWEEN 1 AND 6), year INT) CREATE TABLE birthday2 (day INT CHECK(day BETWEEN 1 AND 31), month INT CHECK(month BETWEEN 7 AND 12), year INT) CREATE VIEW birthdays AS SELECT * FROM birthday1 UNION ALL SELECT * FROM birthday2 INSERT INTO birthday1 VALUES( 22,10, 1973) INSERT INTO birthday1 VALUES( 40, 8, 1980) INSERT INTO birthday1 VALUES( 8, 3, 1990) INSERT INTO birthday1 VALUES( 22, 10, 1973) INSERT INTO birthday1 VALUES( 3, 3, 1960) What will be the result of the following SELECT statement? SELECT COUNT(*) FROM birthdays A.0 B.2 C.3 D.5D.5
|
|
View Answer |
 |
Which of the following Service Tools User Profiles is restricted from connecting to the Linux console?
A QSRV B QSECOFR C 11111111 D 22222222
|
|
View Answer |
 |
Certkiller .com has a fully utilized i810 Enterprise Edition. They like their applications and now need to add e-mail and collaboration capabilities for their remote offices. Which of the following will meet the customer�s needs?
A. Uprgrade the i810 to an IBM eServer i5 570 Value Edition and add Lotus Domino. B. Upgrade the i810 to an IBM eServer i5 520 Enterprise Edition and add Lotus Domino. C. Upgrade the i810 to an IBM eServer i5 520 Value Edition and add Lotus Notes and Quickplace. D. Upgrade the i810 to an IBM eServer i5 520 Standard Edition and add Lotus Domino and Instant Messaging.
|
|
View Answer |