Sunteți pe pagina 1din 20

SAP Certified Development Associate - ABAP with SAP

NetWeaver 7.50 - Mini


You got 13 of 40 possible points.
Your score: 33 %

Question Results
Score 1 of 1
Question:

What do you have to take into account before you decide to buffer a table?

Please choose the correct answer.

Response:

The entire table content must be loaded into the table buffer

The data must always be read from the buffer

The database server must allow table buffering

The data read from the buffer may NOT be cu


current

Score 0 of 1
(skipped)
Question:

You are establishing the business logic layer for a Web Dynpro Component.
Which service types are available in the Service Call wizard?

There are 3 correct answers to this question.

Response:

Transaction code

Web service proxy

Class method
Function module

Function group

Score 1 of 1
Question:

What must you do to define a database view using the ABAP Dictionary?
There are 3 correct answers to this question.

Response:

Define the join conditions between the tables.

Define buffering settings for the underlying database tables.

Define selection criteria for the view.

Choose the fields from the tables that should be part of the view.

Choose the database tables from where the view acquires data.

Score 1 of 1
Question:

Which statements about ABAP are true?


Please choose the correct answer.

Response:

Each statement cannot begin with a keyword.

Each statement must end with a period.

Each statement must begin with a keyword.

ABAP keywords and additions must be in uppercase.

Score 0 of 1
Question:

You defined data reference z1 generically.


Which statement would you use to access the content of the referenced
variable?
Please choose the correct answer.

Response:

Assign (z1) to <fs>

Assign z1 to <fs>

Assign z1->*
>* to <fs>

Get reference of z1 into wa

Score 0 of 1
(skipped)
Question:

A work process…
Please choose the correct answer.

Response:

Stays linked toa screen through the dispatcher.

Becomes inactive while waiting for a user.

Uses a common memory area called shared memory.

Becomes active while waiting for a user.

Score 0 of 1
Question:

What are characteristics of a hashed internal table?

There are 2 correct answers to this question.

Response:
It must have a unique key.

It can be accessed using the key.

It can be accessed using the index.

It can have a non


non-unique key.

Score 0 of 1
Question:

Which of the following are valid control level changes within a loop over an
internal table?
There are 2 correct answers to this question.

Response:

SUM

END of <f>

COLLECT

LAST

Score 1 of 1
Question:

Which comparison operators can you use in a logical expression related to the
WHERE clause of the SELECT statement?

There are 3 correct answers to this question.

Response:

LIKE (fits pattern)

CP (covers pattern)
GT (greater than)

CO (contains only)

EQ (equals)

Score 0 of 1
Question:

What is the result of the following arithmetic operation?

DATA: intTYPEI.
int=5*(3/10).

Please choose the correct answer.

Response:

1.5

Score 0 of 1
(skipped)
Question:

Which of the following statements are true?


There are 2 correct answers to this question.

Response:

Standard tables can be accessed by index.

Standard tables cannot be accessed by index.


A sorted table is always accessed by a unique key.

Hashed tables are always accessed by index.

Hashed tables are accessed by a unique key.

Score 0 of 1
Question:

Which desktops are part of the new ABAP debugger?


There are 3 correct answers to this question.

Response:

Session

Break./Watchpoints

Objects

List

Desktop 1

Score 0 of 1
Question:

Which statement will interrupt the processing of the current screen and
branch to new screen?

Please choose the correct answer.

Response:

SET SCREEN <NNNN>

None of the above


CALL SCREEN <NNNN>

LEAVE TO SCREEN <NNNN>

Score 0 of 1
Question:

Which type of view cannot be used in a search help?


Please choose the correct answer.

Response:

Database view

Maintenance view

Help view

Candidates key view

Score 0 of 1
(skipped)
Question:

Which statements are true?


There are 5 correct answers to this question.

Response:

The ALV Grid uses a reference to the data table for display.

The ALV Object Model uses a reference to the data table for display.

The ALV Grid can define a sort criteria for initial display.

The ALV Object Model can define a sort criteria for initial display.

The ALV Grid requires a table refresh after programmatically changing


