EMT Practice Test

1. Question Content...


Question List

Question1: With what can you simulate multiple inheritance?

Question2: When do you need to use the GROUP BY clause in the SELECT statement? Please choose the correct answer.

Question3: Which of the following repository objects can you maintain in the ABAP Workbench?
There are 3 correct answers to this question.
Response:

Question4: What is the correct order for using a lock object?
Please choose the correct answer.
Response:

Question5: The source code editor in ADT provides many helpful features. What are these helpful features? There are 2 correct answers to this question.

Question6: What does a view do?
There are 4 correct answers to this question.
Response:

Question7: Which steps are needed when implementing the singleton concept for class instantiation with minimum coding?
There are 3 correct answers to this question.
Response:

Question8: Which of the following folder is essential to relate to Smart Data Access and also combines data from remote sources?
Choose the correct answer

Question9: You define a formal parameter to a subroutine that accepts only internal table of type standard and type sorted as actual parameters. Which of the following generic ABAP data types must you use?
Please choose the correct answer.
Response:

Question10: A data object is concretely defined by means of the data type and occupied memory. It contains data with which ABAP programs work at runtime.

Question11: The ABAP Messaging Channels (AMC) uses the WebSocket protocol to gain two-way communication instead of HTTP.

Question12: The USER has the following fields: ID, FIRSTJMAME, LAST_NAME. FIRST_NAME, LAST_NAME have the same basic type and length. You want to compare fields FIRST_NAME, LAST_NAME to each other.
Which of the following SELECT statements can you use?
There are 2 correct answers to this question.
Response:
(1/1 Points)

Question13: Which features does the source code editor provide in ABAP Development Tools for SAP NetWeaver? There are 2 correct answers to this question.

Question14: Code within an explicit enhancement section can be replaced by the customer.

Question15: One of the prerequisites for the replacement object is that the structure type defined for the CDS view should match the structure of the database table

Question16: In an ABAP program, you to assign an initial value to an elementary data object when you define it. Which addition must you use?

Question17: Buffering data can speed access to data up to 100 times when compared to reading it from the database.

Question18: Which ABAP statement can make an element visible that you statically defined as invisible?
Please choose the correct answer.
Response:

Question19: You want to create a transparent table in the ABAP dictionary.
When the table is physically created in the database?
Please choose the correct answer.
Response:

Question20: What does a view do? Select all that apply.

Question21: What does Software Layer Aware Debugging allow you to do? Select all that apply.

Question22: The Debugger is entirely self-contained and requires no external transactions.

Question23: An internal table line type with a deep or nested structure can be defined for internal tables with a header line.

Question24: In which sequence are the following ABAP Events triggered?
Please choose the correct answer.
Response:

Question25: Which of the following statements dynamically changes the data type of field z1?
Please choose the correct answer.
Response:

Question26: To which of the following can you assign a search help? Note: There are 3 correct answers to this question

Question27: Protected attributes can be accessed by methods of the class and its subclasses.

Question28: The FIELD statement with the ON INPUT addition is used to conditionally call the ABAP dialog module. The ABAP dialog module is called if the value of the screen field is other than the initial value. (S. 411) {1 Richtig}

Question29: Which of the following steps are required to set up a shared memory area? There are 3 correct answers to this question.

Question30: Which of the following standard types is numeric? Select all that apply.

Question31: Which comparison operators can you use in a logical expression related to the WHERE clause of the SELECT statement? There are 3 correct answers to this question.

Question32: Which class is used to define a reference for an instance of the ALV Object Model?

Question33: Which does the field catalog allow you to do? Select all that apply. (S. 503) {3 Richtig}

Question34: A structure has enhancement category 3, can be enhanced (character-type).
Which set of elementary types is allowed for the new fields?
Please choose the correct answer.
Response:

Question35: What is the default length of the type C data type?
Please choose the correct answer.
Response:

Question36: What are the steps involved in SAP HANA Evolution? There are 3 correct answers to this question.

Question37: Which selection screen elements allow user input in ABAP Reports? There are 2 correct answers to this question

Question38: You want to display a dialog box in your ABAP program. Which statement do you use?
Please choose the correct answer.
Response:

Question39: An ABAP program processes the following expression:
r = a / b + c
Which of the following data declarations would cause the runtime environment to use fixed-point arithmetic for the above expression?
There are 2 correct answers to this question
Note: Answers of this question are not verified by our experts, please study yourself and select the appropriate answers.
Response:

