Saturday, September 7, 2013

SAP ABAP Certification Questions with Answers

sap-abap-certification-questions-answers

Welcome to SAP ABAP Interview Questions. SAP ABAP Certification Questions with Answers for the ABAP Technical Consultants. SAP ABAP Certification Questions and Answers

Here we are providing certification questions and answers on SAP ABAP, these sample SAP ABAP Certification Questions will helps you to get an idea about how questions are coming in certification exam and how to prepare for SAP ABAP Certification Exam. Click on read more to SAP ABAP Certification Questions and Answers.


 SAP ABAP Certification Questions with Answers




1. ABAP has built-in types like C, I, N, STRING, or X. If you use these types for defining data objects, which of the following statements are correct?

Please choose the correct answer.

a) If you want to define a two-byte integer data object, you use the following 

syntax: DATA xyz(2) TYPE i. 

b) If you create a data object without explicitly specifying its type, it will become type C with length 1.

c) If you define a data object with type D, two or four digits will be re-served for the year, depending on the user's settings. 

d) A data object of type STRING has a fixed length that will automatically be set when the first value is assigned to this data object. This length cannot be adjusted thereafter. 


2. Some ABAP statements require an explicit end, like SELECT loops, FORM definitions, or IF clauses. Which of the following ABAP statements can be nested?

There are two correct answers to this question. Select which of the following answers are correct 

a)  One inner SELECT ... ENDSELECT in an outer SELECT ... END-SELECT 

b)  One inner FORM ... ENDFORM in an outer FORM ... ENDFORM 

c)  One inner CASE ... ENDCASE in an outer CASE ... ENDCASE. 

d)  One inner CLASS ... ENDCLASS in an outer CLASS ... ENDCLASS. 


3. The concept of visibility of components is well-known in object oriented languages. Which of the following statements are correct with regard to ABAP Objects? 

There are two correct answers to this question. Select which of the following answers are correct. 

a)  A programmer can, but need not, determine the visibility of a compo-nent. 
The default visibility of a component is PRIVATE. 

b)  A PRIVATE component of a class can be accessed in all methods of that 
class. 

c)  A PROTECTED method METH that is defined in a class SUPER can be 
overwritten (redefined) in an inherited class SUB.

d)  All components of inherited classes are PUBLIC.


4. Among the most frequently used enhancement concepts in ABAP, you find customer exits. Which of the following statements about customer exits are correct? 

Please choose the correct answer.

a)  If a customer exit is not implemented, the program offering this customer exit will dump (terminate abnormally) at runtime. 

b)  Within one SAP system, a customer exit can have a maximum of one implementation. 

c)  Within one client of an SAP system, a customer exit can have multiple implementations.

d)  Once a customer exit has been implemented in an SAP system, the implementation can be changed, but it cannot be deactivated any more. 


5. Internal tables are used in ABAP to store mass data. Which of the following statements about the relationships between internal tables and database tables are correct? 

Please choose the correct answer. 

a)  An internal table can be linked to a database table so that the content of the internal table is updated automatically as soon as the content of the 
database table changes.

b)  A data base table XYZ can be used for the definition of an internal table like this: DATA itab TYPE TABLE OF xyz. 

c)  A data base table in the Dictionary can be defined with reference to an internal table from an ABAP program.

d)  If you have a huge number of rows to be dealt with in a program, it might improve the program's performance if you define a database table in the 
program instead of an internal table. 


6. There are basically three types of SELECT statements: SELECT SINGLE, SELECT … ENDSELECT, and SELECT ... INTO TABLE. The SELECT ...ENDSELECT statement is also known as the SELECT loop. 

Below, you will find a list of comments about SELECT … ENDSELECT. Which of them are correct?

There are two correct answers to this question. Select which of the following answers are correct. 

a)  A work area (structure) is required for the selected rows. This work area can be given explicitly (with INTO) or implicitly (if a TABLES declaration is used). 

b)  The database will transport individual rows to the database interface. 

c)  The database will transport blocks of rows to the database interface. 

d)  The system field sy-tabix counts the number of selected table rows. 


7. In a program, you need an elementary data object for some calculations. What are possible ways to specify its type? There are two correct answers to this question. Select which of the following answers are correct. 

a)  Refer to a domain 

b)  Refer to a data element 

c)  Refer to a field of a database table 

d)  Refer to a field of a search help 


8. In a report, you want to define a SELECT-OPTION so_xyz. What are possible ways of defining its type? Please choose the correct answer. 

a)  Refer to a table type directly, using TYPE 

b)  Refer to a previously defined elementary data object in the same pro-gram, using LIKE 

c) O Refer to a previously defined elementary data object in the same pro-gram, using FOR 

d) O Refer to a Dictionary table type with columns SIGN, OPTION, LOW, and HIGH, using FOR 


9. The event concept is vital for selection-screens. Which of the following usages of events make sense for selection screens? 

There are two correct answers to this question. Select which of the following answers are correct.

a)  Use INITIALIZATION for setting values for SELECT-OPTIONS.

b)  Use AT SELECTION-SCREEN for hiding fields on the selection-screen. 

c)  Use AT SELECTION-SCREEN OUTPUT for checking user entries. 

d)  Use AT SELECTION-SCREEN ON pa_car for checking the user entry in the PARAMETER pa_car. 


10. The SAP List Viewer, commonly known as the ALV, is a powerful tool for displaying data. Among the various ALV types, the ALV Grid Control is used for displaying non-hierarchical table data. 

Which of the following statements about the ALV Grid Control are correct?

