You are on page 1of 20

http://www.TwPass.

com

000-134
IBM
Rational Business Developer v7.1

http://www.twpass.com/twpass.com/exam.aspx?eCode= 000-134

The 000-134 practice exam is written and formatted by Certified Senior IT Professionals working in today's prospering companies and data centers all over the world! The 000-134 Practice Test covers all the exam topics and objectives and will prepare you for success quickly and efficiently. The 000-134 exam is very challenging, but with our 000-134 questions and answers practice exam, you can feel confident in obtaining your success on the 000-134 exam on your FIRST TRY! IBM 000-134 Exam Features - Detailed questions and answers for 000-134 exam - Try a demo before buying any IBM exam - 000-134 questions and answers, updated regularly - Verified 000-134 answers by Experts and bear almost 100% accuracy - 000-134 tested and verified before publishing - 000-134 exam questions with exhibits - 000-134 same questions as real exam with multiple choice options Acquiring IBM certifications are becoming a huge task in the field of I.T. More over these exams like 000-134 exam are now continuously updating and accepting this challenge is itself a task. This 000-134 test is an important part of IBM certifications. We have the resources to prepare you for this. The 000-134 exam is essential and core part of IBM certifications and once you clear the exam you will be able to solve the real life problems yourself.Want to take advantage of the Real 000-134 Test and save time and money while developing your skills to pass your IBM 000-134 Exam? Let us help you climb that ladder of success and pass your 000-134 now!

000-134

QUESTION: 1 Which choice is a valid stereotype for a record?

A. Array B. CSV C. ExternalType D. Form Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=1


-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 2 ProgramA calls ProgramB. Both programs access a relational database. What is the primary difference between the EGL system variables sqlLib.sqlData and sysVar.sqlData?

A. sqlLib.sqlData and sysVar.sqlData are interchangeable and always have the same values. B. sqlLib.sqlData contains all the available information from the SQLCA; sysVar.sqlData only contains the SQLCOD E. C. The scope of sysVar.sqlData is local to each program; the scope of sqlLib.sqlData is global so that both ProgramA and ProgramB can access the results of the most recent SQL I/O statement regardless of which program the I/O occurred in. D. There is no system variable named sqlLib.sqlData. Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=2
-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 3 Which statement demonstrates how to call a DB2 Stored Procedure passing three parameters and returning a result set?

A. call storedProcedureName (parm1, parm2, parm3); B. execute #sql {call storedProcedureName(parm1, parm2, parm3)}; C. open resultSetID with #sql {call storedProcedureName (:parm1, :parm2, :parm3)}; D. The current implementation for EGL only supports calling DB2 Stored Procedures for Insert/Update/Delete. Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=3
-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 4 Which EGL statement demonstrates the correct way to initialize a dynamic array of integers so

that the first element has the value 3?

A. myArray INT =3; B. myArray INT[] =3; C. myArray INT[3]; D. myArray INT[3] =3; Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=4
-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 5 Which EGL move statement is valid?

A. move RECORDA to RECORDB byByte; B. move RECORDA to RECORDB byPosition; C. move RECORDA to RECORDB with VAGenCompat; D. move RECORDA to RECORDB for INDEX1 to INDEX2; Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=5
-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 6 What is the BEST technique to retrieve SQL data in the situation where there might be hundreds of rows that satisfy the criteria for the WHERE clause?

A. An open statement with the multipleRows option B. An open statement followed by a loop of get next statements to retrieve all the rows C. A get statement with implicit SQL to retrieve all the rows into a dynamic array D. A get statement with a customized SQL WHERE clause and set boundaries for the retrieve using the SQL BETWEEN predicate Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=6
-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 7 Which choice is ONLY supported in generated COBOL programs?

A. DL/I access B. Text forms C. BIRT reports D. eliminatesystemdependentcode build descriptor option Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=7
-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 8

Which statement is true about the linkage options part?

A. The callLink element provides details on how a call statement is to be implemented when calling a particular program, but has no effect on generation for the called program. B. The fileLink element provides details on whether to use remote MQ queues. C. The transferToProgram element provides details on how a transfer to program statement is to be implemented when transferring control to a particular program. D. The transferToTransaction element provides details on how a transfer to transaction statement is to be implemented when transferring control to a particular transaction in transactional environments such as CICS, but has no effect on generation of programs for nontransactional environments. Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=8
-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 9 An EGL application running in a stateless environment (Web, CICS, or IMS) has presented data to the user for update. What is the BEST way to update an SQL row containing many columns if there is a chance that some other user could change the data?

