
- SAP ABAP Tutorial
- SAP ABAP - Home
- SAP ABAP - Overview
- SAP ABAP - Environment
- SAP ABAP - Screen Navigation
- SAP ABAP - Basic Syntax
- SAP ABAP - Data Types
- SAP ABAP - Variables
- SAP ABAP - Constants & Literals
- SAP ABAP - Operators
- SAP ABAP - Loop Control
- SAP ABAP - Decisions
- SAP ABAP - Strings
- SAP ABAP - Date & Time
- SAP ABAP - Formatting Data
- SAP ABAP - Exception Handling
- SAP ABAP - Dictionary
- SAP ABAP - Domains
- SAP ABAP - Data Elements
- SAP ABAP - Tables
- SAP ABAP - Structures
- SAP ABAP - Views
- SAP ABAP - Search Help
- SAP ABAP - Lock Objects
- SAP ABAP - Modularization
- SAP ABAP - Subroutines
- SAP ABAP - Macros
- SAP ABAP - Function Modules
- SAP ABAP - Include Programs
- SAP ABAP - Open SQL Overview
- SAP ABAP - Native SQL Overview
- SAP ABAP - Internal Tables
- SAP ABAP - Creating Internal Tables
- ABAP - Populating Internal Tables
- SAP ABAP - Copying Internal Tables
- SAP ABAP - Reading Internal Tables
- SAP ABAP - Deleting Internal Tables
- SAP ABAP - Object Orientation
- SAP ABAP - Objects
- SAP ABAP - Classes
- SAP ABAP - Inheritance
- SAP ABAP - Polymorphism
- SAP ABAP - Encapsulation
- SAP ABAP - Interfaces
- SAP ABAP - Object Events
- SAP ABAP - Report Programming
- SAP ABAP - Dialog Programming
- SAP ABAP - Smart Forms
- SAP ABAP - SAPscripts
- SAP ABAP - Customer Exits
- SAP ABAP - User Exits
- SAP ABAP - Business Add-Ins
- SAP ABAP - Web Dynpro
- SAP ABAP Useful Resources
- SAP ABAP - Questions Answers
- SAP ABAP - Quick Guide
- SAP ABAP - Useful Resources
- SAP ABAP - Discussion
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
SAP ABAP Mock Test
This section presents you various set of Mock Tests related to SAP ABAP. You can download these sample mock tests at your local machine and solve offline at your convenience. Every mock test is supplied with a mock test key to let you verify the final score and grade yourself.

SAP ABAP Mock Test IV
Q 1 - Which of the following can be used to format the ABAP code written in editor?
Answer : A
Explanation
Pretty Printer is used to format the ABAP Code we write in ABAP Editor, like KEYWORDS in Capitals and remaining are in small letters which is also depend on system settings.
Q 2 - In SAP ABAP, SAP memory is a global memory whereas ABAP memory is local memory?
Answer : A
Q 3 - Which of the following memory type in ABAP is available for users during entire terminal session?
Answer : A
Explanation
SAP memory is available to the user during the entire terminal session.
Q 4 - Which of the following data type allows you to assign data type of another object to declaring object?
Answer : B
Explanation
TYPE Datatype directly to the data object while declaring.
LIKE Datatype of another object to the declaring data object.
Q 5 - Which of the following T-code is used search the fields ABAP table?
Answer : B
Explanation
SE16 is a data browse and it is used to view the contents of the table
Q 6 - Which of the following receive the request from client and assigns the request to one of the work process?
Answer : B
Explanation
Dispatcher receives the request from client and assigns the request to one of the work process
Roll area Each work process works in a particular memory that memory is known as RoleArea, which consists of User context and session data.
ABAP Processor is an interpreter which can execute logic.
Q 7 - Which of the below work process in R/3 system provides lock mechanism?
Answer : C
Explanation
Dialog or Online (processes only one request at a time).
Update (primary or secondary)
Enqueue (Lock mechanism).
Spool (generated online or during back ground processing for printing).
Q 8 - Which of the following table type can't be buffered?
Answer : C
Explanation
Buffer means memory area, table buffer means the table information is available on the application server. When you call data from database table, it will come from application server. Transparent tables and pool tables are buffered, while cluster table cannot be buffered.
Q 9 - Which of the following contain fields from several tables and can be built on cluster tables, transparent tables and pooled tables?
Answer : B
Explanation
Database Index contains fields from one table while Match Code contain fields from several tables. Match code objects can be built on cluster tables, transparent tables and pooled tables.
Q 10 - Which of the following can be used to store control data such as screen sequences or program parameters?
Answer : A
Explanation
Pooled tables are logical tables, which must be assigned to a table pool when they are defined. Pooled tables can be used to store control data (such as screen sequences or program parameters).
Q 11 - Which of the following is/are modularization technique in ABAP/4?
Answer : E
Explanation
When a program contains the same or similar blocks of statements or it is required to process the same function several times, we can avoid redundancy by using modularization techniques. By modularizing an ABAP/4 programs, you can make them easy to read and improve their structure. Modularized programs are also easier to maintain and to update.
Below are modularization technique in ABAP/4 −
- Source code module
- Subroutines
- Functions
Q 12 - In which of update type, match code data is accessed using a database view?
Answer : C
Explanation
In Update type I, access to the match code data is managed using a database view.
Answer : A
Explanation
You can create ABAP/4 program which only contain subroutines.
Answer Sheet
Question Number | Answer Key |
---|---|
1 | A |
2 | A |
3 | A |
4 | B |
5 | B |
6 | B |
7 | C |
8 | C |
9 | B |
10 | A |
11 | E |
12 | C |
13 | A |