ABAP Certification Associate Developer -
ABAP Data types and Data Objects
1. Data
types store data and occupy memory.
A. True
B. False
Correct answer: B
2. A data
object is concretely defined by means of data type and occupies memory. It
contains data with which ABAP programs work at runtime.
A. True
B. False
Correct answer: A
3. The
predefined data types are defined locally in the ABAP program.
A. True
B. False
Correct answer: B
4. The
default length of the type C data type is:
A.1
B. 10
C. 1-65535
Correct answer: A
5. If
data objects of type I are being used to store the result of a calculation, the
decimals will be truncated.
A. True
B. False
Correct answer: B
6. The default length of the type P data type is:
A. 8
B. 1
C. 1-16
Correct answer: A
7. A variable-length structure is called:
A. Nested structure
B. Deep structure
C. Flat structure
Correct answer: B
8. Local data
objects can be defined using ABAP Dictionary types.
A. True
B. False
Correct answer: A
9. Global
data types defined in SAP systems arc:
A. Data defined in the program that is visible to the all the routines/statements
within the ABAP program
B. ASAP Dictionary types
C. Date types defined in the program using A8AP Dictionary
types
Correct answer: B
10. Which of the following are incorrect statements:
A. TYPES : carrid_ty LIKE spfli-s_carr_id .
B.TYPES: we r k s TYPE C LENGTH 4 .
C. TYPES: date_ty TYPE LENGTH 10 .
D. TYPES: Str TYPE STRING
LENGTH 20 .
Correct answers: C. D
11. What is the result of the following arithmetic operation.
DATA: int TYPE I.
int = 5*13/10 .
A.1
B.2
C. 1.5
D.0
Correct answer: D
12. What is the
result of the following arithmetic operation?
DATA :
Int TYPE I,
int = -5/10 .
A. 1
B. . 5
C. 0
Correct answer: A
No comments:
Post a Comment