You are on page 1of 11

Exam Title :

: IBM 000-713 U2 Family Application Development

Version : R6.1

www.Prepking.com

Prepking - King of Computer Certification Important Information, Please Read Carefully


Other Prepking products A) Offline Testing engine Use the offline Testing engine product to practice the questions in an exam environment. B) Study Guide (not available for all exams) Build a foundation of knowledge which will be useful also after passing the exam. Latest Version We are constantly reviewing our products. New material is added and old material is updated. Free updates are available for 90 days after the purchase. You should check your member zone at Prepking and update 3-4 days before the scheduled exam date. Here is the procedure to get the latest version: 1.Go towww.Prepking.com 2.Click on Member zone/Log in (right side) 3. Then click My Account 4.The latest versions of all purchased products are downloadable from here. Just click the links. For most updates,it is enough just to print the new questions at the end of the new version, not the whole document. Feedback If you spot a possible improvement then please let us know. We always interested in improving product quality. Feedback should be send to feedback@Prepking.com. You should include the following: Exam number, version, page number, question number, and your login ID. Our experts will answer your mail promptly. Copyright Each PDF file contains a unique serial number associated with your particular name and contact information for security purposes. So if we find out that a particular PDF file is being distributed by you, Prepking reserves the right to take legal action against you according to the International Copyright Laws. Explanations This product does not include explanations at the moment. If you are interested in providing explanations for this exam, please contact feedback@Prepking.com.

www.Prepking.com

1. Given the following two programs (subroutine is cataloged): PROGRAM MAIN COMMON X X=1 ENTER SUB1 PRINT "X = ":X END SUBROUTINE SUB1 COMMON Y X=2 Y=3 RETURN END

What will be printed when the program MAIN is executed? A. 1 B. 2 C. 3 D. Nothing will be printed Answer: D 2. Given the program segment, after execution what is the value of 'B'? A=3 B = (A = 4) PRINT B A. 0 B. 1 C. 3 D. 4 E. 7 Answer: A 3. Which command will hold the screen cursor in position after accepting user input? A. INPUT X,1 B. INPUT X,1_ C. INPUT X,1: D. INPUTHOLD X Answer: C 4. Which BASIC statement will select the F.CUSTOMERS file using the index built on the CITY attribute? A. SELECT F.CUSTOMERS WITH CITY = "DENVER" B. SELECTINDEX CITY FROM F.CUSTOMERS = "DENVER" C. SELECTINDEX "CITY", "DENVER" FROM F.CUSTOMERS D. SELECT FROM F.CUSTOMERS USING CITY = "DENVER"

www.Prepking.com

Answer: C 5. Which command allows a program to delete a record while retaining it's READU lock? A. REMOVE B. DELETE C. REMOVEU D. DELETEU Answer: D 6. Which conversion code will convert non-printable characters contained in a string to the printable character "." (period) or "~" (tilde)? A. MC B. MP C. MCP D. MCT Answer: C 7. Which command will read a record into a dimensioned array? A. READ B. PARSE C. MATREAD D. MATBUILD Answer: C 8. Given the expression STRING="ABCDEFGHIJKLM", which statement returns the number of attribute marks (? contained in the string? A. DCOUNT(STRING,"?) B. COUNT(STRING,CHAR(253)) C. COUNT(STRING,CHAR(254)) D. DCOUNT(STRING,CHAR(254)) Answer: C 9. Which command will create only the dictionary portion for a file named TEST.FILE? A. CREATE DICT TEST.FILE B. CREATE DICT FILE TEST.FILE C. FILE.CREATE DICT TEST.FILE D. CREATE.FILE DICT TEST.FILE Answer: D 10. Which command will create only the data portion of a file named TEST.FILE? A. CREATE.FILE DATA TEST.FILE

www.Prepking.com

B. FILE.CREATE TEST.FILE DATA C. CREATE DATA FILE TEST.FILE D. CREATE TEST.FILE DATA FILE Answer: A 11. The first field, first position of a data defining dictionary item for a hashed file must contain which value? A. F B. D C. PA D. PQ Answer: B 12. Which field on a D type dictionary item for a hashed data file contains the attribute (field) number? A. 1 B. 2 C. 3 D. 6 Answer: B 13. Which field contains the 'column heading' on a 'I' type or 'V' type dictionary item (attribute) on a hashed file? A. 1 B. 2 C. 4 D. 5 Answer: C 14. The correct entry to affect a left justified column width of 15 characters on a dictionary item is A. 15L B. 15-L C. LEFT-15 D. 15-LEFT Answer: A 15. Which command will create a secondary index on a hashed file named TEST.FILE using the 'NAME' field (attribute)? A. INDEX.CREATE NAME TEST.FILE B. CREATE.INDEX TEST.FILE NAME C. CREATE INDEX NAME TEST.FILE D. CREATE NAME INDEX ON TEST.FILE

www.Prepking.com