the ALV.

The ALV Object Model requir


requires
es a table refresh after programmatically
changing the ALV.

Score 0 of 1
Question:

When does the lifetime of a Web Dynpro component begin and end?
Please choose the correct answer.

Response:

It begins when instantiated and it ends when the program ends or the
object is freed.

It ends each time it is called, and it ends when the component completes.

It begins the first time it is called at runtime, and it ends with the Web
Dynpro application that called and instantiated the component ends.

It begins each time it is called, and it ends when the component


completes.

Score 0 of 1
(skipped)
Question:

Which of the following regarding search helps is a true statement?

Please select all the correct answers that apply.

Response:

The interface for the search help is defined by the IMP (import) and EXP
(export) flag of the search help parameter.

The LPos parameter defines the position of the search help parameter in
the search hit list.
The SPos parameter defines the position of the input field on the dialog
screen.

The text table


ble for the selection method is automatically populated if the
text table is attached to the database table being used as the selection
method.

Score 0 of 1
Question:

Which of the following ABAP standard types are incomplete?


There are 2 correct answers to this question.

Response:

STRING

Score 0 of 1
Question:

Which ABAP statement using the local type gty_1 correctly defines a data
object?
There are 2 correct answers to this question.

Response:

DATA gv_1 TYPE gty_1.

DATA gv_1 LIKE gty_1.

CONSTANTS gc_1 TYPE gty_1 VALUE '1'.


DATA gv_1 TYPE gty_1 DEFAULT '1'.

Score 0 of 1
(skipped)
Question:

What is data binding?

Please choose the correct answer.

Response:

Connecting an outbound plug on one view to the inbound plug of another


view

Connecting one Web Dynpro component to another Web Dynpro


component

Connecting a context node in one controller to a context node in another


controller

Connecting the values of user interface elements to the context attributes


of the corresponding controller

Score 0 of 1
(skipped)
Question:

Which you should specify in a non


non-Unicode
Unicode system when opening a file in TEXT
MODE?

There are 2 correct answers to this question.

Response:

The ENCODING addition

The byte order

The code page


The storage order

Score 0 of 1
Question:

Which of the following includes are generated when you create a function
group?
Please choose the correct answer.

Response:

LxxxxUXX

LxxxxF01

LxxxxO01

LxxxxTOP

Score 0 of 1
Question:

You want to select all the records from a database table where field CITY
contains substring ‘BU’ in any position. Which WHERE clause can you use in an
Open SQL select statement?

Please choose the correct answer.

Response:

WHERE city LIKE ‘%BU%’

WHERE city LIKE ‘_BU’

WHERE city LIKE ‘*BU*’

WHERE city LIKE ‘%BU*’

Score 1 of 1
Question:
Which of the following ABAP statements throws an error at the syntax check?
Please choose the correct answer.

Response:

DATA variable(5) TYPE n.

DATA variable(5) TYPE p.

DATA variable(5) TYPE t.

DATA variable

Score 0 of 1
Question:

In an ABAP program, you to assign an initial value to an elementary data


object when you define it. Which addition must you use?

Please choose the correct answer.

Response:

OBLIGATORY

VALUE

DEFAULT

READ-ONLY

Score 1 of 1
Question:

Which of the following ABAP dictionary types can you use to define domains?

There are 3 correct answers to this question

Response:
NUMC

DATE

CHAR

DEC

FLOAT

Score 0 of 1
(skipped)
Question:

A view can only be displayed in which circumstances?


Please choose the correct answer.

Response:

It has been embedded in a window.

It contains an inbound and outbound plug.

It can always be displayed.

It cannot always be displayed.

Score 1 of 1
Question:

Which type of view uses an inner join in a search help?


Please choose the correct answer.

Response:

Candidate key view

Help view
Database view

Maintenance view

Score 1 of 1
Question:

What is the allowed length of the ABAP Dictionary data type DF34_RAW?
Please choose the correct answer.

Response:

The allowed length is 34 digits.

The allowed length is between 1 and 31 digits.

