option
Questions
ayuda
daypo
search.php

Test exam questions 2

COMMENTS STATISTICS RECORDS
TAKE THE TEST
Title of test:
Test exam questions 2

Description:
More questions

Creation Date: 2023/02/10

Category: Others

Number of questions: 59

Rating:(0)
Share the Test:
Nuevo ComentarioNuevo Comentario
New Comment
NO RECORDS
Content:

Which type of view cannot be used in a search help? Please choose the correct answer. Database view. Help view. Maintenance view. Candidates key view.

Which does the field catalog allow you to do? There are 3 correct answers to this question. Change the display order of a column. Produce a striped pattern for the display lines. Change the title of a column. Add a field to the display. Specify the sort order of the display table.

Which statements are considered obsolete and cannot be used in ABAP Objects? Please select all the correct answers that apply. DATA ... TYPE ... OCCURS. INFOTYPES. RANGES. TABLES. ON CHANGE OF. SEARCH. LOOP AT dbtab. DATA ... BEGIN OF ... OCCURS. LEAVE.

In which circumstances is a table considered to be a text table? There are 3 correct answers to this question. This table has a foreign key to the data table as a text table. The ABAP runtime system determines that the relationship exists. The entire key of this data table is included as the key to this table. This table has an additional language key field. This table only has one character-based data field.

What ABAP Dictionary object allows you to define fixed values? Please choose the correct answer. Domain. View. Lock object. Data element.

DOG is a subclass of ANIMAL. You have created a variable of type ANIMAL that references an instance of the DOG class. Which of the following statements can you use to copy this reference to a new variable of type DOG? Please choose the correct answer. MOVE…. TO….. WRITE……TO……. MOVE-CORRESPONDING…… TO……. MOVE……?TO…….

What pre-defined ABAP data type is deep? Please choose the correct answer. DECFLOAT34. N. STRING. X.

Which of the following statements create a data object? There are 3 correct answers to this question. PARAMETERS. CLASS. TYPES. CLASS-DATA. CONSTANTS.

What is required to fully specify a Table Type in the ABAP Dictionary? There are 3 correct answers to this question. Line type. Header line. Table key. Access type. Table size.

You want to develop a program that processes character type data. When you implement the program, you can either use the classical string statements or the newer strings expressions and functions What are the main benefits of using string expressions and string functions? There are 2 correct answers to this question. You can reduce the number of intermediate variables. You can write compact syntax instead of a long sequence of statements. You can write code that is very easy to read and understand. You can improve the performance significantly.

You write a report that displays mass data in a table. You decide to use the ALV Grid control (class CL_GUI_ALV_GRID) instead of a classical list display with WRITE statements. Which of the following functions can you offer to the user without doing any specific programming There are 2 correct answers to this question. Display details by double-clicking on a row. Sort and filter the data by any column. Change column width and sequence. Convert currency amount columns.

Which ABAP statement can make an element visible that you statically defined as invisible? Please choose the correct answer. SCREEN-INVISIBLE = 1. SCREEN-INVISIBLE = 0. SCREEN-ACTIVE = 0. SCREEN-ACTIVE = 1.

You build a dialog screen with an input field in an ABAP program. How do you ensure that the contents of the screen field can be accessed in the program? Please choose the correct answer. Use the GET statement in the program to transport the data from the screen field. Use a MOVE statement in a PAI module to copy the data to a data object. Enter the name of a data object in the Parameter ID attribute of the screen field. Define a data object in the program with the same name as the screen field.

When is a foreign key check performed on an input/output field? Please choose the correct answer. If the field refers to the dictionary field for which a check table is defined. If the field refers to the dictionary field for which a value help is defined. If the field refers to the dictionary field for which a search is defined. If the field refers to the dictionary field for which a append search is defined.

Identify the types of layout managers. There are 4 correct answers to this question. MatrixLayout. FlowLayout. RowLayout. TreeLayout. ColumnLayout. GridLayout.

Which statements are true about a class that has granted friendship to another class? There are 4 correct answers to this question. All classes the friend has granted friendship access status to also have the same access. The friend has access to protected attributes. The friend has access to public attributes. All classes that inherit from the friend (subclasses) also have the same access. The friend has access to private attributes.

You have to overwrite spaces in a string with the letter ‘A’. Which of the following statements can you use? There are 3 correct answers to this question. CONDENSE. OVERLAY. TRANSLATE. REPLACE. SHIFT LEFT.

Which elementary field types are considered a character type? There are 5 correct answers to this question. STRING. C. T. D. N. X. I. XSTRING. F.