Question40: Which of the following ABAP dictionary types can you use to define domains? There are 3 correct answers to this question.

Question41: Which of the following statements regarding search helps are true? Select all that apply.

Question42: When starting the Debugger, what circumstance causes the runtime error DEBUGGING_NOT_POSSIBLE?

Question43: At most, a menu bar can have 10 menus. (S. 411) {1 Richtig}

Question44: How would you find out if an application program offers a program exit?
Please select all the correct answers that apply.
Response:

Question45: Which tools can you use to provide input data for the SQL performance tuning work list (Transaction SWLT)?
There are 3 correct answers to this question.

Question46: What all are the factors involved in Working with ADT There are 3 correct answers to this question.

Question47: What does SAP recommend that you use a hashed table?
Please choose the correct answer.
Response:

Question48: Which of the following features does the ABAP Test Cockpit offer that the ABAP code Inspector does NOT Offer? There are 2 correct answers to this question.

Question49: The Internet Communication Manager (ICM)...
Please choose the correct answer.
Response:

Question50: The Repository Browser is started by default when you execute Transaction SE80 for the Object Navigator

Question51: Which property of the InputField Ul element must be bound to a context attribute? Please choose the correct answer.

Question52: What is the allowed length of the ABAP Dictionary data type DF16_DEC?

Question53: How can you declare an internal table using the transparent table A as its line type?
Please choose the correct answer.
Response:

Question54: Which of the following are performance recommendations when using SAP HANA? There are 2 correct answers to this question.

Question55: The dispatcher handles all communication between users, work processes, and other (external) systems.

Question56: You define a formal parameter to a subroutine that accepts only internal table of type standard and type sorted as actual parameters. Which of the following generic ABAP data types must you use? Please choose the correct answer.

Question57: Which type of view uses an inner join in a search help? Please choose the correct answer.

Question58: You want to select data from two tables and store the result in as structure.
Table PARTNER contains the fields PARTJD and KIND.
Table CONTRACT contains the fields CONTJD, CONT_TYPE and DIVISION.
The structure is defined as follows
DATA: BEGIN OF wa_result,
Part_id type partner-partjd, cont_id type contract-cont_id,
ConMype TYPE contract-cont_type,
END of wa_result,
Lt_result type table of wa_result.
How can you replace the following SELECT statement with an outer join?
SELECT partjd from partner INTO wa_result WHERE kind = 'Residential'.
SELECT contjd from CONTRACT into wa_result-cont_id WHERE part EQ
wa_partner-part_id And DIVISION eq 'Water'.
Append wa_result to lt_result.
ENDSELECT.
If sy-subrc<>0. CLEAR wa_result-cont_id
APPEND wa_result TO lt_result. ENDIF.
ENDSELECT.
Please choose the correct answer.

Question59: Which property of the InputField UI element must be bound to a context attribute?
Please choose the correct answer.
Response:

Question60: List down the elements involved in User Management and Security in SAP HANA? There are 3 correct answers to this question

Question61: If you enter the value "0" or blank ("") as the next screen, then the system resumes processing from the point at which the screen was initiated, assuming the Next Screen attribute is overridden dynamically in the program.

Question62: You r program performs a data base update by calling function modules in an update task.
Which ABAP statements can be used in the program to discard all update requests for the current SAP logical unit of work(LUW)?
There are 3 correct answers to this question
Response:

Question63: You defined database view A and maintenance view B in the ABAP Dictionary. What restrictions apply to these views? Note: There are 2 correct answers to this question

Question64: The statements CALL BADI and GET BADI are used for which type of BAdls?

Question65: Subclasses inherit all the components of the parent class.

Question66: What do you need to consider when creating a secondary index on a table?
There are 2 correct answers to this question
Response:

Question67: A structure has enhancement category 3, can be enhanced (character-type). Which set of elementary types is allowed for the new fields? Please choose the correct answer.

Question68: Which of the following actions can be performed in the Process After Input (PAI) processing block?
Please choose the correct answer.
Response:

Question69: You create a function group ZATP. What is the name of the corresponding main program?
Please choose the correct answer.
Response:

Question70: Which of the following structures is created when you use a table type to define one of its components?
Please choose the correct answer.
Response:

Question71: Which of the following statements are correct? Select all that apply (S. 470) {4 Richtig}