0

programming languages Online Quiz - 112

Description: programming languages Online Quiz - 112
Number of Questions: 20
Created by:
Tags: programming languages
Attempted 0/20 Correct 0 Score 0

Transaction code for the Database utility is _______

  1. se14

  2. se11

  3. se16n

  4. All the Above


Correct Option: A

Transaction code for the Database Browser is ___________

  1. se16

  2. /nn

  3. se16n

  4. All the Above


Correct Option: D

Maximum "Include Structure" you can use in a Database Table

  1. 1

  2. None

  3. 9

  4. 4


Correct Option: C

Transaction for Table Maintenance Generator is?

  1. sm30

  2. /nn

  3. sap_maintain

  4. All the Above


Correct Option: A

__________structure contains System field values.

  1. SYST

  2. SLIS

  3. STXT

  4. None


Correct Option: A

The complete technical definition of a table field is determined by the field's

  1. Data Element

  2. Domain

  3. Predefined

  4. All the Above


Correct Option: B

Data Element can point to _______ Domain?

  1. One

  2. Multiple

  3. Two

  4. None


Correct Option: A

AI Explanation

To answer this question, we need to understand the concept of data elements and domains.

A data element is a basic unit of data that represents a single attribute of an entity. It is used to define the structure and characteristics of data within a system or database.

A domain, on the other hand, is a set of allowable values for a data element. It defines the range or set of values that a data element can take.

Based on the given question, a data element can point to only one domain. This means that a data element can have a single set of allowable values, and it cannot have multiple sets of allowable values.

Let's go through each option to understand why it is correct or incorrect:

Option A) One - This option is correct because it states that a data element can point to one domain, which means it can have a single set of allowable values.

Option B) Multiple - This option is incorrect because it contradicts the correct answer. A data element cannot point to multiple domains.

Option C) Two - This option is incorrect for the same reason as option B. A data element cannot point to multiple domains.

Option D) None - This option is incorrect because it states that a data element cannot point to any domain. However, a data element must have a domain to define its set of allowable values.

Therefore, the correct answer is option A) One. This option is correct because a data element can point to only one domain, representing a single set of allowable values.

Which of the following is not ABAP dictionary table?

  1. Transparent

  2. Cluster

  3. Pool

  4. Internal


Correct Option: D

AI Explanation

To answer this question, you need to understand the different types of tables in the ABAP dictionary.

Option A) Transparent - This option is correct. Transparent tables are the most common type of tables in the ABAP dictionary. They store data in a one-to-one relationship with the fields in the table.

Option B) Cluster - This option is correct. Cluster tables are used to store large amounts of data efficiently. They store data in a compressed format and are mainly used for read-only operations.

Option C) Pool - This option is correct. Pool tables are used to store data that is shared by multiple programs. They are mainly used for temporary storage and are not persistent.

Option D) Internal - This option is incorrect. Internal tables are not part of the ABAP dictionary. They are data objects that are used to store data temporarily within an ABAP program.

The correct answer is D. Internal tables are not ABAP dictionary tables.

What must be assigned to search help parameters

  1. Nothing

  2. Domain

  3. Values

  4. Data Element


Correct Option: D

Can View have Indexes?

  1. Multiple

  2. Single Index

  3. Two are Allowed

  4. None


Correct Option: D

Maximum Indexes preferable for the database table.

  1. 2

  2. 6

  3. 9

  4. None


Correct Option: C

The standard function key used for displaying a list of possible values is:

  1. F1

  2. F2

  3. F3

  4. F4


Correct Option: D

SAP stands for?

  1. Systems Applications and Products in Data Processing

  2. SAP Application and Products in Data Processing

  3. Systems Applications and Products

  4. Systems Applications and Programming in Data Processing


Correct Option: A

What is the Transaction code for Function Module Creation?

  1. se38

  2. se36

  3. se37

  4. se39


Correct Option: C

Function module required Function Group?

  1. True

  2. False


Correct Option: A

RFC can return references

  1. True

  2. False


Correct Option: B

Where will you declared changeable parameters in Function Module .

  1. Import

  2. Export

  3. Exception

  4. Tables


Correct Option: D

Which Attribute is mandatory for BAPI?

  1. Normal Function Module

  2. Update Module

  3. Remote enable

  4. None


Correct Option: C

What is the associated type for the parameter RETURN?

  1. BAPIRET2

  2. BAPIRETURN

  3. BAPIRET

  4. All the Above


Correct Option: D

What will print out? main() { char p1=“name”; char *p2; p2=(char)malloc(20); memset (p2, 0, 20); while(*p2++ = *p1++); printf(“%sn”,p2); }

  1. empty string

  2. 20

  3. 0

  4. error


Correct Option: A
- Hide questions