An executable ABAP program contains a standard selection screen and uses the event blocks AT SELECTION SCREEN, AT SELECTION-SCREEN OUTPUT, INITIALIZATION, START-OFSELECTION. In which sequence will ABAP runtime call these event blocks? Please choose the correct answer. 1. AT SELECTION-SCREEN OUTPUT 2. INITIALIZATION 3. AT SELECTION-SCREEN 4. START-OF-SELECTION. 1. INITIALIZATION 2. AT SELECTION-SCREEN OUTPUT 3. START-OF-SELECTION 4. AT SELECTION-SCREEN. 1. INITIALIZATION 2. AT SELECTION-SCREEN 3. AT SELECTION-SCREEN OUTPUT 4. START-OF-SELECTION. 1. INITIALIZATION 2. AT SELECTION-SCREEN OUTPUT 3. AT SELECTION-SCREEN 4. START-OF-SELECTION.

You can use the logical expression IS SUPPLIED for any formal parameter passed to which modularization unit? There are 3 correct answers to this question. Instance method. Function module. Static method. Subroutine (FORM routine).

Which events can exist in all types of programs that actually contain executable statements? Please choose the correct answer. AT LINE-SELECTION. START-OF-SELECTION. INITIALIZATION. AT USER-COMMAND. LOAD-OF-PROGRAM. AT PF##.

What are the reasons to use modularization? There are 3 correct answers to this question. Promotes reusability. Improved transparency. Easier maintenance. Portability across DBMS. Improved performance.

What transactions can be used to carry out modification adjustments after a system upgrade? There are 2 correct answers to this question. SPAU_ENH. SPAD. SPDD. SPAU.

Your selection screen can be modified at which event? Please choose the correct answer. AT SELECTION-SCREEN ON <field_name>. AT SELECTION-SCREEN. AT SELECTION-SCREEN OUTPUT. None of the above.

After which statement will the runtime system initialize the ABAP memory? Please choose the correct answer. SUBMIT. LEAVE TO TRANSACTION. SUBMIT… AND RETURN. CALL TRANSACTION.

Using the screen system table, what can you modify through a LOOP AT SCREEN … ENDLOOP construct? Please choose the correct answer. Attributes of screen elements. Function code of buttons. Screen status. Values of screen elements.

What is a plug? There are 4 correct answers to this question. Can be defined as inbound, outbound, or both. Forms the basis of navigation within a Web Dynpro. Can be defined as outbound controlling multiple inbound plugs. Can be defined as inbound and be controlled by multiple outbound plugs. Can be defined as default inbound. Can be assigned to multiple views. Can be defined as a startup. Can be defined as an exit.

Which of the following are incomplete ASAP pre-defined data types? There are 3 correct answers to this question. P. x. D. T. N.

You want to use a BAdI to extend the functions of an SAP program. Which of the following tasks is necessary? Please choose the correct answer. Implement a class that implements the BAdI interface. Create an enhancement project using a customer exit. Define an interface for the BAdI. Call the BAdI.

You want to translate dynamic text in a web dynpro. From which abstract class should you inherit? Please choose the correct answer. CL_WD_COMPONENT_ASSISTANCE. CL_WD_CONTEXT_SERVICES. CL_WD_COMPONENT_SERVICES. CL_WD_CONFIGURATION_MODEL.

Which objects are automatically created when you create a new function group? Please choose the correct answer. A function pool and two subroutine pools. A function pool and two include programs. A function pool and two module pools. A function pool and two function modules.

Which of the following ABAP statements throws an error at the syntax check? Please choose the correct answer. DATA variable(5) TYPE t. DATA variable. DATA variable(5) TYPE n. DATA variable(5) TYPE p.

Which desktops are part of the new ABAP debugger? There are 3 correct answers to this question. Desktop 1. Objects. Break./Watchpoints. List. Session.

At most, how many menu items (including functions, separators and sub- menus) can a menu have on the screen? Please choose the correct answer. 20. 10. 15. None of the above.

You have implemented a class CL_CUSTOMER in which you defined a private attribute. From where can you access this attribute directly? There are 2 correct answers to this question. From all methods of all subclasses of CL_CUSTOMER. From all methods of the class CL_CUSTOMER. From any program using the class CL_CUSTOMER. From all methods of a class to which CL_CUSTOMER grants friendship.

Table A and table B are partially buffered. Which of the following SELECT statements always access the database? There are 2 correct answers to this question. SELECT SINGLE FOR UPDATE a b FROM table A INTO CORRESPONDING FIELDS OF ls_A WHERE c EQ ‘1234’. SELECT a b FROM table A INTO CORRESPONDING FIELDS OF TABLE lt_AB. SELECT a b c d FROM table A JOIN table B ON table A~a EQ table B~ eINTO CORRESPONDING FIELDS OF TABLE lt_A_B. SELECT SINGLE CLIENT SPECIFIED a b FROM table A INTO CORRESPONDING FIELDS OF ls_AB.

You create a function group ZATP. What is the name of the corresponding main program? Please choose the correct answer. ZATP. SAPMZATP. SAPFZATP. SAPLZATP.

