Sei sulla pagina 1di 3

Que 1: Which one of the following status types is INVALID when creating a GUI status?

Choice 1 Dialog box Choice 2 Menu Choice 3 List in dialog box Choice 4 Screen Choice 5 List

Que 2 : What is the order of operators in a logical expression? Choice 1 and > or > not Choice 2 and > not > parentheses Choice 3 parentheses > not > and Choice 4 not > and > parentheses Choice 5 parentheses > and > not

> or > or > or > or

Que 3 : Select all customers with IDs less than '100' or greater than '200' and whose phone numbers are NOT in the area codes 212 or 718. Which select statement WHERE clause satisfies the above request? Choice 1 where ( id < '100' or '200' ) and ( phone <> '212*' or '718*' ). Choice 2 where ( id < '100' or id > '200' ) and not ( phone like '212%' and phone like '718%' ). Choice 3 where not ( id between '100' and '200' ) and not ( phone like '212%' or phone like '718%' ). Choice 4 where ( id < '100' or id > '200' ) and not ( phone like '212%' or phone like '718%' ). Choice 5 where ( id < '100' and id > '200' ) and not ( phone like '212%' and phone like '718%' ).

Que 4 : Which one of the following is output to the job log when included in an ABAP program running in the background?

Choice 1 report parameters Choice 2 Submit statements Choice 3 Write statements Choice 4 message statements Choice 5 print function modules

Que 5: Which one of the following statements about Pooled and Cluster tables is correct? Choice 1 Pooled and Cluster tables physically exist in the database. Choice 2 Pooled and Cluster tables can be joined. Choice 3 All table entries in a Cluster table are stored in field VARKEY. Choice 4 Pooled and Cluster tables share information from multiple tables. Choice 5 All key fields of a Pooled table must contain integer data types.

Que 6 :What is the fastest way to move one internal table to another internal table (assuming two tables of similar structure)? Choice 1 table2[] = table1[]. Choice 2 move table1 to table2. Choice 3 loop at table1. Move: table1-field1 to table2-field1, table1-field2 to table2-field2. Append table2. Endloop. Choice 4 append lines of table1 to table2. Choice 5 loop at table1. Move-corresponding table1 to table2. Endloop.

Que 7 : Which one of the following statements would NOT cause an abend when used inside of a select-----endselect loop? Choice 1 call screen Choice 2

call transaction Choice 3 commit work Choice 4 call dialog Choice 5 call function

Que 8 : Your program specs call for you to read the first 10 records from a text file (fname1), and write them out to another text file (fname2). Which block of code will accomplish the result desired in the above scenario? Choice 1 open dataset fname1 for output in text mode. Open dataset fname2 for input. Do 10 times. Read file fname1 into hold_var. Transfer hold_var to fname2. Enddo. Choice 2 open dataset fname1 for output in text mode. Open dataset fname2 for input in text mode. Do 10 times. Read dataset fname1 into hold_var. Transfer hold_var to fname2. Enddo. Choice 3 open file fname1 for output. Open file fname2 for input. Read dataset fname1 into hold_var 10 times. Transfer hold_var to fname2. Choice 4 open dataset fname1 for input in text mode. Open dataset fname2 for output in text mode. Do 10 times. Read fname1 into hold_var. Write hold_var to fname2. Enddo. Choice 5 open file fname1 for input. Open file fname2 for output. Do 10 times. Read file fname1 into hold_var. Transfer hold_var into fname2

Potrebbero piacerti anche