Вы находитесь на странице: 1из 17

12/1/2018 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.

50 - Mini | ERPPrep

SAP Certified Development Associate - ABAP with SAP


NetWeaver 7.50 - Mini

You got 14 of 40 possible points.


Your score was: 35 %

Question Results

Question: Score 0 of 1

Which parameter types can be used in the signature of a functional method?


There are 2 correct answers to this question.

Response:

RETURNING

IMPORTING

EXPORTING

CHANGING

Question: Score 0 of 1

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

Response:

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.

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

https://www.erpprep.com/user/quiz/831584/userresults 1/17
12/1/2018 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Mini | ERPPrep

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

Question: Score 0 of 1

To reserve an area on the screen for an ALV Grid Control, you must do the
following:

Please choose the correct answer.

Response:

Create an object (instantiate the object) of the class CL_SALV_TABLE

Create an object (instantiate the object) of the class CL_GUI_ALV_GRID

Create an object (instantiate the object) of the class CL_GUI_CUSTOM_CONTAINER

Use the Screen Painter

Question: Score 0 of 1

You have written a program to output data using the ALV grid control. Which
sequence of steps should be executed at runtime?

Please choose the correct answer.

Response:

1. Create a grid object


2. Create a container object
3. Pass data to the grid object

1. Create a grid object


2. Pass data to the grid object
3. Create a container object

1. Pass data to the grid object


2. Create a container object
3. Create a grid object

1. Create a container object


2. Create a grid object
3. Pass data to the grid object
https://www.erpprep.com/user/quiz/831584/userresults 2/17
12/1/2018 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Mini | ERPPrep

Question: Score 0 of 1

For which of the following purposes can you use the ABAP dictionary?
There are 2 correct answers to this question.

Response:

To create development classes

To activate logging for transparent tables

To create lock objects

To maintain program translations

Question: Score 0 of 1

Which data types are incomplete ABAP standard data types?

There are 3 correct answers to this question.

Response:

Question: Score 1 of 1

When you add programming logic to your ABAP program that checks
authorizations,which of the following do you have to create?

There are 2 correct answers to this question.

https://www.erpprep.com/user/quiz/831584/userresults 3/17
12/1/2018 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Mini | ERPPrep

Response:

An authorization object

An authorization Access

An authorization profile

An authorization role

Question: Score 1 of 1

You want to add a field type CURR to a transparent table. What else must you do?

Please choose the correct answer.

Response:

Create a new field CUKY as a pre-defined type.

Add a check table that contains a field of type CUKY.

Create a reference to a field of type CUKY.

Add a key fieldof type CUKY.

Question: Score 0 of 1

After which statement will the runtime system initialize the ABAP memory
Please choose the correct answer.

Response:

SUBMIT

LEAVE TO TRANSACTION

CALL TRANSACTION

SUBMIT… AND RETURN

https://www.erpprep.com/user/quiz/831584/userresults 4/17
12/1/2018 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Mini | ERPPrep

Question: Score 1 of 1

What is the event block that all of your code changes belongs to if you do not
explicitly code any event blocks in an executable program?

Please choose the correct answer.

Response:

AT SELECTION-SCREEN OUTPUT

INITIALIZATION

LOAD-OF-PROGRAM

START-OF-SELECTION

Question: Score 1 of 1

The Internet Communication Manager (ICM)…


Please choose the correct answer.

Response:

Replaced SAP ITS.

Allows SAP NetWeaver Application Server to process HTTP requests.

Allows the ABAP stack and the Java stack to exchange data.

Can not replaced SAP ITS.

Question: Score 0 of 1

Which of the following function types in a GUI status are reserved for internal use?
There are 2 correct answers to this question.

Response:

E-EXIT

H-HELP REQUEST

https://www.erpprep.com/user/quiz/831584/userresults 5/17
12/1/2018 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Mini | ERPPrep

T-TRANSACTION

S- SYSTEM

Question: Score 1 of 1

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%’

Question: Score 0 of 1

Which method of passing parameters is preferred for its performance?


Please choose the correct answer.

Response:

Pass by reference

Pass by subclass

Pass by class