A. Reread the row before the update and ensure all columns are the same as before the data was presented to the user B. Reread the row and compare some column that is known to be changed on every update (a timestamp, for example) C. Lock the row across the user think time so no one else can change it D. Just update the row as quickly as possible Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=9
-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 10 Which method is used to create and update code templates?

A. click the Windows > Preferences > EGL menu B. press Ctrl+T to bring up a template editor during an EGL edit session C. right-click within an EGL edit session and then click the Create Template option D. add the Template view to any perspective and then use the menus to create or update code templates for this view Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=10
-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 11 Which statement is true about the EGL Deployment Descriptor file?

A. It is the same as the J2EE Deployment Descriptor file. B. It is the same as the EGL Build Descriptor file. C. It is a part within the EGL Build Descriptor file and is used to define the access to and from EGL Web services. D. It is a file used to describe how an EGL service is exposed to other applications or how an external service is used. Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=11
-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 12 Which situation requires that an import statement be specified when using an EGL record part as a type definition for a variable?

A. When the variable is declared outside of the file that the record was created in B. When the variable is declared outside of the package that the record was created in C. When the variable is declared outside of the project that the record was created in D. Every time a variable is declared regardless of where the record was created Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=12
-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 13 How must a function be defined in the corresponding JSF handler for it to be listed in the Page Data view?

A. Public with no parameters B. Public with at least one parameter C. Private with no parameters D. Private with at least one parameter Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=13
-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 14 Which validation property runs last?

A. inputRequired B. validatorDataTable C. validatorFunction D. validValues Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=14


-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 15 Which DataItem declaration is valid?

A. DataItem SALARY MONEY(7,2) {euro = yes} end B. DataItem PHONE STRING {upperCase = yes } end; C. DataItem AGE INT {numericSeparator = yes }; D. DataItem NAME CHAR(10) {inputRequired = yes} end Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=15
-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 16 A programmer wants to see specific data values being passed between generated Java and a called RPG program running on System i on the system console. Which combination of properties in the web.xml or the rununit.properties files should the programmer set?

A. vgj.trace.type = -1 and vgj.trace.device.option = 0 B. vgj.trace.type = 512 and vgj.trace.device.option = 0 C. vgj.trace.type = 16, and vgj.trace.device.option = 2 D. vgj.trace.device.option = 1 Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=16
-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 17 Which statement about Retrieve SQL support in EGL is FALSE?

A. An EGL SQL preference specifies the EGL primitive type used when defining columns that contain SQL character data. B. An EGL SQL preference specifies the case used for defining EGL variable names. C. The EGL keyItems property is always set automatically based on the SQL column definitions. D. The EGL tableNames property is always set automatically based on the SQL database definition. Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=17
-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 18 Which element CANNOT be included in a function?

A. A return type B. Another function C. A set of parameters D. A set of local variables Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=18
-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 19 If an EGL-generated COBOL program running in CICS transfers to a non-EGL CICS program, in which language(s) can the non-EGL program be written?

A. COBOL only B. COBOL or Assembler only C. COBOL, Assembler, PL/I, or RPG D. Any language that runs under CICS Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=19
-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 20 With respect to EGL projects, which technique allows ProjectA to use code from ProjectB during development and also at runtime for generated Java programs?

A. ProjectB must be added to the EGL Build Path for ProjectA. B. ProjectA must be added to the EGL Build Path for Project B. C. ProjectB must be added to the EGL Build Path and the Java Build Path for ProjectA. D. ProjectA must be added to the EGL Build Path and the Java Build Path for ProjectB. Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=20
-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 21 What is always required when an administrator uses EGLSDK to generate an EGL program?

A. Specify the genProject build descriptor option B. Set the EGL Build Path for each project in the workspace C. Create an .xml command file to specify the information necessary for generation D. Create a directory that contains all the projects and parts that are needed for generation Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=21
-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 22 Which statement is true about features such as EGL with LDAP Support or EGL with lowlevel MQ API support that a programmer includes while creating a new EGL project?

A. The features cannot be removed later. B. The features can be removed at any time. C. The features can be disabled but not removed. D. The features can only be replaced by other features.

Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=22
-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 23 Which step is required for a Web application to run in multiple human languages such as English and German?

A. Include the <default-locale> tag in the web.xml file B. Bind each translatable JSF field to the corresponding EGL variable C. Create a resource bundle for each language in the WebContent/WEB-INF folder of the project D. Set the DisplayName property for fields in the JSF handler to a value in the form myFieldKey% Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=23
-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 24 One of several programs in an EGL project requires a different build descriptor option from the other programs in the same project. What is the BEST way to specify the different build descriptor option?

