ABAP Basics - 1

Embed Size (px)

Citation preview

  • 8/2/2019 ABAP Basics - 1

    1/7

    ABAP Basics

    Note: The format does not necessarily comply with the certification

    format.

    The questions may contain more than one correct answer. Please select

    all the right answers.

    1. The Internet Communication Manager (ICM)

    a. Replaced SAP ITS

    b. Allows SAP Netweaver application server to process HTTP requests

    c. Allows the ABAP stack and JAVA stack to exchange data

    Ans: b

    2.The JAVA stack and ABAP stack should always be installed together on an SAP

    NetWeaver application server

    a. True

    b. False

    Ans: b

    3. A work process:

    a. Stays linked to the screen through a dispatcher

    b. Becomes INACTIVE while waiting for a user

    c. Uses a common memory area called the Shared memory

    Ans: c

  • 8/2/2019 ABAP Basics - 1

    2/7

    4. Each work process:

    a. Is independent of other work process

    b. Uses a pool of database connections established when the SAP

    NetWeaver application server ABAP started

    c.Uses a database work process established when the SAP Netweaver

    server started

    d. Can only mask database changes spanning multiple database LUW

    e. Can only make database changed within a single database LUW

    Ans: a, d

    5. Each work process is assigned a type of task that can be performed. Which staments

    are true related to this?

    a. To switch a work process type requires a restart of the SAP NetWeaver

    application server ABAP

    b. All work process have the same structure

    c. All work processes communicate with the database

    d. All work processes communicate with the dispatcher

    e. A work process can communicate directly with an external system through a

    Remote Function Call

    f. It is possible to have multiple enqueue work processes on an SAP netWeaver

    application server

    g. It is possible to have multiple spool work process on an ABAP application

    server

    Ans: b,d,f

    6. The Object Navigator incorporates a total of 10 browsers.

    a. True

  • 8/2/2019 ABAP Basics - 1

    3/7

    b. False

    Ans: b

    7. The Repository Information System is started by default when you execute

    Transaction SE80 for the Object Navigator.

    a. True

    b. False

    Ans: a

    8. Which of the following statements are NOT true ?

    a. All transportable objects have to assigned to a package

    b. Local repository objects can be transported

    c. Inactive objects can be transported

    Ans: b,c

    9. For any given object, there can be _ versions in the ABAP editor.

    a. 3

    b. 1

    c. 2

    Ans: c

    10. It is possible to make multiple changes to the same data object in the debugger.

    a. True

    b. False

    Ans: a

  • 8/2/2019 ABAP Basics - 1

    4/7

    11. All breakpoints are valid for an entire session and all can be changed during that

    session

    a. True

    b. False

    Ans: a

    12. Data types store and occupy memory.

    a. True

    b. False

    Ans: b

    13. The predefined data types are defined locally in the program.

    a. True

    b. False

    Ans: b

    14. If data objects of type I are used to store the results of a calculation, then the

    decimals will be truncated.

    a. True

    b. False

    Ans: b

    15. A variable length structure is called:

    a. Nested structure

    b. Deep structure

    c. Flat structure

    Ans: b

  • 8/2/2019 ABAP Basics - 1

    5/7

    16. Which if the following are incorrect statements

    a. Types: carrid type scarr-carrid

    b. types: weeks type C length 4

    c. types: ty_date type D length 10

    Ans: c

    17. How many kinds of internal tables are supported in ABAP.

    a. 4

    b. 2

    c. 1

    d. 3

    Ans: 3

    18. Which of the following statements are true?

    a. Standard tables can be accessed only using index

    b. A sorted table is always accessed using unique key

    c. Hashed tables are always accessed by index

    d. Hashed tables are always access by key

    Ans: d

    19. Which actions release a lock object?

    a. COMMIT Work

    b. ROLLBACK Work

    c. The display of an SAP screen

    d. The display of a dialog message type E

  • 8/2/2019 ABAP Basics - 1

    6/7

    e. The display of a dialog message type A

    f. Enqueue_

    g. Dequeue_

    h. A call to a function module

    i. call to a transaction

    Ans: a,b, e, f

    20. The data buffered on each application server is

    a. always the same

    b. never the same

    c. depends on the user

    Ans: c

    21. The target structure of a SELECT statement requires a field name to match the

    columns selected and to be in the same left-justified order

    a. True

    b. False

    Ans: a

    22. When the ENDSELECT not required for a SELECT

    a. when the FROM is a view

    b. when you specify a join of tables

    c. when you do a SELECT SINGLE

    d. when you specify INTO TABLE

    Ans: c,d

  • 8/2/2019 ABAP Basics - 1

    7/7

    23. The database always uses the primary key to fetch the records when the WHERE

    clause contains any of the key fields

    a. True

    b. False

    Ans: b

    24. Open SQL does not allow you to specify a secondary index during a SELECT

    a. True

    b. False

    Ans: a

    25. You should always buffer database tables that contains fewer than 100 records.

    a. True

    b. False

    Ans: f