The allowed length is between 0 and 33 digits.

The allowed length is between 1 and 34 digits.

Score 1 of 1
Question:

Which of the following variables is the self


self-reference
reference variable in ABAP OO?
Please choose the correct answer.

Response:

THIS

SUPER

SENDER

ME

Score 0 of 1
(skipped)
Question:
You want to develop a program that processes character type data. When you
implement the program, you can either use the classical string statements or
the newer strings expressions and functions

What are the main benefits of using string expressions and s


string
tring functions?
There are 2 correct answers to this question

Response:

You can write compact syntax instead of a long sequence of statements

You can reduce the number of intermedia


intermediate
te variables

You can improve the performance significantly

You can write code that is very easy to read and understand

Score 1 of 1
Question:

You have defined a classical screen (dynpro) with mandatory input fields. You
want to exit the screen using the Cancel button even if not all of the
mandatory fields have been filled. What is necessary to achieve this?

Please choose the correct answer.

Response:

Assign function type E to the Cancel button and handle it in a module


with the addition AT EXIT
EXIT-COMMAND.

Use the LOOP AT SCREEN. ... ENDLOOP statement to set the "required"
property of the input fields to zero.

Set the function type assigned to the Cancel button to S and handle it in
a module with the addition AT EXIT
EXIT-COMMAND.

Set the function code assigned to the Cancel button to CANCEL and
handle it in a module with the addition AT EXIT
EXIT-COMMAND.
COMMAND.

Score 0 of 1
(skipped)
Question:

Why should you bundle database updates in your dialog programs?


Please choose the correct answer.

Response:

To process the SAP LUW within the data


database
base LUW to ensure data
consistency

To be able to rollback database changes performed in the same dialog


step

To avoid database locks set by an SQL statement that persists until


the end of the program

To allow you to use SAP locks to ensure data consistency

Score 1 of 1
Question:

Each component has an interface; of what does this interface consist?

There are 2 correct answers to this question.

Response:

Interface view

Data Container

Interface context

Interface controller

Score 1 of 1
Question:

What are the advantages of modularization?

There are 3 correct answers to this question


Response:

Performance

Profitability across DBMS

Maintainability

Transparency

Reusability

Score 1 of 1
Question:

You want to define two database tables with different structures. Both tables
should contain the fields CHANGE_DATE and CHANGE_TIME.

How do you implement this in order to minimize the maintenance effort?

Please choose the correct answer.

Response:

Define the two fields in each database table separately.

Define an append structure with these two fields and assign this append
structure to both database tables.

Define a structure with these two fields and include this structure in
both database tables.

Define the two fields in one database table and copy them to the other
database table.

Score 0 of 1
Question:

When included in a structure, which elementary field types allow the structure
to be considered a character
character-type data object?
There are 4 correct answers to this question.

Response:

XSTRING

STRING

Score 0 of 1
(skipped)
Question:

Which steps are needed when implementing the singleton concept for class
instantiation with minimum coding?
There are 3 correct answers to this question.

Response:

Define the instantiation of the class as private.

Create an instance of the class in a static constructor.

Define the class


ass as abstract.
Save the instance of the class in a static attribute.

Create an event that returns the instance of the class.

Score 0 of 1
Question:

can you search for suitable classic Business Add


Add-Ins(BAdIs)?

There are 2 correct answers to this question

Response:

Search in the Repository Information System and choose


Enhancements - >Customer Exits

Use the SAP menu Tools -> ABAP Workbench ->


> Development ->
Business Object Builder

Search for suitable entries in the relevant component in the


Implementation Guide (IMG)

Search in an application program for the method GET_INSTANCE of


class CL_EXITHANDLER

Score 0 of 1
(skipped)
Question:

If you are using external debugging (debugging of HTTP and RFC


requests, which arrive in your ABAP system), what will the Debugger do?

Please choose the correct answer.

Response:

Always stop when the external breakpoint is reached.

Never stop; external breakpoints operate on users other than your own.
May or may not stop, depending on external factors.

Do not stop when the external breakpoint is reached.

S-ar putea să vă placă și