Pass by value

Question: Score 0 of 1

https://www.erpprep.com/user/quiz/831584/userresults 6/17
12/1/2018 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Mini | ERPPrep

What type of method is generated automatically by the Web Dynpro Explorer when
you assign an action to a button UI element?

Please choose the correct answer.

Response:

Ordinary method

Supply function

Standard hook method

Event handler method

Question: Score 0 of 1

Which of the following rules must you follow when you create a static constructor?

There are 3 correct answers to this question

Response:

You must name the method CLASS_CONSTRUCTOR

You can use ONLY importing parameters or exceptions

You CANNOT use parameters or exceptions

You can ONLY define static constructors in the public section

You must name the method CONSTRUCTOR

Question: Score 0 of 1

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

Please select all the correct answers that apply.

Response:

The text table for the selection method is automatically populated if the text table is
attached to the database table being used as the selection method.
https://www.erpprep.com/user/quiz/831584/userresults 7/17
12/1/2018 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Mini | ERPPrep

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.

Question: Score 0 of 1

You write a report that displays mass data in a table. You decide to use the ALV
Grid control (class CL_GUI_ALV_GRID) instead of a classical list display with
WRITE statements.

Which of the following functions can you offer to the user without doing any
specific programming
There are 2 correct answers to this question

Response:

Display details by double-clicking on a row

Convert currency amount columns

Change column width and sequence

Sort and filter the data by any column

Question: Score 1 of 1

What options do you have when setting a watchpoint?


There are 2 correct answers to this question.

Response:

Stop at any change of a specific variable.

Stop at any change of all variables.

Stop at predefined conditions for a specific variable.

https://www.erpprep.com/user/quiz/831584/userresults 8/17
12/1/2018 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Mini | ERPPrep

Stop at predefined conditions for all variables.

Question: Score 0 of 1

What does a Web Dynpro component contain?


There are 3 correct answers to this question.

Response:

A context

Exactly one interface controller

UI elements

Component controller

Multiple views within a window

Question: Score 0 of 1

What are the advantages of defining texts symbols in executable programs?

There are 2 correct answers to this question

Response:

Then can store up to 256 characters

The same text symbol can be used by other programs

They facilitate multilingual functionality

They are easier to maintain than literals

Question: Score 1 of 1

Which of the following is a true statement?


There are 3 correct answers to this question.

https://www.erpprep.com/user/quiz/831584/userresults 9/17
12/1/2018 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Mini | ERPPrep

Response:

A package can be nested.

Packages use interfaces and visibility to make their elements visible to other packages.

All customer repository objects have to be assigned to a package.

The transport layer is a mandatory input field for the package.

Question: Score 0 of 1

Which of the following statements can you use to setup checkpoints in an ABAP
program?
There are 3 correct answers to this question.

Response:

ASSERT

BREAK_POINT

BREAK

CHECK

LOG-POINT

Question: Score 0 of 1

Which of the following statements regarding the event AT SELECTIONSCREEN ON


HELP-REQUEST FOR <FIELD> is correct?

Please choose the correct answer.

Response:

This event will display (F1) help for the input field on the selection screen.

None of the above.

https://www.erpprep.com/user/quiz/831584/userresults 10/17
12/1/2018 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Mini | ERPPrep

This event will display self-defined (F1) help for the input field programmed in the
event block and will override any help possibly defined in the ABAP Dictionary for the
field.

This event will display self-defined (F1) help for the output field programmed in the
event block and will override any help possibly defined in the ABAP Dictionary for the
field.

Question: Score 1 of 1

What scheduling technique is used by the ABAP debugger dispatcher for processing
user requests?

Please choose the correct answer.

Response:

Round Robin

Shortest First

Multiple Queue

First in , First out

Question: Score 0 of 1

Which prerequisites must be fulfilled before a repository object can be transported?


There are 3 correct answers to this question.

Response:

A transport layer must be assigned to the package.

An application component must be assigned to the repository object.

An inactive version of the repository object must exist.

The repository object must be assigned to a package.

The repository object must be assigned to a change request.