A. Generate the program using Generate With Wizard and override the build descriptor option in the wizard B. Use a master build descriptor plugin.xml file to control which build descriptor part is used for each program C. Move the program to a different project so that all programs in each project use the same default build descriptor part D. Create a build descriptor part for the program and specify it in the EGL Default Build Descriptors for the program Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=24
-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 25 A programmer needs to reference SQL derived data using aggregate functions like COUNT, scalar functions like DIGITS or CONCAT, or SQL operators like || in a SELECT statement. Which technique provides the needed capability?

A. In the SQLRecord definition, customize the column property for the field to include the SQL expression B. In the SQLRecord definition, use the asExpression property to override the default SQL column name at runtime C. In the EGL Editor, use SQL Statement > Add to create explicit SQL and then change the SELECT statement

D. This cannot be done using EGL. Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=25


-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 26 At runtime, what is the correct way to dynamically change the system name of a serial file that is accessed through EGL?

A. Specify the EGL fileName property of the serial file B. Set the resourceAssociation property of the variable of type serialFile C. Use an EGL assignment statement to set recordVariableName.resourceAssociation for the serial file D. You cannot do this; all serial files must be statically bound in their Resource Association. Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=26
-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 27 Which choice is NOT a category of preferences that can be set for the EGL Editor using Window > Preferences > EGL > Editor?

A. Folding B. Formatter C. Source Styles D. SQL Database Connections Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=27


-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 28 When developing services, what is the correct technique for relating the EGL build descriptor part and the EGL Deployment Descriptor file to one another?

A. Set the EGL properties for the project to specify both the EGL build descriptor part and the EGL Deployment Descriptor file B. Set the buildPart option in the EGL Deployment Descriptor file to point to the EGL build descriptor part C. Set the deploymentDescriptor build descriptor option in the EGL build descriptor part to point to the EGL Deployment Descriptor file D. The EGL build descriptor part and the EGL Deployment Descriptor file are not related. Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=28
-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 29 What are two reasons that a 404 Server Error (Page Not Found) might occur when trying to run a JSP or render a page? (Choose two.)

A. There was an undetected syntax error in a JSF handler, and as a result the Java bean was never generated. B. The EGL get statement returned zero rows from an SQL table to an array bound to a JSF DataTable. C. The project contained an error, and the EAR file was not published. D. The name of the array bound to a JSF DataTable was changed in the JSF handler after it had been bound to a control on the page. E. An EGL function was added to a library and saved, but the library was not generated. Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=29
-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 30 EGL-generated Java programs can call EGL-generated COBOL programs that run on other platforms. Which platform is NOT valid for the remote program when using Rational Business Developer V7.1?

A. IMS/VS B. ISERIES C. ZOSBATCH D. ZOSCICS Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=30


-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 31 Which method CANNOT be used to set the Table-name for an EGL implicit SQL statement?

A. use the tableNameVariables property of the SQLRecord definition B. hard-code the Table-name in the tableNames property of the SQLRecord definition C. override the Table-name with the usingKeys option of the get statement D. set the sqlLib.currentSchema system variable before issuing the implicit SQL statement for generated Java programs Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=31
-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 32 What is an example of a user-defined data part?

A. DataTable B. Dictionary

C. Interface D. Serial file Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=32


-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 33 For SQL, which EGL statement correctly declares a cursor for subsequent processing in a fetch loop?

A. execute #sql {select from where} B. execute #sql {get sqlRecordVariableName}; C. open resultSetID using #sql {select from where} D. open resultSetID with #sql {select from where for sqlRecordVariableName;} Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=33
-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 34 Which primitive type provides the best performance for a counter used to control a loop with

A. DECIMAL B. INT C. NUM D. SMALLINT Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=34


-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 35 Which statement about building and generating is FALSE?

A. Build Automatically causes EGL to perform a build whenever you save a file. B. Clean causes all parts in all files to be built regardless of whether they have changed. C. Auto generate enables you to specify which types of generatable parts EGL will automatically generate whenever you save them. D. Build before generate enables you to specify which types of generatable parts EGL will always build before generating them. Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=35
-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 36 An EGL customer has fewer than 10 key values, each with a small amount of data of the same type. The data changes at most once a year and is used by many different programs generated for both Java and COBOL. What is the BEST method of making this data available to all the

programs?

A. An indexed file B. A DataTable part C. A Dictionary part D. A list of constants in each program Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=36
-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 37 Which EGL logic part can be directly tested with the EGL debugger?

A. Libraries B. Programs C. Functions D. DataTables Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=37


