Sie sind auf Seite 1von 10

9/2/2014 SAP abap quiz part 2

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

SAP ABAP QUIZ Part 6
ABAP
SAP BI
SAP IS-U Quiz-1
SAP ABAP Online Test
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 2
http://www.proprofs.com/quiz-school/story.php?title=sap-abap-quiz-part-2 2/10
50 Questions I By Mshilp
A.
B.
C.
D.
A.
Which Fairy Tale Prince Should You Marry?
Which Type Of Coffee Are You?
Which Internet Cat Sensation Are You?
Which Celebrity Health Fad Should You Try Next?
Take Another Quiz
Quizzes Set 62 SAP Abap Quiz Part 2
SAP Abap Quiz Part 2
ABAP CERTIFICATION
Start
Remove Excerpt
Question Excerpt
1. There are three ways of passing data from the main program to the subroutine except
Call by reference
Call by Value
Call by reference and result
Call by value and result
2. In modifying an internal table it is always better to use field symbols than using work area.
True
9/2/2014 SAP abap quiz part 2
http://www.proprofs.com/quiz-school/story.php?title=sap-abap-quiz-part-2 3/10
B.
A.
B.
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.
False
3. Subroutines can be called from external programs
True
False
4. Subroutines can have the following interface except
Using
Changing
Tables
Using values[]
5. One of the following statements regarding Subroutines is true
Subroutines cannot raise exception.
Subroutines are stored in central repository.
Subroutines can have their own global data.
Subroutines can be called from external systems.
6. One of the following statements regarding Function modules is true
Function modules cannot raise exception
Function modules can be called from external systems
Function modules cannot have global data
None of the above
7. In function modules the table parameter in the interface is always
Call by reference
Call by Value
Call by reference and result
Call by value and result
8. The statement used to define a local variable, which will retain the value till the life of the main program, rather than
the subroutine/function module is
Controls
Static
Types
Data
9. The following are client independent objects except
Structures
Domain
Sapscript layout
Search help
10. ABAP syntax is platform independent because
ABAP runtime system is a component of SAP WAS
ABAP is Object oriented
ABAP is typed
ABAP uses open SQL
9/2/2014 SAP abap quiz part 2
http://www.proprofs.com/quiz-school/story.php?title=sap-abap-quiz-part-2 4/10
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.
11. Multi language applications can be developed using
Messages
Text elements
Type casting
Objects
12. The following are some of the ABAP data types except
T
I
X string
A
13. The following are some keywords to define data type/objects except
TYPE
STATICS
CONSTANTS
TABLES
14. Hashed table access using I . Only Index II.. Only Unique Key III. Only Non-unique Key
III. Both Unique and Non-Unique Key
I only
II only
III only
I and II
15. The operation that cannot be done on a sorted table is
Insert
Modify
Append
Read
16. The key word that releases the memory of an internal table is
Clear
Refresh
Free
Refresh[]
17. . The different work processors in R/3 is the following except
Enqueue
Background
Dispatch
Spool
18. For a Internal table with header line, the key word that clears only the header line is
Clear
Refresh
Free
9/2/2014 SAP abap quiz part 2
http://www.proprofs.com/quiz-school/story.php?title=sap-abap-quiz-part-2 5/10
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.
Clear[]
19. Before a function module may be tested, it must first be.
Linked
Authorized
Released
Active
20. Given the statement, DO. Write. /1 'E equals MC squared. ENDDO. Will result in
Output of 'E equals MC squared.' on a new line one time
An endless loop that results in an ABEND
Output of 'E equals MC squared.' on the same line many times
e. Loop that will end when the user presses ESC
21. The following code indicates all of the following except. DATA. counter type i. CLEAR counter. DO. counter =
counter + 1. IF counter >= 5. Exit. ENDIF. ENDDO. WRITE: /1 counter.
Start a loop
Increment counter until it is 5 or more.
Execute the code between DO and ENDDO five times.
Exit the program if counter is 5 or more.
22. What value must ch_field contain so that "Nice job!" will be output? Write: /1 'Nice'. CHECK ch_field NE 'X'.
Write. 'Job!
'X'
Anything other than 'X'
"Nice job!" will not be output by this code
None of the above
23. Given. CONSTANTS: var_one(3) type c value 'DOG'. IF var_one = 'dog'. WRITE: /1 'Bark!. ELSE. WRITE:
/1 'Meow! . ENDIF. WRITE: var_one. This will result in the output.
Bark! DOG
DOG
Meow! DOG
None of the above
24. In regard to CONTINUE, which of the following is a true statement?
Causes a loop to terminate.
Jumps immediately to the END-OF-SELECTION event.
Stops the current loop pass and get the next.
Continue may be used outside of loops.
25. What is the system field for program name?
SY-REPRT
SY-PROG
SY-REPID
SY-PNAME
26. Which keyword removes any line from an internal table?
9/2/2014 SAP abap quiz part 2
http://www.proprofs.com/quiz-school/story.php?title=sap-abap-quiz-part-2 6/10
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.
D.
ERASE
MODIFY
STRIP
DELETE
27. To total the numeric fields at a control break, use
ADD.
SUM.
COUNT.
TOT.
28. To sort data as you select it, use
INTO TABLE
SORT BY
ORDER BY
None of the above
29. What addition to the READ TABLE statement must be used when reading a hashed or sorted internal table to
ensure that a binary search will be used?
WITH KEY
WITH TABLE KEY
SEARCH TYPE
WHERE
30. By definition, what fields make up the standard internal table key?
All the table's fields.
All the non-numeric fields.
All the numeric fields.
The first field
31. Which of these ABAP statements does NOT declare an internal table?
DATA. BEGIN OF itab OCCURS 0, field(10) TYPE c, END OF itab.
DATA. itab LIKE struc OCCURS 10 WITH HEADER LINE.
DATA. BEGIN OF itab WITH HEADER LINE, field(10) TYPE c, END OF itab
DATA. itab TYPE STANDARD TABLE OF struc_type.
32. All of the following pertain to a subroutine's local data object except.
Declared inside of the subroutine
Available only within the subroutine
Must follow the same declaration syntax as Global data
Value is known to all subroutines
33. When is it optional to pass an actual parameter to a required formal parameter of a function module?
The actual parameter is type c
The formal parameter contains a default value
The formal parameter's "Reference" attribute is turned on
It is never optional
9/2/2014 SAP abap quiz part 2
http://www.proprofs.com/quiz-school/story.php?title=sap-abap-quiz-part-2 7/10
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.
A.
B.
C.
D.
A.
34. The ABAP statement you will typically use in a 'CANCEL' function is.
CALL SCREEN 0
COMMIT WORK
ROLLBACK WORK
UPDATE
35. The table control attribute <ctrl>-LINES indicates the total number of lines in the internal table.
True
False
36. To call a local subroutine named calculate_answer, use this line of code.
PERFORM calculate_answer
CALL calculate_answer
USING calculate_answer
SUB calculate_answer
37. Field group have the following characteristics except
Field-Groups are collection fields that are put together under a single group.
To insert the fields into the field-groups can be done using Insert .. into
To add records to the field-groups using extract
To order the field-group we have to use ORDER
38. One of the following statement regarding Field-Symbols is false
This statement declares a symbolic field called .
At runtime, you can assign a concrete field to the field symbol using ASSIGN.
All operations performed with the field symbol then directly affect the field assigned to it.
Assign reference to the field-symbols by = Assign x .
39. Some of the system variable relevant to List are the following except
Sy-colno
Sy-linct
Sy-lsind
Sy-TLENG
40. Get, Nodes are some statements related with
Pooled database
Logical database
Cluster database
Relational database
41. Statement Continue inside a LOOP AT ITABENDLOOP will
Come out of the loop and process the next statement
Go to the next loop process
Will continue processing the next statement
None of the above
42. Statement EXIT inside a LOOP AT ITABENDLOOP will
Come out of the loop and process the next statement
9/2/2014 SAP abap quiz part 2
http://www.proprofs.com/quiz-school/story.php?title=sap-abap-quiz-part-2 8/10
B.
C.
D.
A.
B.
C.
D.
A.
B.
C.
D.
A.
B.
C.
D.
A.
B.
C.
D.
A.
B.
A.
B.
C.
A.
B.
C.
D.
A.
B.
C.
Go to the next loop process
Will continue processing the next statement
None of the above
43. Statement RETURN inside a function module will
Processing will be stopped and take the control back to the calling program
If inside a loop will return to the next loop
Will continue processing the next statement
None of the above
44. Which field gets set in the calling program if an exception occurs in a function module
Interface parameters
Sy-subrc
exception parameters
None of the above
45. Identify a correct statement
Constants: C1(4) type C value 'ABCD'.
Constants: C1(4) type C.
Constants: C1(4) like C value 'ABCD'.
Constants: C1(4) like C.
46. User defined data types that can be created in ABAP Dictionary are I. Data element II. Structure III. Domain IV.
Table type
I and II only
I and III only
I, II and III only
I, II and IV only
47. Primary Indexes are created in the database
True
False
48. While creating a table, reference table and reference fields are required for table fields of the following type
CUKY
QUAN
INT4
49. Domain has the following characteristics except
Data type
Conversion routine
Value table
Field Label
50. In the following statements about dictionary objects, only one is correct
Structure cannot be included in transparent table
Structure cannot be included in structure
Transparent table can be included as an entire table
9/2/2014 SAP abap quiz part 2
http://www.proprofs.com/quiz-school/story.php?title=sap-abap-quiz-part-2 9/10
D.
Back to top
SAP Abap Quiz Part 6
ABAP
SAP Bi
SAP Is-u Quiz-1
SAP Abap Online Test
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 Internet Cat Sensation Are You?
Transparent table can be included in structure
Login to post comments.
Remove Ad
Related Quizzes
Popular Quizzes
9/2/2014 SAP abap quiz part 2
http://www.proprofs.com/quiz-school/story.php?title=sap-abap-quiz-part-2 10/10
Which Celebrity Health Fad Should You Try Next?
Powered by ProProfs

Das könnte Ihnen auch gefallen