Halloween Special Sale Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: buysanta

Exact2Pass Menu

Question # 4

In the assignment, data (gv_result) = 1/8. what will be the data type of gv_result?

A.

OTYPE I

B.

TYPE DEFLOAT 16

C.

TYPE P DECIMALS 3

D.

TYPE P DECIMALS 2

Full Access
Question # 5

The class zcl_demo_class is in a software component with the language version set to "Standard ABAP". The function module "ZF11 is in a software component with the language version set to "ABAP Cloud". Both the class and function module are customer created. Regarding line #6, which of the following is a valid statement?

A.

'ZF1' can be called whether it has been released or not for cloud development.

B.

'ZF1' can be called via a wrapper that itself has been released for cloud development.

C.

'ZF1' can be called via a wrapper that itself has not been released for cloud development.

D.

'ZF1' must be released for cloud development to be called.

Full Access
Question # 6

Which of the following are features of Core Data Services? Note: There are 3 correct answers to this question.

A.

Inheritance

B.

Associations

C.

Annotations

D.

Delegation

E.

Structured Query Language (SQL)

Full Access
Question # 7

You want to provide a short description of the data definition for developers that will be attached to the database view

Which of the following annotations would do this if you inserted it on line #27

A.

@UI headerinto description label

B.

@UI.badge.title.label

C.

@EndUserText.quickInfo

D.

@EndUserText label

Full Access
Question # 8

Which RESTful Application Programming object can be used to organize the display of fields in an app?

A.

Data model view

B.

Metadata extension

C.

Service definition

D.

Projection view

Full Access
Question # 9

After you created a database table in the RESTful Application Programming model, what do you create next?

A.

A metadata extension

B.

A projection view

C.

A data model view

D.

A service definition

Full Access
Question # 10

Which of the following are parts of answers to this question.

A.

Partitioning attributes

B.

Extension

C.

Field list

D.

Semantic table attributes

Full Access
Question # 11

What are some properties of database tables? Note: There are 2 correct answers to this question.

A.

They store information in two dimensions.

B.

They may have key fields.

C.

They can have any number of key fields.

D.

They can have relationships to other tables.

Full Access
Question # 12

Which of the following results in faster access to internal tables? Note: There are 3 correct answers to this question.

A.

In a sorted internal table, specifying the primary key partially from the left without gaps.

B.

In a sorted internal table, specifying the primary key completely.

C.

In a standard internal table, specifying the primary key partially from the left without gaps.

D.

In a hashed internal table, specifying the primary key partially from the left without gaps.

E.

In a hashed internal table, specifying the primary key completely.

Full Access
Question # 13

In ABAP SQL, which of the following retrieves the association field_Airline-Name of a CDS view?

A.

\_Airline-Name

B.

/_Airline Name

C.

@_Airline-Name

D.

"_Airline Name

Full Access
Question # 14

Class super has subclass sub. Which rules are valid for the sub constructor? Note: There are 2 correct answers to this question.

A.

The method signature can be changed.

B.

Import parameters can only be evaluated after calling the constructor of super.

C.

The constructor of super must be called before using any components of your own instance.

D.

Events of your own instance cannot be raised before the registration of a handler in super.

Full Access
Question # 15

In ABAP SQL, which of the following retneves the association field _Airline-Name of a CDS view?

A.

\ Airnline-Name

B.

@_Airline-Name

C.

/_Anine-Name

D.

*_Airline-Name

Full Access
Question # 16

In ABAP SQL, which of the following can be assigned an alias? Note: There are 2 correct answers to this question.

A.

order criterion (from order by clause)

B.

field (from field list)

C.

database table

D.

group criterion (from group by clause)

Full Access
Question # 17

You have a superclass superl and a subclass subl of superl. Each class has an instance constructor and a static constructor. The first statement of your program creates an instance of subl. In which sequence will the constructors be executed?

Full Access
Question # 18

Which of the following ON conditions must you insert in place of "???"?

A.

ON Z_Sourcel.camer_id = 7_Source2 carrier_id

B.

ON Sprojection Camer=Source2 carrier_id

C.

ON Sprojection. Carrier Source2.carrier

D.

ON Sprojection.carrier_id=Z_Source2.carrier_id

Full Access
Question # 19

What is the purpose of a foreign key relationship between two tables in the ABAP Dictionary?

A.

To document the relationship between the two tables

B.

To ensure the integrity of data in the corresponding database tables

C.

To create a corresponding foreign key relationship in the database

Full Access
Question # 20

Which of the following actions cause an indirect change to a database table requiring a table conversion? Note: There are 2 correct answers to this question.

A.

Renaming a field in a structure that is included in the table definition

B.

Changing the field labels of a data element that is used in the table definition.

C.

Deleting a field from a structure that is included in the table definition.

D.

Shortening the length of a domain used in a data element that is used in the table definition.

Full Access
Question # 21

You want to define the following CDS view entity with an input parameter:

Define view entity Z_CONVERT With parameters currency : ???

Which of the following can you use to replace "???? Note: There are 2 correct answers to this

question.

A.

built-in ABAP type

B.

A built-in ABAP Dictionary type

C.

A data element

D.

A component of an ABAP Dictionary structure

Full Access
Question # 22

Which of the following ABAP SQL statements are valid? Note: There are 2 correct answers to this question.

A.

SELECT FROM /dmo/connection FIELDS carrid O airpfrom,

MAX(distance) AS dist_max, MIN( distance) AS dist_min GROUP BY carrid, airpfrom INTO TABLE @DATA(It_hits)

B.

SELECT FROM /dmo/connection FIELDS \/ O carrid, airpfrom,

MAX( distance) AS dist_max, MIN(distance) AS dist_min INTO TABLE @DATA(It_hits)

C.

SELECT FROM /dmo/connection FIELDS V D MAX(distance) AS dist_max

MIN(distance) AS dist_min INTO TABLE @DATA(It_hits).

D.

SELECT FROM /dmo/connection FIELDS r—i carrid, airpfrom u GROUP BY carrid, connid

INTO TABLE @DATA(It_hits).

Full Access
Question # 23

To adhere to the most recent ABAP SQL syntax conventions from SAP, on which line must you insert the "INTO TABLE @gt flights" clause to complete the SQL statement?

A.

#15

B.

#4

C.

#6

D.

#8

Full Access
Question # 24

You have two internal tables itab1 and itab2.What is true for using the expression itab1 = corresponding #( itab2 )? Note: There are 2 correct answers to this question.

A.

Fields with the same name but with different types may be copied from itab2 to itab1.

B.

itab1 and itab2 must have at least one field name in common.

C.

Fields with the same name and the same type will be copied from itab2 to itab1.

D.

itab1 and itab2 must have the same data type.

Full Access
Question # 25

Which of the following are incomplete ABAP types? Note: There are 2 correct answers to this question.

A.

String

B.

T

C.

C

D.

P

Full Access