In class ZCL_CLASS_A, you use the statement DATA var TYPE ***
What may stand in place of ***? Note: There are 2 correct answers to this question.
A. The name of a type defined privately in class ZCL_CLASS_A
B. The name of a data element from the ABAP Dictionary
C. The name of a type defined privately in another class
D. The name of a domain from the ABAP Dictionary
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
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.

Which predicate condition can you ensure that the CAST will work?
A. IS SUPPLIED
B. IS NOT INITIAL
C. IS INSTANCE OF
D. IS BOUND
Exhibit:

What are valid statements? Note: There are 3 correct answers to this question.
A. go_if 1 may call method ml with go_ift->ml().
B. Instead of go ell = NEW #(...) you could use go ifl = NEW cll(. ... ).
C. go_cll may call method ml with go_dl->ifl-ml().
D. Instead of go_cll = NEW #() you could use go_iff - NEW #(...).
E. go_ifl may call method m2 with go if->m2(...).
Which of the following are ABAP Cloud Development Model rules? Note: There are 2 correct answers to this question.
A. Use public SAP APIs and SAP extension points.
B. Build ABAP RESTful application programming model-based services.
C. Reverse modifications when a suitable public SAP API becomes available.
D. Build ABAP reports with either ABAP List Viewer (ALV) or SAP Fiori.
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
When processing an internal table with the statement LOOP AT itab... ENDLOOP, what system variable contains the current row number?
A. sy-index
B. sy-subrc
C. sy-linno
D. sy-tabix

(Sorry, we do not have a more clear image. If we have a better resource for the image, we will update this one immediately.)
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
In a program you find this source code
AUTHORITY-CHECK OBJECT '/DWO/TRVL ( ID 'CNTRY' FIELD 'DE* ID ACTVT FIELD '03".
Which of the following apply? Note: There are 2 correct answers to this question.
A. If the user is authorized for 'CNTRY = 'DE' then the return code is always 0.
B. If the user is NOT authorized for 'CNTRY' = 'DE' OR for 'ACTVT' = '03 then the program will terminate.
C. If the user is authorized for 'CNTRY = 'DE' AND for 'ACTVT = '03 then the return code is 0.
D. AUTHORITY CHECK verifies whether a user is authorized for/DMO/TRVL" with the listed field values.