-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 38 COBOL generation to z/OS fails for program PGMX and the PGMX_results.xml file indicates that the DB2 BIND failed. How can a programmer obtain more information on the exact failure?

A. generate with the symbolic parameter CCUEXTC=CCUOUT and look at the PGMX.C.SYSPRINT file B. generate with the symbolic parameter CCUEXTC=CCUOUT and look at the PGMX.B.SYSTSPRT file C. generate with the symbolic parameter CCUEXTB=RETURN and look at the PGMX.B.SYSTSPRT file D. generate with the symbolic parameter CCUEXTB=CCUOUT and look at the PGMX.B.SYSTSPRT file Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=38
-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 39 Which choice is ONLY supported in generated Java programs?

A. vgLib.startTransaction() system function B. BLOB and CLOB primitive types C. DATE, TIME, and TIMESTAMP primitive types D. decimalSymbol build descriptor option

Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=39
-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 40 A client application needs to send or receive more than 32K of data to or from a remote CICSbased EGL application. Which EGL logic part must be used for the remote CICS-based EGL application?

A. Library part B. Program part C. Service part generated as a Web Service D. Service part generated as an EGL Service Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=40
-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 41 When an EGL-generated COBOL program running in CICS ABENDS or creates a runtime exception, what is the FIRST place to look for additional error messages?

A. the CICS Message Log for the CICS Region B. the ELAD Transient Data Queue for the CICS Region C. the z/OS System Log D. the LE CEEMSG log for the CICS region Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=41
-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 42 Which EGL statement is used to send a text form to a user, receive input from the user, and always return to the same program?

A. Show statement B. Converse statement C. Forward statement D. Display statement Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=42
-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 43 Which EGL runtime environment is NOT valid for services developed with Rational Business Developer V7.1?

A. AIX

B. IMS/VS C. System i ?both EGL Java services or EGL COBOL services D. ZOS CICS Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=43
-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 44 What is a correct way of specifying that a non-EGL program is the target of an EGL call statement?

A. set the isNonEGL property of the call statement to YES B. create an isNonEGL element in the resource associations part C. set the callLink property of the call statement to YES D. set the isExternal property of the call statement to YES Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=44
-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 45 What is the most efficient way to retrieve an SQL row when searching for a key value that is always unique and there is no intent to update the data?

A. A prepare statement B. A get statement with the singleRow option C. A get statement with the oneRow option D. An open statement with the singleRow option Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=45
-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 46 A JSF handler with the property CancelOnPageTransition set to YES remains in session in the Web or Application server until _____.

A. The application forwards to another Web page in the same Web project B. The application forwards to another Web page in the same Web project or forwards to a URL in a different Web project C. The onConstruction() function for the JSF handler ends D. The onConstruction() or onPreRender() function for the JSF handler ends Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=46
-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 47 For SQL, what is the correct way to override the ORDER BY clause in an EGL get statement?

A. specify usingKeys on the get statement B. specify the orderBy property in the SQLRecord C. specify the defaultSelectCondition property in the SQLRecord D. in the EGL Editor, use SQL Statement > Add to create explicit SQL and then hand code the ORDER BY clause Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=47
-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 48 On which line of the EGL source code is it NOT possible to place a breakpoint when using the EGL debugger?

A. A logic statement inside of a function B. A logic statement inside of a for loop C. A variable declaration that includes an assignment statement D. A variable declaration that does not include an assignment statement Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=48
-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 49 When calling RPG programs on System i, the parameters passed to the RPG program must be _____.

A. Primitive fields only B. Non-structured records only C. Structured records and/or primitive fields using fixed data types D. Non-structured records and/or primitive fields using any valid EGL data type Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=49
-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 50 A company wants to design a system such that different user interfaces can utilize the same business or data logic (a two- or three-tier system). What is the WORST system design using EGL to accomplish this goal?

A. JSF handler calls programs, TUI/Batch Program calls programs B. JSF handler calls libraries, TUI/Batch Program calls libraries C. JSF handler calls services TUI/Batch Program calls services D. JSF handler contains database access, TUI/Batch Program contains database access Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=50

-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 51 Which statement is true about the EGL system functions that provide the ability to call a system command such as a .bat or an .exe executable file?

A. The sysLib.callCmd() system function runs a system command and waits until the command finishes before resuming processing. B. The sysLib.transferCmd() system function runs a system command and then continues processing without waiting for the command to finish. C. The command parameter for both system functions specifies the name of a linkage options entry that provides the information on how to invoke the command. D. Both system functions assign the value that the system command returns to the system variable sysVar.errorCode. Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=51
-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 52 Which statement about Library parts is FALSE?

