admin 管理员组

文章数量: 887053


2024年1月5日发(作者:python编程输出udp网络连接)

1. Repository objects are not client-specific.

Determine whether this statement is true or false.

True

□ False

□ 2. Customer objects can be included in SAP packages. 2. Customer objects can be included in SAP packages.

Determine whether this statement is true or false.

True

□ False

□ 3. You must create a new application program for each language used in the system.

Determine whether this statement is true or false.

True

□ False

□ 4. When is the transport of development objects for a development request

triggered?

Choose the correct answer(s).

A When an object is saved.

□ B When an object is saved

□ C When a task is released

□ D When a request is released

□ 5. Using Dictionary types (descriptive elements), variables can be defined in the

program.

Determine whether this statement is true or false.

True

□ False

□ 6. What are the facts about data elements and domains?

Choose the correct answer(s).

A Data elements contain technical and semantic information. □ B Data elements always refer to domains.

□ C Data elements typically refer to domains.

□ D Data elements must not be used for defining a variable.

□ 7. Database tables are always created, with their content, in the

ABAP Dictionary.

Determine whether this statement is true or false.

True

□ False

□ 8. What is defined with the statement "DATA myvar TYPE dbtab." if dbtab

is a transparent table?

Choose the correct answer(s).

A A copy of the database table dbtab

□ B A table variable with the same structure as the database table dbtab

□ C A table variable with the same content as the database table dbtab

□ D A structure variable with the same structure as a dbtab row

□ 9. By which elements of the

ABAP Dictionary

can you set the type for a structure

variable within the program?

Choose the correct answer(s).

A Dataelement

□ B Domain

□ C Structure

□ D Transparent table

□ 10. What is an internal table?

Choose the correct answer(s).

A Database table

□ B Exceltable

□ C Variable in an ABAP program

□ D Table that is embedded in another table

□ 11. What is a table type?

Choose the correct answer(s).

A An internal table

□ B Description of an internal table

□ C Description of a database table

□ D The specification "STANDARD"/"SORTED"/"HASHED" for an

□ internal table

12. SBOOK is a database table.

Which syntax variant do you use to create an internal table with the same

structure as SBOOK?

Choose the correct answer(s).

A

DATA itab TYPE sbook.

□ B

DATA itab TYPE TABLE OF sbook.

□ C

DATA itab TYPE LINE OF sbook.

□ D

DATA itab LIKE sbook.

□ 13. Which statement retrieves a single record from an internal table?

Choose the correct answer(s).

A

SELECT ... ENDSELECT

□ B

SELECT SINGLE

□ C

READ TABLE

□ D

GET

□ E

FETCH

□ 14. In which system field do you find the number of the records read using SELECT?

Choose the correct answer(s).

A SY-SUBRC

□ B SY-TABIX

□ C SY-DBCNT

□ D SY-INDEX

□ 15. Which of the following statements concerning authorization checks are correct?

Choose the correct answer(s).

A In the SELECT statement, the corresponding authorization check is □ already integrated.

B The SELECT statement functions without any problem, even if the

user does not have the appropriate authorization for the read process.

C To protect data from unwanted access, an authorization check must

□ be implemented in the program.

D An authorization check must always be implemented in the program.

□ 16. Which of the following statements concerning authorization and authorization

checks are correct?

Choose the correct answer(s).

A An authorization object has fields and field values.

□ B An authorization is a real characteristic of an authorization object -

□ that is, an authorization object with field values.

C There are authorization objects in the user master record.

□ D Thereareauthorizations in the user master record.

□ 17. Which of the following statements concerning runtime analysis are correct?

Choose the correct answer(s).

A The runtime analysis also finds syntax errors in your programs.

□ B The runtime analysis also finds semantic errors in your programs.

□ C To get a detailed evaluation or the runtime analysis, you should create

□ a variant with the setting "No Aggregation" and specifiy it during

execution of the runtime analysis.

D When you are evaluating the results, you should always consider

□ the measurement environment - that is, the network/system load at

the time of measurement, the data volume, and possibly existing

table buffers

18. Which of the following statements on the

Code Inspector

are true?

Choose the correct answer(s).

A When a Code Inspector check is carried out, a check variant must

□ always be specified.

B To define the level of detail for a check, you can create an appropriate

□ check variant and specify it for the inspection.

C The execution of a

Code Inspector

check through the (context) menu

□ of the

Object Navigator

uses a standard check variant.

D Check variants, object sets, and inspections can be defined using

□ transaction SCI.

19. Which aspects are taken into consideration by the Code Inspector when a

program is examined?

Choose the correct answer(s).

A Syntax check

□ B Typical semantic errors (for example, AUTHORITY-CHECK

□ statement without subsequent SY-SUBRC check)

