option
Questions
ayuda
daypo
search.php

ABAP Types and Data Objects

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

Description:
based on ABAP 7.5 Guide

Creation Date: 2022/03/25

Category: Others

Number of questions: 16

Rating:(2)
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 work at 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 a variable-length structure 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 type. Date 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. 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