Sunteți pe pagina 1din 9

9/2/2014 SAP abap quiz part 4

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

Sap B1 BUSINESS ONE QUESTION 7
Sap-abap
SAP ABAP
SAP ABAP TAW10
ABAP
Which Modern Film Director Should Direct The Story Of Your Life?
Related Quizzes
Popular Quizzes
Search Quizzes


Search Quizzes
9/2/2014 SAP abap quiz part 4
http://www.proprofs.com/quiz-school/story.php?title=sap-abap-quiz-part-4 2/9
50 Questions I By Mshilp
A.
B.
C.
D.
A.
Which Celebrity Health Fad Should You Try Next?
Which Fairy Tale Prince Should You Marry?
Which Type Of Coffee Are You?
Which Internet Cat Sensation Are You?
Take Another Quiz
Quizzes Set 62 SAP Abap Quiz Part 4
SAP Abap Quiz Part 4
ABAp certification
Start
Remove Excerpt
Question Excerpt
1. The following are the main advantages of Object oriented approach except
Encapsulation
Inheritance
Reusability
Polymorphism
2. Class is a specific instance of an Object
True
9/2/2014 SAP abap quiz part 4
http://www.proprofs.com/quiz-school/story.php?title=sap-abap-quiz-part-4 3/9
B.
A.
B.
C.
D.
A.
B.
C.
D.
A.
B.
A.
B.
C.
D.
A.
B.
A.
B.
C.
D.
A.
B.
C.
D.
A.
B.
A.
B.
C.
False
3. The abbreviation of UML is
Uniform Modeling Language
Unified Modeling Language
Unified Method Language
Unified Managed language
4. Class attributes can be of which of the following types I. Data Type II. ABAP elementary type
III. Object references IV. Interface references
I and II Only
I and III only
III and IV only
All of the choice
5. Class statement can be nested (i.e.) class can be defined within a class
True
False
6. In ABAP Objects methods can have the following parameters except
Importing
Exporting
Tables
Changing
7. The CREATE OBJECT statement creates an object in the memory
True
False
8. Garbage collector removes an object from the memory as soon as
The object is cleared
No more references point to the object
The object is instantiated
The garbage collector method is called on the object
9. The following statements about constructor are true except
Each class has exactly one constructor
The constructor does not need to be defined if no implementation is defined
The constructor is defined in the PRIVATE SECTION.
The constructor is automatically called during runtime within the CREATE OBJECT statement.
10. Instances are created even when exceptions are triggered in the constructor
True
False
11. Inheritance is a relationship in which
One class inherits only the methods of another class
One class inherits all the main characteristics of another class
One class inherits only the attributes of another class
9/2/2014 SAP abap quiz part 4
http://www.proprofs.com/quiz-school/story.php?title=sap-abap-quiz-part-4 4/9
D.
A.
B.
C.
D.
A.
B.
C.
D.
A.
B.
C.
D.
A.
B.
C.
D.
A.
B.
C.
D.
A.
B.
C.
D.
A.
B.
C.
D.
A.
B.
One class inherits all the private characteristics of another class
12. The property of a Protected component is that they are
Only visible from within the class and within the subclass
visible to all
Only visible within the class
Direct access
13. Abstract classes have the following characteristics except
Objects cannot be instantiated in an abstract class
Are used to specify particular interfaces for the subclasses
All the methods in the class should be abstract
At least one method should be abstract
14. Events are registered using which of the following commands
SETHANDLER
EVENT REGSITER
SET HANDLER
CREATE HANDLER
15. If the Event is protected then the event handler method should be I. Private II. Public
III. Protected
Only I and II
Only I and III
Only II and III
All of I, II, III
16. The following are true about Event handler except
they are sequential
the sequence in which they are called are defined
they are executed even if they are newly registered
registered objects are never deleted
17. The transaction code for Class builder is
SE20
SE24
SM20
SM24
18. . Performance of a DB server is measured by monitoring the following except
Physical I/O
Memory consumption
Size of the data buffer
CPU consumption
19. ABAP Objects is the object-oriented enhancement of the ABAP programming Language
True
False
9/2/2014 SAP abap quiz part 4
http://www.proprofs.com/quiz-school/story.php?title=sap-abap-quiz-part-4 5/9
A.
B.
C.
D.
A.
B.
C.
D.
A.
B.
A.
B.
C.
D.
A.
B.
C.
D.
A.
B.
C.
D.
A.
B.
C.
D.
A.
B.
C.
D.
20. The most important goal of performance analysis is to
Reduce the runtime of the programs
Reduce the database load
Reduce the number of database select statements
Reduce the network load
21. The shared memory of the database consists of the following
Data buffer
SQL cache
Log buffer
All of the above
22. There will be only one DB work process assigned for each R/3 work process
True
False
23. The Cost based optimizer determines the access strategy on the basis of the following except
Conditions in the where clause
Database indexes affected
Number of fields in the table
Size of the table affected
24. A SQL statement can be optimized by
Reducing the rows to be transferred
Running the SQL trace
Running the runtime analysis
Reducing the data in the DB table
25. The time required to roll the user context in to the roll buffer is
Roll-in time
Load time
Roll wait time
Roll-out time
26. The time required to roll the user context in to the R/3 work process
Roll-in time
Load time
Roll wait time
Roll-out time
27. The traces available for analyzing the performance of R/3 system is the following except
Enqueue trace
Buffer trace
SQL trace
Spool trace
1 comment
28. Various Db operations performing a read access are: I. Prepare II. Open III. Get
IV. Reopen
9/2/2014 SAP abap quiz part 4
http://www.proprofs.com/quiz-school/story.php?title=sap-abap-quiz-part-4 6/9
A.
B.
C.
D.
A.
B.
C.
D.
A.
B.
C.
D.
A.
B.
C.
D.
A.
B.
C.
D.
A.
B.
C.
D.
A.
B.
C.
D.
A.
B.
C.
I, II and III only
I, III and IV only
II, III and IV only
All of the choices
29. Memory usage of internal table can be monitored using
Runtime analysis
SQL trace
Debugger
Memory trace
30. Given. SELECT fld1 fld2 fld3 FROM tab1 INTO (itab-fld4, itab-fld5, itab-fld6) WHERE fld7 = pfld7. APPEND
itab. ENDSELECT. Which of the following is a good performance tuning technique?
Change the SELECT statement to use INTO TABLE itab
Add MOVE statements to fill the header line of itab
Remove the internal table itab from the SELECT statement
This code is optimized; no change is required
31. Basic IDoc Type is
Standard/customer Idoc Type
Idoc definitions
Extended IDoc
None of the above.
32. When Basic IDoc Types are extended, they are called
Standard SAP Idoc Types
Customer-developed Idoc Types
IDoc Types
Extended IDoc Types
33. In the ALE Process, Idocs are transferred via
File
Memory
Disk
None of the above.
34. Transaction code for Port definition
WE19
WE20
WE21
WE05
35. Test Tool for IDoc Processing
WE19
WE20
WE21
9/2/2014 SAP abap quiz part 4
http://www.proprofs.com/quiz-school/story.php?title=sap-abap-quiz-part-4 7/9
D.
A.
B.
C.
D.
A.
B.
C.
D.
A.
B.
C.
D.
A.
B.
C.
D.
A.
B.
C.
D.
A.
B.
C.
D.
A.
B.
C.
D.
A.
WE05
36. Direction 2 in IDoc Transmission represents
Outbound
Inbound
All of the above
None of the above.
37. Output length of SDATA field is
100 Char
500 Char
1000 Char
2000 Char
38. Function Module MASTER_IDOC_DISTRIBUTE is used to create
Inbound IDoc
Outbound IDoc
All of the above
None of the above.
39. Last Two digits of IDoc Type represents
Current Year
SAP Version
New version of IDoc Type
None of the above.
40. Direction for IDoc Transmission is available in the following record
Control Record
Data Record
Status Record
None of the above.
41. In the EDI process, Idocs are transferred via
File
Memory
Disk
None of the above.
42. ALE is a
Synchronous process
Asynchronous process
Either Synchronous or asynchronous process
None of the above
43. During a synchronous RFC, the ABAP program is rolled out from the work process. This time can be observed as
the
Roll wait time
9/2/2014 SAP abap quiz part 4
http://www.proprofs.com/quiz-school/story.php?title=sap-abap-quiz-part-4 8/9
B.
C.
D.
A.
B.
C.
D.
A.
B.
C.
D.
A.
B.
C.
D.
A.
B.
C.
D.
A.
B.
C.
D.
A.
B.
C.
D.
A.
B.
Back to top
Roll in time
Roll out time
None of the above
44. Which type of RFC will you use to communicate between SAP application layer and SAP GUI?
Synchronous
Asynchronous
Transactional
Draft Standard
45. The statistics about roundtrips and GUI time are available in transaction
a. STAD
b. STAT
c. STAM
d. STAC
46. Which layer of the multitier client/server architecture consists of SAP GUIs or Web browsers that run on user PCs?
Presentation
Internet
Application
Database
47. The transfer of user context data into work process memory is known as
Roll in
Roll out
Roll area
Roll transfer
48. You use an the following to analyze transactions with a large CPU time
ABAP trace
SQL trace
Enqueue trace
Spool trace
49. Which type of SAP memory contains objects such as programs and buffered customizing table content?
Local work process
SAP buffers
Extended
Heap
50. High dialog answer times can be caused due to congested networks.
True
False
Login to post comments.
Remove Ad
9/2/2014 SAP abap quiz part 4
http://www.proprofs.com/quiz-school/story.php?title=sap-abap-quiz-part-4 9/9
SAP B1 Business One Question 7
SAP-abap
SAP Abap
SAP Abap Taw10
ABAP
Which Modern Film Director Should Direct The Story Of Your Life?
Which Celebrity Health Fad Should You Try Next?
Which Fairy Tale Prince Should You Marry?
Which Type Of Coffee Are You?
Which Internet Cat Sensation Are You?
Powered by ProProfs
Related Quizzes
Popular Quizzes

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