C Performance (for example, nested SELECT statements)

□ D Security (for example, cross-client data accesses)

□ E Formatting of the source code (for example, indenting of the program

□ lines within loops)

20. What purpose does the subroutine technique serve?

Choose the correct answer(s).

A For performance improvement

□ B For a better overview of program layout

□ C To encapsulate a function that is required many times within a

□ program for multiple use

D To implement the central maintainability of a function within a

□ program

E To make a function available across the system

□ 21. What purpose should the passing of parameters to subroutines serve?

Choose the correct answer(s).

A Mainly for passing user inputs to the subroutine

□ B For performance improvement

□ C For achieving more flexibility in the subroutine

□ D For achieving more stability in the subroutine

□ 22. Which of the following statements concerning subroutines are correct?

Choose the correct answer(s).

A When a subroutine is called, variables or literals are to be passed as

□ actual parameters to the corresponding formal parameters.

B When a subroutine is called, it is important to watch out for the same

□ names of formal parameters and actual parameters.

C The passing method for formal parameter is defined in the subroutine □ definition.

D There are two different passing methods for formal parameters.

□ E USING parameters without the VALUE addition are call-by-reference

□ parameters.

F Large internal tables should be passed to the subroutine through a call-by-value

□ parameter.

23. Which of the following statements regarding event processing blocks are correct?

Choose the correct answer(s).

A If a program does not have any explicit event processing blocks, all

□ the statements implicitly belong to the AT-SELECTION-SCREEN

block.

B The sequence of event processing blocks in the program does not

□ have any effect on the program flow.

C Event processing blocks can be nested within each other.

□ D Event processing blocks must be explicitly closed in each case.

□ 24. Using which syntax do you issue a text symbol named abc on the list?

Choose the correct answer(s).

A

WRITE abc.

□ B

WRITE 'abc'.

□ C

WRITE 'text-abc'.

□ D

WRITE text-abc.

□ 25. Which of the following statements regarding text elements of a program are

correct?

Choose the correct answer(s).

A Text symbols as well as list and column headings belong to the text

□ elements.

B Text elements are stored in the respective program.

□ C Not all text elements can be translated.

□ D Text elements of a program must be activated for use.

□ E By maintaining the list heading, you can also change the short

□ description of the program.

26. Which of the following statements concerning selection texts are correct?

Choose the correct answer(s).

A No selection texts can be maintained for select options.

□ B Just like list headings can be maintained directly on the list, so too

□ can selection texts be maintained directly on the selection screen.

C Selection texts cannot be translated.

□ D Selection texts belong to the text elements of a program, just like text

□ symbols and list headings, and therefore they can also be translated.

27. Which of the following statements concerning selection screens are correct?

Choose the correct answer(s).

A All the input fields of a selection screen have an F1 help available.

□ B All the input fields of a selection screen have an F4 help available.

□ C Typically, authorization checks are executed at the event AT

□ SELECTION-SCREEN.

D A user message of type E triggers the display of the message

□ text with program cancelation if it is transmitted at the event AT

SELECTION-SCREEN.

E Variants are filled-in selection screens of a program and are stored

□ with the program concerned.

28. Which of the following statements concerning the dynpro are correct?

Choose the correct answer(s).

A The static subsequent screen of a dynpro cannot be overridden

□ dynamically.

B A screen has a flow control setup, in addition to the attributes, layout,

□ and element list.

C You will find ABAP statements in the flow control of a screen.

□ D In the dynpro flow control, you will find references to modules that

□ are contained in the program and include ABAP statements.

E The automatic data transport between internal program variables and

□ dynpro fields takes place only with fields of the same name.

29. Which of the following statements concerning function modules are correct?

Choose the correct answer(s).

A When you call a function module, all the import, export, and

□ CHANGING parameters have to be filled with data.

B Whenever a function module is called, all exceptions should be

□ caught and handled. Otherwise, a runtime error occurs whenever an

exception that is not caught is triggered by the function module.

C When a function module is called, the IMPORT parameters are

□ passed with the IMPORT addition and the EXPORT parameters are

passed with the EXPORT addition.

D When a function module is called, the IMPORT parameters are

□ passed with the EXPORT addition and the EXPORT parameters are

passed with the IMPORT addition.

30. Which of the following statements concerning classes/methods are correct?

Choose the correct answer(s).

A In the SAP standard version, classes that contain useful functions are

□ already available.

B You can search for classes using the standard search tools "Repository

□ Info System" and "SAP Application Hierarchy". C You can use a standard class to control the SAP Grid Control (ALV).

□ D To call up other EnjoySAP controls (for example, tree control), you

□ must define your own specific classes.


本文标签: 输出 编程 网络连接 作者