Answer: B 16. Which command line will create a secondary index on a file named TEST.FILE using the 'NAME' dictionary to ensure an empty NAME field will not be included in the index? A. INDEX.CREATE TEST.FILE NAME -NULL B. CREATE.INDEX TEST.FILE NAME -EMPTY C. CREATE NO.NULL INDEX TEST.FILE NAME D. CREATE.INDEX TEST.FILE NAME NO.NULLS Answer: D 17. Which option contains the value for field one on a VOC record that defines a PROC? A. PQ B. PC C. PA D. PRC Answer: A 18. To define a PARAGRAPH in a VOC file, which is the correct value for field one? A. PA B. PQ C. PG D. PH Answer: A 19. Which keyword will direct results of the statement "LIST TEST.FILE ATTR1 ATTR2 ATTR3" to the system printer? A. -P B. PTR C. LPTR D. PRINTER Answer: C 20. Which command will create an SQL table named TEST.TABLE? A. CREATE-TABLE TEST.TABLE B. CREATE.TABLE TEST.TABLE C. CREATE TABLE TEST.TABLE D. CREATE-TABLE SQL TEST.TABLE Answer: C 21. When selecting data from a SQL data source, which separator between the attribute names in the SELECT statement is valid?

www.Prepking.com

A. colon (:) B. comma (,) C. space ( ) D. semicolon (;) Answer: B 22. Which command line will sort the TEST.FILE by AMT with highest amount to lowest amount? A. SORT TEST.FILE DSND AMT B. SORT TEST.FILE BY.DSND AMT C. SORT TEST.FILE AMT DESCENDING D. SORT DESCENDING AMT FROM TEST.FILE Answer: B 23. When using Basic SQL Client Interface (BCI), what type of interface is the program connecting to? A. JDBC B. ODBC C. Oracle Client Interface (OCI) D. Microsoft ActiveX Data Objects (ADO) Answer: B 24. Which interface would a BASIC programmer use to read and/or write a remote ODBC data source? A. UDODBC or UVODBC B. Basic SQLConnect (BSC) C. UniObjects for Java (UOJ) D. Basic SQL Client Interface (BCI) Answer: D 25. Which the variable SUB equal to "SUB1", which statement will call the external subroutine SUB1? A. CALL SUB B. CALL @SUB C. CALL @SUB1 D. CALL "SUB" Answer: B 26. Given the following programs (subroutine is cataloged) PROGRAM MAIN X=1 Y=2 CALL SUB1(Y) PRINT X,Y SUBROUTINE SUB1(Z) X=2 Y=2 Z=1 RETURN

www.Prepking.com

END END

Running program MAIN will print what values for X and Y? A. 1 for X and 1 for Y B. 1 for X and 2 for Y C. 2 for X and 1 for Y D. 2 for X and 2 for Y Answer: A 27. Multiple arguments in an external subroutine call must be separated by a A. comma B. space C. period D. value mark Answer: A 28. Which command will execute an externally cataloged subroutine? A. CASE B. CALL C. GOSUB D. PERFORM Answer: B 29. Which command performs a call to an internal subroutine? A. CALL B. CHAIN C. GOSUB D. EXECUTE Answer: C 30. Which command executes reiteration of a LOOP statement? A. END B. NEXT C. RETURN D. REPEAT Answer: D 31. Which modifier increments a FOR/NEXT loop variable by two? A. NEXT 2 B. STEP 2 C. PRECISION 2

www.Prepking.com

D. variable = 2 Answer: B 32. Under what condition would the ELSE clause be taken in the following IF/THEN statement? IF A < 10 THEN GOTO para1 ELSE GOTO para2 A. Variable A is 5 B. Variable A is 15 C. Variable A is empty D. Variable A is undefined Answer: B 33. Which line of code represents the default answer on a CASE statement? BEGIN CASE CASE A = 3 ; GOSUB ABC CASE A = 5 ; GOSUB GHI CASE 1 END CASE A. CASE 1 B. CASE A=5 C. END CASE D. CASE DEFAULT Answer: A 34. At which level is file access controlled? A. BASIC run option level B. PAragraph and Proc level C. BASIC compile options level D. operating system level through permissions and policies Answer: D 35. Which additional operator denotes inequality in a BASIC program statement other than '#', '<>', 'NE'? A. ! B. LE C. >< D. SELECT Answer: C 36. Which BASIC statement will combine multiple conditions for a Boolean expression where all conditions must be true? A. condition 1 ! condition 2 ; GOSUB DEF

www.Prepking.com

B. condition1 OR condition2 AND condition3 C. (condition 1 * condition2) OR (condition 3) D. expression1 > value1 AND expression2 = value2 Answer: D 37. Which operator is used to compare if two string variables have exactly the same pattern? A. <> B. LIKE C. GOSUB D. MATCHES Answer: D 38. Which BASIC statement compares two variables and will be true if the variables have the same patterns? A. var1 = var2 B. IF var1 <> var2 THEN ... C. ON result GOSUB 10 20 30 40 D. IF var1 MATCHES var2 THEN ... Answer: D 39. In the following statement the THEN clause will be performed under which condition? IF var1 > var2 THEN GOSUB xxx ELSE GOSUB yyy A. If var1 is equal to var2 B. If var1 is less than var2 C. If var1 is greater than var2 D. If var2 is greater than or equal to var1 Answer: C 40. What is the result of a logical operation? A. Result is equal to B. Result is less than C. Result is greater than D. Result is true or false Answer: D 41. Given the code segment, what is the value of C after line 3 executes? 001 A = 4 002 B = 3 003 C = ((A > B) * (B <> A)) + B A. 3

www.Prepking.com

100% Pass Guaranteed or Full Refund Word to Word Real Exam Questions from Real Test Buy full version of exam from this link below http://www.prepking.com/000-713.htm

You might also like