https://www.erpprep.com/user/quiz/831584/userresults 11/17
12/1/2018 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Mini | ERPPrep

Question: Score 0 of 1

Which statements are allowed for processing internal tables?


There are 3 correct answers to this question.

Response:

SELECT

DELETE

INSERT

UPDATE

MODIFY

Question: Score 0 of 1

Which of the elementary data types is deep?

Please choose the correct answer.

Response:

XSTRING

DECFLOAT34

Question: Score 1 of 1

Which of the following transactions can you use to define transparent tables?
Please choose the correct answer.

Response:

SE38

https://www.erpprep.com/user/quiz/831584/userresults 12/17
12/1/2018 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Mini | ERPPrep

SE16N

SM37

SE11

Question: Score 1 of 1

How do you use a sorted internal table?

There are 2 correct answers to this question

Response:

You can read the records by index or key

You can resort the table with SORT

You use APPEND to insert records at the correct position

You need to specify a key in the table declaration

Question: Score 1 of 1

Which of the following values are replaceable in debugger mode?


Please choose the correct answer.

Response:

Variables

Field names

Table names

Constants

Question: Score 0 of 1

https://www.erpprep.com/user/quiz/831584/userresults 13/17
12/1/2018 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Mini | ERPPrep

You display the content of an internal table using an ALV grid control. The content
of the internal table changes during the program. Which CL_GUI_ALV_GRID class
method can you use to display the changed content?

Please choose the correct answer.

Response:

SET_TABLE_FOR_FIRST_DISPLAY in module PAI

REFRESH_TABLE_DISPLAY in module PAI

SET_TABLE _FOR_FIRST_DISPLAY in module PBO

REFRESH_TABLE_DISPLAY in module PBO

Question: Score 1 of 1

Which objects can share data through context mapping?


Please choose the correct answer.

Response:

View controller and another view controller

Component controllers and view controllers

Custom controllers and transparent tables

Global classes and component controllers

Question: Score 0 of 1

Your selection screen can be modified at which event?


Please choose the correct answer.

Response:

None of the above

AT SELECTION-SCREEN ON <field_name>

https://www.erpprep.com/user/quiz/831584/userresults 14/17
12/1/2018 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Mini | ERPPrep

AT SELECTION-SCREEN OUTPUT

AT SELECTION-SCREEN

Question: Score 1 of 1

Which objects are automatically created when you create a new function group?

Please choose the correct answer.

Response:

A function pool and two subroutine pools

A function pool and two module pools

A function pool and two include programs

A function pool and two function modules

Question: Score 1 of 1

At most, how many menu items (including functions, separators and sub- menus)
can a menu have on the screen?

Please choose the correct answer.

Response:

15

None of the above

10

20

Question: Score 0 of 1

https://www.erpprep.com/user/quiz/831584/userresults 15/17
12/1/2018 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Mini | ERPPrep

Which of the following tools belong to the ABAP Workbench?


There are 3 correct answers to this question.

Response:

Form Builder

Easy Access Menu

Function Builder

Class Builder

Screen Painter

Question: Score 0 of 1

Where can you define global data types that are visible system-wide?
There are 3 correct answers to this question.

Response:

In a global class

In a function module

In the ABAP Dictionary

In a global interface

In a method of a global class

Question: Score 0 of 1

You are making changes to a program that already has a transaction code linked to
it. Your colleague is testing the transaction in your development system. At what
point can the changed version of the program be tested?

Please choose the correct answer.

Response:

https://www.erpprep.com/user/quiz/831584/userresults 16/17
12/1/2018 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Mini | ERPPrep

When you save the program

When you release the transport requests for the program

When you perform a syntax check on the program

When you activate the program

Question: Score 0 of 1

What do you need to consider when creating a secondary index on a table?

There are 2 correct answers to this question

Response:

The most frequently selected fields should be at the first positions in the index

The index can be created for specific database systems only

The index must always be unique

The table will be updated more quickly if you create more indexes

Money Back Guarantee Testimonial FAQs Privacy Policy Terms and Conditions About Us Join Us
Contact Us

https://www.erpprep.com/user/quiz/831584/userresults 17/17

Вам также может понравиться