Download as pdf or txt
Download as pdf or txt
You are on page 1of 9

9/2/2014 ABAP- WDA

http://www.proprofs.com/quiz-school/story.php?title=abap-merp 1/9
Create A Quiz
Take Quizzes
Take A Quiz
Popular This Month
View Examples
Store

Phsyical Education 103 Pre-Exam
Corel Draw
On Line Test For SPC - LED, LCD, Plasma - 2010
MKTG 201 Test 2 Practice
Actual Exam
Multiple Choice Questions
Related Quizzes
Related Topics
Popular Quizzes
Search Quizzes


Search Quizzes
9/2/2014 ABAP- WDA
http://www.proprofs.com/quiz-school/story.php?title=abap-merp 2/9
40 Questions I By Satbond
A.
Which Internet Cat Sensation Are You?
Which Modern Film Director Should Direct The Story Of Your Life?
Which Fairy Tale Prince Should You Marry?
Which Type Of Coffee Are You?
Which Celebrity Health Fad Should You Try Next?
Take Another Quiz
Quizzes Test And Exam Actual Exam ABAP- WDA
Abap- Wda
ABAP Mock Exam This is a mock test just to give u a feeler and gauge your current
knowledge. Actual exam would be almost the same pattern. In you actual exam all
multiple choice questions would have only one correct answer. Disclaimer: Passing this
exam shouldn't give u a impression that you will pass the actual exam, probably it may
help you. But you still need to study more till the exam. Best of Luck :)- SN
Start
Remove Excerpt
Question Excerpt
1. Evaluate the below code data: v1 type i value 10, v2 type i value 20. start-of-selection. perform doCalculations
using v1 changing v2. write:/v1,v2 form doCalculations using p_v1 changing value(p_v2). p_v1 = p_v1 + 10. p_v2 =
p_v2 + 10. endForm what is the output of the write statement above
10,20
9/2/2014 ABAP- WDA
http://www.proprofs.com/quiz-school/story.php?title=abap-merp 3/9
B.
C.
D.
E.
A.
B.
C.
D.
E.
A.
B.
C.
D.
E.
A.
B.
C.
D.
E.
A.
B.
C.
D.
A.
B.
C.
D.
E.
A.
B.
C.
10,30
20,20
20,30
10,10
2. Evaluate the following code and choose the correct output Data: str1(5) type c, str2(3) type c. str1 =
'SAPAG'. str2 = str1+1. write:/ str2. (only 1 correct answer)
Compile time error as the length is not same
Run time error as "+" operator can be only used with numericals
APA
APAG
SAPAG
3. Function Code associated with Menu Bar, Toolbar etc when triggered are stored in which system variable(only 1
correct answer)
sy-datum
sy-lsind
sy-ucomm
sy-curow
sy-okcode
4. Statement CLEAR itab_data does (more than 1 correct answer)
clear the internal table, assuming itab_data is internal table without header line
clears the internal table and the header line, assuming itab_data is defined as internal table with header line
clears the internal table body only, assuming itab_data is defined as internal table with header line.
clears the header line of internal table, assuming itab_data is defined as internal table with header line
clears the work area, assuming itab_data is defined as internal table without header line
5. To display a icon in report program which of the following step should be done (more than 1 correct answer)
use include icon statement in ABAP program
use include symbol statement in ABAP program
write the following statement write:/ iconname
write the following statement write:/ iconname as icon
6. Which statements are true about interactive reports(only 1 correct answer)
In interactive report you have have 1 basic list and max 19 secondary list
In interactive report you can have as many basic list and as many secondary list
In interactive report you can have max 20 basic list and 20 secondary list
In interactive report limit is dependent upon the operating system
In interactive report you can have 1 basic list and max 20 secondary list
7. Which of the following table types has one is to one relationship between the ABAP dictionary and physical table in
database (only 1 correct answer)
Transparent Table
Pooled Table
Structures
9/2/2014 ABAP- WDA
http://www.proprofs.com/quiz-school/story.php?title=abap-merp 4/9
D.
E.
A.
B.
C.
D.
E.
A.
B.
C.
D.
A.
B.
C.
D.
E.
A.
B.
A.
B.
C.
D.
E.
A.
B.
C.
D.
E.
A.
B.
C.
Standard Table
Cluster Table
8. Which statement allows you to store the field contents for a particular list line in special memory area, used typically in
interactive report(only 1 correct answer)
INTERACTIVE
SHOW
CLEAR
REPORT
HIDE
9. ABAP programs are stored in (only 1 correct answer)
Application Server
Database Server
On the presentation PC
on separate Hard disk connected to SAP server
10. Evaluate the following code data : a type i value 10, b type i value 20, c type i value 5. perform calculate
using a b changing c. write:/ a,b,c. form calculate using p_a value(p_b) changing value(p_c). p_a = p_a + 10. p_b =
p_b + 10. p_c = p_a + p_b. endForm. (Only 1 correct answer)
20 20 50
20 20 5
10 20 30
10 20 30
error at run time
11. Can a subroutine defined in one ABAP program can be called in another ABAP program (true/false)
true
false
12. Which of the following statements are true about Dataelements in ABAP Dictionary (more than 1 correct )
Technical information like type, size etc
Semantic Information like labels, search help etc
Data Elements are the elementary objects
Dataelements are like database tables
Data Elements are stored as work area in ABAP
13. Default event block in ABAP report is(only 1 correct answer)
INITIALIZATION
START-OF-SELECTION
AT LINE-SELECTION
TOP-OF-PAGE
AT USER-COMMAND
14. Supply Function in WebDynpro is (one correct answer)
Is never called prior to the initial read access to the associated context node.
Is always called after the initial read access to the associated context node.
Is always called before the initial read access to the associated context node.
9/2/2014 ABAP- WDA
http://www.proprofs.com/quiz-school/story.php?title=abap-merp 5/9
D.
A.
B.
C.
D.
E.
A.
B.
C.
D.
A.
B.
C.
D.
E.
A.
B.
C.
D.
A.
B.
C.
D.
A.
B.
C.
D.
A.
B.
C.
D.
None of the above.
15. Logical Database is.... (more than 1 correct )
is a ABAP program usually delivered by SAP
is used for data retrieval
can be used in any kind of ABAP program
supplies selection screen automatically to the calling program
1 ABAP program can attach max 2 logical database
16. Evaluate the following code and choose the correct output(only 1 correct answer) do 5 times. check sy-index
between 3 and 5. write:/ sy-index. enddo.
1,2
3,4,5
1,2,3
1,2,3,4,5
17. Web Dynpro components is
modular unit representing a set of tasks
is the core of a WebDynpro application
consist of windows
consist of views
all of the above
18. Evaluate the following code and choose the correct answer parameters: pa_car type scarr-carrid. data:
wa_scarr type scarr. data: it_scarr type scarr occurs 0. select * from scarr into wa_scarr where carrid =
pa_car. ......... endselect. (only 1 correct answer)
wa_scarr at any time will contain atleast 1 row
wa_scarr at any time will contain min 0 rows and max 1 rows
wa_scarr at any time will contain min 1 row and max n rows
error as wa_scarr is a structure and not an internal table
19. To enable navigation between two views which of the following is not a valid step(only 1 correct answer)
You need to create a inbound and outbound plug in the respective views
You need to create naviagtion link between the outbound plug and inbound plug in the window
you need to create context object in the controller
you need to create a UI object in view and in the action call the outbound plug
20. Which is not a task of Database Interface(DBI)?(only 1 correct answer)
Usage of SAP buffer
Conversion of SQL statements into native SQL statements
Syntax check of native SQL
Database independence of application programs
21. Current index of row in internal table is stored in system variable(only 1 correct answer)
sy-ucomm
sy-lsind
sy-subrc
sy-index
9/2/2014 ABAP- WDA
http://www.proprofs.com/quiz-school/story.php?title=abap-merp 6/9
E.
A.
B.
C.
D.
A.
B.
C.
D.
E.
A.
B.
C.
A.
B.
C.
D.
E.
A.
B.
C.
D.
E.
A.
B.
C.
D.
A.
B.
C.
sy-tabix
22. INSTANTIATION in ABAP OO is(only 1 correct answer)
The process of passing parameter values to a class method.
The process of assigning default values to class attributes
The process of creating a discreet object from a class definition.
The process of passing on the attributes of one class to another.
23. Assume a Class called LCL_A is defined having one instance method call showData(), in order to call the show
data methods which of the following steps should be performed (not necessarily in the same order ) More than 1
correct answer
need to declare object of class lcl_a
need to instantiate the object
use format obj->showData() to execute the method
use format obj=>showData() to execute the method
no need to instantiate the object as showData is an instance method
24. In Web Dynpro for ABAP technologies, whats the advantage of using MVC paradigm
MVC paradigm is meant more for developers for better technical understanding
MVC paradigm is a proprietary pattern meant only for SAP technologies
MVC paradigm gives better understanding of the design and development process and to lower project cost and
maintainance cost
25. Repository objects are (more than 1 correct)
Repository objects are cross client
Repository objects are client dependent
All ABAP objects are Repository Objects
Only ABAP programs are Repository Objects
Repository objects are stored in Database alongwith Customizing and Application tables
26. Which of the following is a valid presentation client in 3 tier technology of SAP R/3 (only 1 correct answer)
Database Server
SAP GUI Client
Application Server
Web Server
LDAP server
27. Keyword that define a block of code to be executed when the systems detects a certain occurrence is called (only 1
correct answer)
Exit
Halt
Event
Control Break
28. Select * from scarr into table it_scarr, in this statement what does '*' indicates(only 1 correct answer)
All rows of the table scarr
column/field called '*' from scarr
All columns/fields from scarr
9/2/2014 ABAP- WDA
http://www.proprofs.com/quiz-school/story.php?title=abap-merp 7/9
D.
A.
B.
C.
D.
E.
A.
B.
C.
D.
A.
B.
C.
D.
E.
A.
B.
C.
D.
A.
B.
C.
D.
E.
A.
B.
C.
D.
E.
Cannot do this
29. Consider the following ABAP code used to define an internal table.(only 1 correct answer) data: itab_scarr type
scarr occurs 0, wa_scarr like line of itab_scarr. wa_scarr is defined as a:
Buffer
Work Area
Header
Header Line
Internal table
30. Assuming you have defined the following ABAP code data: wa_scarr type scarr. select-options: so_car for
wa_scarr-carrid. start-of-selection. select * from scarr into wa_scarr where carrid = so_carr. endselect. if there is
no compile error in the above code, which of the following is the valid answer(more than 1 correct)
If you dont enter any value in selection screen it will show all the data
if you enter any conditions in selection screen , it will still show no data
If you don't enter any value in selection screen it will still show no data
if you enter a value in selection screen it will show data based on the conditions in select options
31. Which keyword is used to declare static attributes in ABAP class defintion(only 1 correct answer)
data
static-data
class-data
class_data
static_data
32. SAP BASIS is a(only 1 correct answer)
Functional Module in SAP
Run time Environment in SAP
Its Programming Language of SAP
Its a Interface of SAP to Third party
33. Which of the following ABAP statements are correct (more than one answer correct)
data: wa_scarr type scarr.select * from scarr into wa_scarr.
data: it_scarr type table of scarr.select * from scarr into it_scarr.....endselect
data: wa_scarr type scarr.select single * from scarr into wa_scarr......endselect.
data: it_scarr type table of scarr.select * from scarr into table it_scarr
data: wa_scarr type scarr.select * from scarr into wa_scarr......endselect.
34. Which of the following are true about select-options(more than 1 correct answer)
SELECT-OPTIONS can only be defined from ABAP DICTIONARY e.g SELECT-OPTIONS for scarr-carrid
SELECT-OPTIONS can only be defined from local data object e.g data: v_carr type scarr-carrid SELECT-
OPTIONS for v_carr.
SELECT-OPTIONS can be defined for both ABAP dictionary and Local Data Objects
SELECT-OPTIONS are maintained internally as a internal table
SELECT-OPTIONS are maintained internally specifically as a internal table with header line.
35. Consider the following data definitions in an ABAP program:(only 1 correct answer) data: text1(5). data: begin of
rec1, x1(2) type c, x2(2) type n, x3, end of rec1. What is the value of text1 after the following code is executed?
9/2/2014 ABAP- WDA
http://www.proprofs.com/quiz-school/story.php?title=abap-merp 8/9
A.
B.
C.
D.
A.
B.
C.
D.
A.
B.
C.
D.
E.
A.
B.
C.
D.
E.
A.
B.
C.
D.
E.
A.
B.
C.
D.
Back to top
rec1 = 12345. move rec1-x3 to text1. Note: 's' represents blank or a space
5ssss
ssss5
1ssss
54321
36. Cardinality of context nodes in WebDynpro indicates (one correct answer)
number of window created at run time
number of plugs created for navigation
number of component controller created
number of context nodes created at run time to store data
37. Technique of segregating data and method of a object is called as (only 1 correct answer)
polymorphism
inheritance
object orientation
interfaces
data encapsulation
38. Which of the following tool is not part of ABAP Workbench(more than 1 correct)
Function Builder
ABAP editor
Sales Order
Class Builder
Purchase Requisition
39. Which tool can be used to create Toolbar, Menu, Function Keys (only 1 correct answer)
Menu Painter
Screen Painter
Toolbar Painter
PF Status Painter
Function Builder
40. Which of the following statements are not true about Function Modules (only 1 correct answer)
Function Modules are part of Function Group
Function Modules can have exception
Function Modules have EXPORTING and IMPORTING parameters
Function Modules cannot send or receive internal table data
Login to post comments.
Remove Ad
9/2/2014 ABAP- WDA
http://www.proprofs.com/quiz-school/story.php?title=abap-merp 9/9
Phsyical Education 103 Pre-Exam
Corel Draw
On Line Test For SPC - LED, LCD, Plasma - 2010
MKTG 201 Test 2 Practice
Actual Exam
Multiple Choice Questions
Which Internet Cat Sensation Are You?
Which Modern Film Director Should Direct The Story Of Your Life?
Which Fairy Tale Prince Should You Marry?
Which Type Of Coffee Are You?
Which Celebrity Health Fad Should You Try Next?
Powered by ProProfs
Related Quizzes
Related Topics
Red Stripes
Formal Shirt
SHOP NOW
Rs. 999
Checks Green
Formal Shirt
SHOP NOW
-49%
Rs. 1,199
Blue Casual
Shirts
SHOP NOW
-49%
Rs. 1,099
Popular Quizzes

You might also like