programming languages Online Quiz - 112
Description: programming languages Online Quiz - 112 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
Transaction code for the Database utility is _______
Transaction code for the Database Browser is ___________
Maximum "Include Structure" you can use in a Database Table
Transaction for Table Maintenance Generator is?
__________structure contains System field values.
The complete technical definition of a table field is determined by the field's
Data Element can point to _______ Domain?
Which of the following is not ABAP dictionary table?
What must be assigned to search help parameters
Can View have Indexes?
Maximum Indexes preferable for the database table.
The standard function key used for displaying a list of possible values is:
SAP stands for?
What is the Transaction code for Function Module Creation?
Function module required Function Group?
RFC can return references
Where will you declared changeable parameters in Function Module .
Which Attribute is mandatory for BAPI?
What is the associated type for the parameter RETURN?
What will print out? main() { char p1=“name”; char *p2; p2=(char)malloc(20); memset (p2, 0, 20); while(*p2++ = *p1++); printf(“%sn”,p2); }