programming languages Online Quiz - 157
Description: programming languages Online Quiz - 157 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
What is the operator to specify the continuation of line
Data: itab type table of but000. (BP number is a primary key)
WRITE: / 'This is John' 's bicycle'.
how many size categories are available in tables?
What is Pretty Printer Job
ITS means
Concatenation function is possible only for
LOOP AT ITAB INTO LINE. ENDLOOP.
data: a, b, c. c = 20. a = b = c. write a, b, c. What is the output for the above program?
data: name type string value 'abap,abap.abap.abap,,abap'. Data: itab type table of string. Split name with ',' into table itab.
DATA: NAME(10) VALUE 'SOURCE', SOURCE(10) VALUE 'Antony', TARGET(10). WRITE (NAME) TO TARGET. WRITE: TARGET. What is the output for the above program?
DATA: ULTIMO TYPE D. ULTIMO = SY-DATUM. ULTIMO+6(2) = '01'. ULTIMO = ULTIMO - 1. write: ultimo.
What is the use of "RANGES" - a declarative keyword
Which of the following is true about the file which is referenced in a DELETE statement