Weekend Sale - Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: sntaclus

What can be part of the signature of an instance constructor? Note: There are 2 correct answers to this question

A.

Importing parameters

B.

Exporting parameters

C.

Changing parameters

D.

Exceptions

The code of an executable program does NOT contain any event keywords. What event block does the code belong to?

A.

LOAD-OF-PROGRAM

B.

AT SELECTION-SCREEN

C.

INITIALIZATION

D.

START-OF-SELECTION

How is data shred between web Dynpro controllers? Note: There are 2 correct answers to this question

A.

By using context mapping from a view controller to a component controller

B.

By using data binding from a view controller to another view controller

C.

By using context mapping from a view controller to another view controller

D.

By using context mapping from a view controller to a custom controller

You call a lock module, Which exceptions could the lock module raise when a logical lock CANNOT be set?

Note: There are 2 correct answers to this question.

A.

CX_SY_OPEN_SQL_ERROR

B.

SISTEM_FAILURE

C.

CX_SY_DATA_ACCESS_ERROR

D.

FOREIGN_LOCK

You write a program that updates a data record in the database using the following statements. UPDATE scar FROM Is_scarr, which of the following task does the database interface perform?

Note: There are 2 correct answers to this question

A.

It translates the statement to native SQL

B.

It restricts the access to the logon client

C.

It checks the authorization of the current user

D.

It applies a logical lock to the updated date record

How do you create lock objects and lock modules for use in ABAP programs that's access the database?

A.

Use the function builder to create the lock modules.

B.

The lock objects are created automatically.

C.

Use the ABAP Dictionary to create the lock objects. Use the functions builder to create the lock modules.

D.

Use the function builder to create the lock modules and the lock objects.

E.

Use the ABAP Dictionary to create the lock objects. The lock module is created automatically

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

A.

Data element

B.

Check table

C.

Table type

D.

Domain

E.

Structure component

Which of the following incomplete ABAP pre-defined data types? Note: There are 3 correct answers to this question

A.

N

B.

T

C.

D

D.

X

E.

P

You want to read a single line of an internal table using table expression itab[...]. How can you identify the line? Note: There are 3 correct answers to this question

A.

Specify the line index

B.

Specify a free table key

C.

Specify a regular expression

D.

Specify a WHERE Condition

E.

Specify a secondary table key

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?

A.

Change the visibility of the method to PROTECTED

B.

Declare the method FINAL

C.

Leave the signature of the method unchanged

D.

Call the implementation in the superclass