option
Questions
ayuda
daypo
search.php

ABAP 7.5 ABAP Types and Data Objects

COMMENTS STATISTICS RECORDS
TAKE THE TEST
Title of test:
ABAP 7.5 ABAP Types and Data Objects

Description:
ABAP Types and Data Objects

Creation Date: 2023/01/30

Category: Computers

Number of questions: 16

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

Data types store data and occupy memory. True. False.

A data object is concretely defined by means of the data type and occupied memory. It contains data with which ABAP programs works a runtime. True. False.

The predefined data types are defined locally in the ABAP program. True. False.

What is the default length of the type C data type?. 1. 10. 1-65535.

If data objects of type I are being used to store the result of a calculation, the decimals will be truncated. True. False.

What is the default length of the type P data type?. 8. 1. 1-16.

What is variable-length structure is called?. Nested structure. Deep structure. Flat structure.

Local data objects can be defined using ABAP Dictionary types. True. False.

Global data types defined in SAP systems are... Data defined in the program that is visible to all the routines/statements within the ABAP program. ABAP Dictionary types. Data types defined in the program using ABAP Dictionary types.

Which of the following are incorrect statements? Select all that apply. TYPES : carrid_ty LIKE spfli-s-carr_id. TYPES : werks TYPE C LENGTH 4. TYPES : date_ty TYPE D LENGTH 10. TYPES : str TYPE STRING LENGTH 20.

What is the result of the following arithmetic operation? DATA : int TYPE I. int = 5 * ( 3 / 10 ). 1. 2. 1.5. 0.

What is the result of the following arithmetic operation? DATA : int TYPE I. int = 5 / 10. 1. 5. 0.

The valid value for a decimal floating point number of type decfloat16 is a number between 1E385 and - 1E-383 for a negative number, 0, and 1E-383 to 1E385 for a positive number. True. False.

The valid value for a decimal floating point number of type decfloat34 is a number between 1E6145 and - 1E-6143 for a negative number, 0, and 1E-6143 to 1E6145 for a positive number. True. False.

Which of the following standard types is numeric? Select all that apply. I. P. F. decfloat32.

The system class CL_ABAP_MATH contains constants for maximum and minimum values for the numeric data type. True. False.

Report abuse