Wednesday, April 27, 2022

SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 Part -3




 Question 1 

Ques:- Which statement ends a screen sequence and starts from initial screen?

1.       CALL SCREEN

2.       LEAVE SCREEN

3.       SET SCREEN 0

4.       LEAVE TO SCREEN

Correct Answer : 3
Question 2 

Ques:- Which of the following predefined data types are character types? (3 Correct)

1.       N

2.       D

3.       X

4.       T

5.       P

Correct Answer : 1,2,4
Question 3 

Ques:- Your colleague has asked you to analyze and ABAP program that does not behave correctly when a button is pressed on the initial screen. You want to start Debugger when the button is pressed so that you can perform your analysis. What do you type in the command field?

1.       /n

2.       /hx

3.       /h

4.       Jdbg

Correct Answer : 3
Question 4 

Ques:- 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?

1.       AT SELECTION-SCREEN OUTPUT

2.       LOAD-OF-PROGRAM

3.       INITIALIZATION

4.       START-OF-SELECTION

Correct Answer : 4

Question 5 

Ques:- Which of the following rules must you follow when creating subscreens? (2 Correct)

1.       Subscreens CANNOT have an AT EXIT-COMMAND module.

2.       Subscreens can have a dialog module containing SET PF-STATUS.

3.       Subscreens can call other subscreens.

4.       Subscreens CANNOT have a field of type OK.

Correct Answer : 1,4

Question 6 

Ques:- What options do you have when setting a watchpoint? (2 Correct)

1.       Stop at any change of a specific variable.

2.       Stop at predefined conditions for all variables.

3.       Stop at any change of all variables.

4.       Stop at predefined conditions for a specific variable.

Correct Answer : 1,4

Question 7 

Ques:- What is the difference between SAP Basis and SAP NetWeaver?

1.       All versions of SAP NetWeaver require the use of Unicode.

2.       There is no difference; the name change was driven by marketing alone.

3.       All versions of SAP NetWeaver include the ability to handle HTTP requests.

4.       All versions of SAP NetWeaver require the use of UTF-8.

Correct Answer : 3

Question 8 

Ques:- A view can only be displayed in which circumstances?

1.       It cannot always be displayed.

2.       It contains an inbound and outbound plug.

3.       It has been embedded in a window.

4.       It can always be displayed.

Correct Answer : 3

Question 9 

Ques:- When is a foreign key check performed on an input/output field?

1.       If the field refers to the dictionary field for which a search is defined

2.       If the field refers to the dictionary field for which a append search is defined

3.       If the field refers to the dictionary field for which a check table is defined

4.       If the field refers to the dictionary field for which a value help is defined

Correct Answer : 3

Question 10 

Ques:- Which message types behave the same regardless of the context in which they are called? (2 Correct)

1.       X

2.       S

3.       A

4.       W

5.       E

6.       I

Correct Answer : 1,3

Question 11 

Ques:- In a subclass, you want to redefine a method of the super class. Which of the following conditions must be fulfilled? (2 Correct)

1.       The subclass method has a lower visibility than the super class method

2.       The superclass method is an instance method

3.       The subclass method has same visibility as the super class method

4.       The super class method is abstract

Correct Answer : 2,3

Question 12 

Ques:- What is the default length of the type C data type?

1.       10

2.       1

3.       1–65535

4.       100

Correct Answer : 2

Question 13 

Ques:- You want to translate dynamic text in a web dynpro. From which abstract class should you inherit?

1.       CL_WD_COMPONENT_ASSISTANCE

2.       CL_WD_CONTEXT_SERVICES

3.       CL_WD_CONFIGURATION_MODEL

4.       CL_WD_COMPONENT_SERVICES

Correct Answer : 1

Question 14 

Ques:- Which of the following statements dynamically changes the data type of field z1?

1.       Move z1 to

2.       Unassign

3.       Assign z1 to casting

4.       Assign z1 to

Correct Answer : 3

Question 15 

Ques:- Which of the following can you do with the ABAP debugger? (3 Correct)

1.       Analyze memory usage.

2.       Analyze SQL traces.

3.       Change source code.

4.       Compare data objects.

5.       Analyze internal tables

Correct Answer : 1,4,5

Question 16 

Ques:- A work process…

1.       Stays linked toa screen through the dispatcher.

2.       Becomes inactive while waiting for a user.

3.       Becomes active while waiting for a user.

4.       Uses a common memory area called shared memory.

Correct Answer : 4

Question 17 

Ques:- Where can you define global data types that are visible system-wide? (3 Correct)

1.       In a global interface

2.       In the ABAP Dictionary

3.       In a method of a global class

4.       In a function module

5.       In a global class

Correct Answer : 1,2,5

Question 18 

Ques:- A structure has enhancement category 3, can be enhanced (character-type). Which set of elementary types is allowed for the new fields?

1.       F,I,P,X

2.       D,I,string,T

3.       C,D,N,T

4.       C,D,N,X

Correct Answer : 3

Question 19 

Ques:- Which of the following is a true statement? (2 Correct)

1.       An access key is required to implement business add-ins.

2.       An access key is required to implement an implicit enhancement point.

3.       An access key is required to enhance an SAP application using a user exit.

4.       An access key is required to modify SAP repository objects.

Correct Answer : 3,4

Question 20 

Ques:- What can be part of the signature of an instance constructor? (2 Correct)

1.       Export parameters

2.       Exceptions

3.       Changing parameters

4.       Import parameters

Correct Answer : 2,4

Question 21 

Ques:- How do you use a sorted internal table? (2 Correct)

1.       You need to specify a key in the table declaration

2.       You can read the records by index or key

3.       You can resort the table with SORT

4.       You use APPEND to insert records at the correct position

Correct Answer : 1,2

Question 22 

Ques:- You enhance an SAP standard global class by defining a post-method for an SAP method. The original SAP method has an EXPORT parameter named PARM1. Which parameters does the postmethod have?

1.       An OMPORT parameter named PARM1

2.       A RETURNING parameter named PARM1

3.       A CHANGING parameter named PARM1

4.       An EXPORT parameter named PARM1

Correct Answer : 3

Question 23 

Ques:- Function modules provide which types of parameters? (4 Correct)

1.       Output

2.       Exceptions

3.       Input/output (changing)

4.       Input

5.       Return values

Correct Answer : 1,2,3,4

Question 24 

Ques:- Which statement is true?

1.       A database LUW must be placed without an SAP LUW.

2.       A database LUW cannot be placed within an SAP LUW.

3.       An SAP LUW must be placed within a database LUW.

4.       A database LUW must be placed within an SAP LUW.

Correct Answer : 3

Question 25 

Ques:- When are the changes to the VB* table transferred to the database?

1.       When an update function module is executed

2.       When the enqueue work process is executed

3.       When the update work process is executed

4.       When the main program is executed

Correct Answer : 3



I hope it's helpful for you. If you have any queries, don't hesitate to contact me.

Name : Muhammad Sahal Qasim
E-mail : s.m.sahal789@gmail.com
Thank you.

0 comments:

Post a Comment

If you have any doubts, please let me know. I will help you.