Please choose the correct answer.

a)  The ALV Grid Control can be integrated into a list, a selection-screen, and a classical screen (dynpro).

b)  By default, a column header will be taken from the data element which is used for specifying the type of the column. 

c)  When a report with an ALV Grid Control is executed in background processing, the program will terminate abnormally since controls can-not be 
addressed in background processing. 

d)  The ALV display is automatically refreshed when the data in the data-base table is changed 


Answers for SAP ABAP Certification Questions 


1 a) Incorrect    2 a) Correct     3 a) Incorrect  4 a) Incorrect     5 a) Incorrect 
1 b) Correct      2 b) Incorrect   3 b) Correct    4 b) Correct        5 b) Correct 
1 c) Incorrect    2 c) Correct      3 c) Correct    4 c) Incorrect      5 c) Incorrect 
1 d) Incorrect   2 d) Incorrect    3 d) Incorrect  4 d) Incorrect     5 d) Incorrect 


6 a) Correct     7 a) Incorrect    8 a) Incorrect  9 a) Correct     10 a) Incorrect 
6 b) Incorrect   7 b) Correct      8 b) Incorrect  9 b) Incorrect   10 b) Correct 
6 c) Correct     7 c) Correct       8 c) Correct     9 c) Incorrect   10 c) Incorrect 
6 d) Incorrect  7 d) Incorrect     8 d) Incorrect  9 d) Correct     10 d) Incorrect

SAP ABAP Interview Questions, SAP ABAP Certification Questions with Answers for the ABAP Technical Consultants, SAP ABAP Certification Questions and Answers

"You found the information helpful and want to say thanks? Your donation is enough to inspire us to do more. Thanks a bunch!"

0 comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Categories

ABAP (1) ABAP Interview Questions (112) ABAP Open SQL Statements (1) ABAP Syntax Rules (6) ABAP WORKBENCH (2) ABAP-Interview-Questions (52) ALE IDOC (6) ALE IDOC Interview Questions (6) ale-idoc (6) ALE-IDOC-Interview-Questions (19) ALV Interview Questions (5) ALV-Interview-Questions (22) BADI (2) BAPI (1) BAPI Interview Questions (1) BAPI-Interview-Questions (14) BDC (6) BDC Interview Questions (6) BDC-Interview-Questions (9) big data (2) big data interview questions (1) Classical Reports Interview Question (3) Classical-Reports-Interview-Questions (22) Conditional Statements (1) Cross Applications (3) Cross-Applications (14) Data Dictionary (22) Data Type Questins (1) Data types (1) Data-Dictionary (48) Data-Type-Questins (6) Dialog programming (5) Dialog Programming Interview Questions (4) Dialog-Programming (30) DOMAIN Interview Questions (1) Domain-Interview-Questions (8) Function Module (2) hadoop (2) hadoop interview questions (2) hdfs (1) IDoc Tutorials (6) Interactive Report Interview Questions (4) Interactive-Reports-Interview-Questions (22) Internal Tables (1) interview questions (1) Lock Object Interview Questions (1) Lock-Objects-Interview-Questions (10) Logical Database (1) Modularization Interview Questions (4) Modularization-Interview-Questions (25) Module Pool Programming (5) Module-Pool-Programming (39) modules in sap (1) Object Oriented ABAP (19) Object Oriented ABAP Interview Questions (15) object-oriented-abap (2) Object-Oriented-ABAP-Interview-Questions (34) OOABAP (9) Reports (14) Reports Interview Questions (9) Reports-Interview-Questions (19) RFC (1) RFC Interview Questions (1) RFC-Interview-Questions (14) RICEF (1) RICEF Objects (1) SAP (4) SAP ABAP (4) SAP ABAP Interview Questions (42) SAP ABAP Introduction (46) SAP ABAP Message Types (2) SAP BADI Interview Questions (2) SAP Basics (71) SAP Books (2) SAP Certification (1) SAP CONSULTANTS (5) SAP CRM (1) SAP ENHANCEMENTS (3) SAP EXITS (2) SAP EXITS ( SAP ENHANCEMENTS ) Interview Questions (1) SAP Free Books (1) SAP HR (2) SAP Lock Object (1) sap modules (2) SAP Open SQL Statements (1) SAP R/3 Architecture (4) SAP Search help (1) SAP Smartforms (1) SAP Smartforms Interview Questions (2) SAP Tables (5) SAP Tcodes (10) SAP Views (1) SAP Webdynpro ABAP (12) SAP Work Processors (2) SAP Workflow (3) SAP-BADI-Interview-Questions (11) SAP-Enhancements (39) SAP-Exits (39) SAP-Exits-Enhancements-Interview Questions (3) SAP-HANA (1) SAP-HANA-Interview-Questions (1) SAP-Smartforms-Interview-Questions (2) SAP-Workflow (3) Scripts (3) Scripts Interview Questions (2) Scripts-Interview-Questions (32) Search Help Interview Questions (1) Search-Help-Interview-Questions (9) Smartforms (1) Table Maintenance Generator (1) Table-Maintenance-Generator (4) Tables in SAP (2) Tables Interview Questions (3) Tables-Interview-Questions (3) Type Group Interview Questions (1) Type-Group-Interview-Questions (7) Variable Declaration (1) Views Interview Questions (1) Views-Interview-Questions (5) Webdynpro (12) what is big data (1)

Protected Blog

 
This blog is not affiliated to SAP AG |SAP is trademark of SAP AG |The information collected from various sources use information with your own risk.