A. A Library can invoke another library. B. A Library is a separate generatable part. C. A Library can transfer to another library. D. At runtime, EGL loads the library into memory the first time it is used. Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=52
-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 53 A company needs to provide the ability for its customers to retrieve part description and part pricing information. What is the best way to provide the required access to the data from outside the company?

A. A service B. A called program C. A function in a library D. A standalone function Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=53


-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 54 Which statement is true about programs with the stereotype of BasicProgram?

A. BasicProgram is one of several stereotypes that are included in the core EGL

package. B. A basic program cannot access databases or files. C. A basic program cannot use most EGL statements or system libraries. D. A basic program cannot communicate with a user through a browser or 3270 screen. Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=54
-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 55 A function has logic that uses an index when referencing a dynamic array. Which technique permits the logic in the function to continue to run even if there is an ARRAY OUT OF BOUNDS EXCEPTION such as the index being set to zero?

A. include a try/onException block in the function with a record type of IndexOutOfBoundsException B. set the checkIndexOutOfBounds build descriptor option to YES C. code logic similar to if (myIndex is inbounds) before using the index D. You cannot do this because the run unit always stops when you get an ARRAY OUT OF BOUNDS EXCEPTION. Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=55
-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 56 Which statement is true about developing a large application system with interdependencies between the projects?

A. Cycles between EGL projects are never permitted. B. Projects that are referenced most frequently should be built first. C. The only way to set the order in which projects are built is by using Window > Preferences > General > Workspace > Build Order. D. The only way to set the order in which projects are built is by using Project > Optimize EGL Project Build Order. Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=56
-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 57 A customer has several subsystems that use identical values for most of the build descriptor options, but which need to vary just a few option values. What is the BEST way to share the identical values?

A. Copy the common build descriptor part into the subsystem build descriptor part B. Import the common build descriptor part into the subsystem build descriptor part C. Use the nextBuildPart option to chain from a subsystem build descriptor part to a common build descriptor part

D. Use the nextBuildDescriptor option to chain from a subsystem build descriptor part to a common build descriptor part Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=57
-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 58 What is the correct way to set an SQL variable to a null value before inserting or updating a row in a relational table?

A. use the EGL assignment statement sqlVariable = null; B. use the EGL assignment statement set sqlVariable null; C. You need not do anything; the EGL framework automatically converts default initial values to nulls if the property isSQLNullable is set to yes for the variable. D. You need not do anything; the EGL framework automatically converts default initial values to nulls if the question mark (?) follows a variable declaration type. Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=58
-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 59 Due to EGL capability for single source code with generation for multiple target runtime environments, a programmer _____.

A. Does not have be concerned with the intended target platform B. Can only deploy a program across similar environments, such as the Java runtime environments C. Can write a program once and deploy on multiple target runtime environments without any concerns D. Can write a program once and deploy it on multiple target runtime environments but must be aware of potential limitations Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=59
-------------------------------------------------------------------------------------------------------------------------------------

QUESTION: 60 Consider the following source code: sourceTimeStamp TIMESTAMP (MMdd; targetTimeStamp TIMESTAMP (yyyMMddHHmmss sourceTimeStamp = "0615" targetTimeStamp = sourceTimeStamp; If this statement runs on March 10, 2008 at 2:38:40 AM, what is the resulting value for targetTimeStamp?

A. 00000310000000 B. 00000615000000 C. 20080615000000 D. 20080615023840

Answer: http://www.twpass.com/twpass.com/exam.aspx?ecode=000-134&qno=60
-------------------------------------------------------------------------------------------------------------------------------------

TwPass Certification Exam Features;


TwPass offers over 2500 Certification exams for professionals. More than 98,800 Satisfied Customers Worldwide. Average 99.8% Success Rate. Over 120 Global Certification Vendors Covered. Services of Professional & Certified Experts available via support. Free 90 days updates to match real exam scenarios. Instant Download Access! No Setup required. Price as low as $19, which is 80% more cost effective than others. Verified answers researched by industry experts. Study Material updated on regular basis. Questions / Answers are downloadable in PDF format. Mobile Device Supported (Android, iPhone, iPod, iPad) No authorization code required to open exam. Portable anywhere. Guaranteed Success. Fast, helpful support 24x7.

View list of All Exams (AE);


http://www.twpass.com/twpass.com/vendors.aspx

Download Any Certication Exam DEMO.


http://www.twpass.com/twpass.com/vendors.aspx

To purchase Full version of exam click below; http://www.TwPass.com/

You might also like