Holas, me estoy preparando para la certificación y estoy buscando por internet algunas preguntas que pueden poner en el test y bueno, pues en algunas tengo mis dudillas...
Así que os las pongo por aqui por si quereis ayudarme a resolverlas, y si de paso alguien quiere poner alguna otra que tenga dudas también pues las intentamos resolver entre todos.
Por cierto, ¿Alguien sabe si en el examen de certificación te quitan puntos por las respuestas incorrectas?
Bueno, ahí van;
Bueno, esas son de momento... espero que no haberme pasado poniendo preguntas... XD
Así que os las pongo por aqui por si quereis ayudarme a resolverlas, y si de paso alguien quiere poner alguna otra que tenga dudas también pues las intentamos resolver entre todos.
Por cierto, ¿Alguien sabe si en el examen de certificación te quitan puntos por las respuestas incorrectas?
Bueno, ahí van;
Código:
¿que es el drill-down? 1. Which one of the following commands is used in drill-down reporting? a) AT LINE-SELECTION b) MODULE SET_SCREEN c) LEAVE SCREEN d) END-OF-PAGE e) ON VALUE-REQUEST
Código:
¿En esta la respuesta no sería 1? Pero no está entre las opciones... 2.An internal table ICODE contains the following entries: field1 field2 ————– John 12345 Alice 23478 Sam 54321 Bob 10000 IF NOT ICODE[] IS INITIAL. SORT ICODE BY FIELD1 DESCENDING. READ TABLE ICODE WITH KEY FIELD1 = ‘Sam’. WRITE: / SY-TABIX. ENDIF. What is the output of the above code after execution? b) 2 c) 3 d) 4 e) Sam
Código:
3.When debugging a BDC session, which command is used to exit the session? a) /n b) /bend c) /nexit d) /nquit e) /exit
Código:
¿La respuesta es la c? 4.Which statement regarding Logical databases is FALSE? a) Logical databases use a tree structure. b) Logical databases use a standard selection-screen for selection criteria. c) More than one logical database can be used in a report. d) Any change to a logical database is reflected in all reports using that logical database. e) Logical databases simplify and encapsulate data retrieval
Código:
5.Program specs call for screen 100 to appear in a modal dialog box. PAI ———— module do_something. If field1 = ‘X’. Call screen ‘0100'. Endif. Endmodule. Why does the above code fail to produce a modal box? a) The addition ’starting at X’ is left out. b) The screen should be numbered 900. c) The code must occur in the PBO. d) The screen is of the wrong type. e) Screens are not called within modules.
Código:
¿Los field-symbols no se declaran con <>? 6.Field-symbols are defined in which of the following ways? a) field-symbols f1 for f1. b) field-symbols [f1]. c) field-symbols like f1. d) field-symbols (f1) like f1. e) field-symbols {f1}.
Código:
7. Table ztest has a secondary index on the following fields: a) Indexes are not allowed on Z tables tnum, tcode. Select * from ztest where tnum ne ‘123' and tcode = ‘456'. Why is the index not used in the above case? b) Variables must be used, NOT literals c) Select individual fields, not select * d) Client is not in the where clause e) NE invalidates the use of an index
Código:
8. Update Bundling can occur within which of the following? a) Within dialog tasks and dequeue processes b) Within dialog and update tasks c) Within enqueue processes d) Within enqueue and dequeue processes e) Within update tasks and enqueue processes
Código:
9. What can you NOT attach a search help to? a) type V? b) field of a table c) check table d) data element e) table
Código:
10. What is true about a check table? a) Foreign key fields can accept only values which exist in the check table b) Check table fields can accept only values which exist in the check table c) Foreign key fields can accept any values regardless of the check table d) Check tables are not used for restricting values in the foreign key tables
Código:
11. What are the main functions of a Data Dictionary? More than one answer is correct. a) To insulate the ABAP/4 developer from the database b) To support the creation and management of metadata (data about data) c) To provide data security at the application level d) To connect to the operating system
Comentario