You created a class by inheriting from a superclass. The superclass contains a public instance method do_something. You want to redefine method do_something. What must you do? Please choose the correct answer. Leave the signature of the method unchanged. Declare the method FINAL. Change the visibility of the method to PROTECTED. Call the implementation in the superclass.

What is the difference between a Unicode and non-Unicode program? Please select all the correct answers that apply. Offset positioning in a Unicode structure is restricted to flat data objects. Byte-type data objects cannot be compared to character-type data objects. Offset positioning in a Unicode structure is restricted to character data objects. Byte-type data objects cannot be assigned to character-type data objects.

You are asked to enhance the GUI status of an SAP standard application. How do you identify which menu exit function code you can use? Please choose the correct answer. It starts with a dollar ($). It starts with an ampersand (&). It starts with an asterisk (*). It starts with a plus (+).

What does Software Layer Aware Debugging allow you to do? There are 3 correct answers to this question. Debug a large portion of code. Debug only a small portion of code. Specify as much or as little code to debug. Trace executing code. Bypass authorization objects.

You want to display a dialog box in your ABAP program. Which statement do you use? Please choose the correct answer. CALL SCREEN 200 STARTING AT 5 5. CALL SCREEN 200. WINDOW 200 STARTING AT 5 5. SET SCREEN 200.

What do you need to have in your program to respond to the DOUBLE_CLICK event raised by an instance of the CL_GUI_ALV_GRID class? There are 3 correct answers to this question. A SET HANDLER statement to register the handler to the event. A method to read the registration table. A handler method for the event. A CATCH statement to capture the event. A handler class.

A work process… Please choose the correct answer. Becomes inactive while waiting for a user. Becomes active while waiting for a user. Uses a common memory area called shared memory. Stays linked toa screen through the dispatcher.

Why should you bundle database updates in your dialog programs? Please choose the correct answer. To be able to rollback database changes performed in the same dialog step. To avoid database locks set by an SQL statement that persists until the end of the program. To allow you to use SAP locks to ensure data consistency. To process the SAP LUW within the database LUW to ensure data consistency.

What is the purpose of the enqueuer work process? Please choose the correct answer. It processes logical locks requests. It processes requests for a print output. It processes update requests. It processes requests triggered by an active user.

You use Unified Modelling language (UML) to design your classes. You want to describe the message exchange between objects. Which diagram can you use? Please choose the correct answer. Component diagram. Sequence diagram. Object diagram. Class diagram.

In which of the following source code blocks can you define local data objects? There are 3 correct answers to this question. LOAD-OF-PROGRAM. PBO module. Function module. Subroutine. Static method.

In which program types can you create dialog screens? There are 3 correct answers to this question. Function group. Interface pool. Module pool. Executable program. Class pool.

Compared to a predefined ABAP type what additional properties can be assigned to a domain? There are 3 correct answers to this question. Conversion exits. Search helps. Fixed values. Parameter IDs. Value tables.

What can be part of the signature of an instance constructor? There are 2 correct answers to this question. Exceptions. Exporting parameters. Changing parameters. Importing parameters.

What is unique about a singleton? There are 2 correct answers to this question. It must be instantiated using a public instance constructor. It must be instantiated using a private instance constructor. It must be defined as FINAL. It must be instantiated using a static public constructor. It cannot be defined as FINAL. It must be instantiated using a static protected constructor. It must be instantiated using a static private constructor.

A customer has asked that you improve performance for a small table with frequent read accesses. What buffering type do you recommend? Please choose the correct answer. Full table. Primary key. Column store. Single record.

To which ABAP Dictionary definition can you assign fixed values? Please choose the correct answer. Field of a transparent table. Domain. Component of a structure. Data element.

Which of the following statements are true? There are 2 correct answers to this question. A maintenance view is implemented as an inner join. A database view is implemented as an outer join. A maintenance view is implemented as an outer join. A database view is implemented as an inner join.

In the CALL CUSTOMER-FUNCTION 'nnn' statement, nnn is a three-digit number used in SAP programs for which of the following types of enhancement? Please choose the correct answer. User exits. Business add-ins. New BAdIs. Customer exits.

You want to define a field symbol that will be assigned to a character string. Which generic types can you use? There are 3 correct answers to this question. any. csequence. any table. xsequence. click.

Which of the following features do you have to consider when you use shared objects? There are 3 correct answers to this question. Concurrent read accesses are supported. Memory bottlenecks result in runtime errors and have to be caught. Data is saved as attributes of objects. Concurrent write accesses are supported. Data is saved as tables of objects.

Which of the following functions does the ABAP Dispatcher perform? There are 2 correct answers to this question. It distributes user requests among available work processes. It communicates with other instances in the system. It directs HTTP requests from an SAP system to a web server. It enables communication between SAP systems and external application systems.

Report abuse
Chistes IA