Saturday, 25 January 2020

80 Top ABAP Multiple Choice Questions and Answers

ABAP Multiple Choice Questions and Answers

1. This data type has a default length of one and a blank default value.
A: I
B: N
C: C
D: D
Ans:C

2. A DATA statement may appear only at the top of a program, before START-OFSELECTION.
A: True
B: False
Ans:B

3. If a field, NAME1, is declared as a global data object, what will be output by the
following code?
report zabaprg.
DATA: name1 like KNA1-NAME1 value 'ABAP programmer'.
name1 = 'Customer name'.
CLEAR name1.
perform write_name.
FORM write_name.
name1 = 'Material number'.
WRITE name1.
ENDFORM.
A: Customer name
B: ABAP programmer
C: Material number
D: None of the above
Ans:C

4. All of these allow you to step through the flow of a program line-by-line except:
A: Enter /h then execute
B: Execute in debug mode
C: Enter /i then execute
D: Set a breakpoint
Ans: C

5. Which of the following may NOT be modified using the ABAP Dictionary
transaction?
A: Type groups
B: Search help
C: Lock objects
D: Function groups
Ans:D

6. In a line of code, text-100, is an example of which type of text element?
A: Text symbol
B: Selection text
C: Text title
D: Text identifier
Ans:A

7. The editor function that formats and indents the lines of code automatically is called
____.
A: Auto align
B: Pretty printer
C: Generate version
D: Syntax check
Ans:B

8. A DO loop increments the system field ____.
A: SY-LOOPI
B: SY-TABIX
C: SY-LSIND
D: SY-INDEX
Ans: D

9. The event that is processed after all data has been read but before the list is displayed
is:
A: END-OF-PAGE.
B: START-OF-SELECTION.
C: END-OF-SELECTION.
D: AT LINE-SELECTION.
Ans:A ? C

10. The field declared below is of what data type?
DATA: new_fld(25).
A: P
B: N
C: I
D: C
Ans: D

11. In regard to the INITIALIZATION event, which of the following is NOT a true
statement?
A: Executed before the selection screen is displayed.
B: You should use SET PF-STATUS here.
C: You can assign different values to PARAMETERS and SELECT-OPTIONS here.
D: Executed one time when you start the report.
Ans: B

12. The event AT SELECTION-SCREEN OUTPUT. occurs before the selection screen
is displayed and is the best event for assigning default values to selection criteria.
A: True
B: False
Ans: B

13. The business (non-technical) definition of a table field is determined by the field's
____.
A: domain
B: field name
C: data type
D: data element
Ans: D

14. In regard to the three-tier client/server architecture, which of the following is a true
statement?
A: The presentation server processes the SAP program logic.
B: An application server is responsible for updating database tables.
C: Typically, there is a one-to-one ratio of database servers to presentation servers.
D: The application server layer is the level between a presentation server and a
database server.
Ans: D,B

15. What will be output by the code below?
DATA: alph type I value 3.
write: alph.
WHILE alph > 2.
write: alph.
alph = alph - 1.
ENDWHILE.
A: 3
B: 3 2
C: 3 3 2
D: 3 3
Ans: D

16. To allow the user to enter a single value on a selection screen, use the ABAP
keyword ____.
A: SELECT-OPTIONS.
B: PARAMETERS.
C: RANGES.
D: DATA.
Ans: B

17. What will be output by the following code?
DATA: BEGIN OF itab OCCURS 0, fval type i, END OF itab.
itab-fval = 1. APPEND itab.
itab-fval = 2. APPEND itab.
REFRESH itab.
WRITE: /1 itab-fval.
A: 1
B: 2
C: blank
D: 0
Ans: B

18. You can define your own key fields when declaring an internal table.
A: True
B: False
Ans: A

19. When modifying an internal table within LOOP AT itab. _ ENDLOOP. you must
include an index number.
A: True
B: False
Ans : B

20. If itab contains 20 rows, what will SY-TABIX equal when the program reaches the
WRITE statement below?
SY-TABIX = 10.
LOOP AT itab.
count_field = count_field + 1.
ENDLOOP.
WRITE: /1 count_field.
A: 0
B: 10
C: 20
D: 30
Ans: C

21. Adding a COMMIT WORK statement between SELECT_ENDSELECT is a good
method for improving performance.
A: True
B: False
Ans:B

22. To select one record for a matching primary key, use ____.
A: SELECT
B: SELECT INTO
C: SELECT SINGLE
D: SELECT ENTRY
Ans: C

23. In regard to MOVE-CORRESPONDING, which of the following is NOT a true
statement?
A: Moves the values of components with identical names.
B: Fields without a match are unchanged.
C: Corresponds to one or more MOVE statements.
D: Moves the values of components according to their location.
Ans: D

24. The ABAP keyword for adding authorizations to a program is ____.
A: AUTH-CHECK
B: AUTHORITY-CHECK
C: AUTHORIZATION-CHECK
D: AUTHORITY-OBJECT
Ans:B

25. To read an exact row number of an internal table, use this parameter of the READ
TABLE statement.
A: INDEX
B: TABIX
C: ROW
D: WHERE
Ans: B ? A

26. To remove lines from a database table, use ____.
A: UPDATE
B: MODIFY
C: ERASE
D: DELETE
Ans: D

27. Which table type would be most appropriate for accessing table rows using an
index.
A: Hashed table
B: Standard table
C: Sorted table
D: None of these may be accessed using an index.
Ans: C

28. The following code indicates:
SELECTION-SCREEN BEGIN OF BLOCK B1.
PARAMETERS: myparam(10) type C,
Myparam2(10) type N,
SELECTION-SCREEN END OF BLOCK.
A: Draw a box around myparam and myparam2 on the selection screen.
B: Allow myparam and myparam2 to be ready for input during an error dialog.
C: Do not display myparam and myparam2 on the selection screen.
D: Display myparam and myparam2 only if both fields have default values.
Ans: A

29. The following code reorders the rows so that:
DATA: itab LIKE kna1 OCCURS 0 WITH HEADER LINE.
itab-name1 = 'Smith'. itab-ort01 = 'Miami'. APPEND itab.
itab-name1 = 'Jones'. itab-ort01 = 'Chicago'. APPEND itab.
itab-name1 = 'Brown'. itab-ort01 = 'New York'. APPEND itab.
SORT itab BY name1 ort01.
A: Smith appears before Jones
B: Jones appears before Brown
C: Brown appears before Jones
D: Miami appears before New York
Ans: C

30. If a table contains many duplicate values for a field, minimize the number of
records returned by using this SELECT statement addition.
A: MIN
B: ORDER BY
C: DISTINCT
D: DELETE
Ans:C

31. When writing a SELECT statement, you should place as much load as possible on
the database server and minimize the load on the application server.
A: True
B: False
Ans: B

32. All of the following pertain to interactive reporting in ABAP except:
A: Call transactions and other programs from a list.
B: Secondary list shows detail data.
C: Good for processing lists in background.
D: AT USER-COMMAND
Ans:C

33. In regard to a function group, which of the following is NOT a true statement?
A: Combines similar function modules.
B: Shares global data with all its function modules.
C: Exists within the ABAP workbench as an include program.
D: Shares subroutines with all its function modules.
Ans: D

34. Errors to be handled by the calling program are defined in a function module's
____.
A: exceptions interface
B: source code
C: exporting interface
D: main program
Ans :A

35. In regard to the START-OF-SELECTION event, which of the following is a true
statement?
A: Executed before the selection screen is displayed.
B: This is the only event in which a SELECT statement may be coded.
C: Executed when the user double-clicks a list row.
D: Automatically started by the REPORT statement.
Ans:D

36. The order in which an event appears in the ABAP code determines when the event
is processed.
A: True
B: False
Ans: B

37. The SAP service that ensures data integrity by handling locking is called:
A: Update
B: Dialog
C: Enqueue/Dequeue
D: Spool
Ans: C

38. What standard data type is the following user-defined type?
TYPES: user_type.
A: N
B: C
C: I
D: Undefined
Ans: B

39. Which ABAP program attribute provides access protection?
A: Status
B: Application
C: Development class
D: Authorization group
Ans:D

40. Page headers for a secondary list should be coded in which event?
A: TOP-OF-PAGE.
B: START-OF-SELECTION.
C: TOP-OF-PAGE DURING LINE-SELECTION.
D: AT USER-COMMAND.
Ans: C

41. Given:
PERFORM subroutine USING var.
The var field is known as what type of parameter?
A: Formal
B: Actual
C: Static
D: Value
Ans:B

42. The following statement will result in a syntax error.
DATA: price(3) type p decimals 2 value '100.23'.
A: True
B: False
Ans: B

43. The following code indicates:
CALL SCREEN 300.
A: Start the PAI processing of screen 300.
B: Jump to screen 300 without coming back.
C: Temporarily branch to screen 300. *
D: Exit screen 300.
Ans:C

44. Which of the following would be stored in a table as master data?
A: Customer name and address
B: Sales order items
C: Accounting invoice header
D: Vendor credit memo
Ans: A

45. In relation to an internal table as a formal parameter, because of the STRUCTURE
syntax, it is possible to:
A: Use the DESCRIBE statement within a subroutine.
B: Loop through the internal table within a subroutine.
C: Access the internal table fields within a subroutine.
D: Add rows to the internal table within a subroutine.
Ans: C

46. This data type has a default length of one and a default value = '0'.
A: P
B: C
C: N
D: I
Ans: C

47. To prevent duplicate accesses to a master data field:
A: Create an index on the master data field.
B: Remove nested SELECT statements.
C: Use SELECT SINGLE.
D: Buffer the data in an internal table.
Ans: A ? C

48. In regard to the code below, which of the following is not a true statement?
TABLES: KNA1.
GET KNA1.
Write: /1 kna1-kunnr.
END-OF-SELECTION.
A: The GET event is processed while a logical database is running.
B: All the fields from table KNA1 may be used in the GET event.
C: You can code the GET event elsewhere in the same program.
D: None of the above.
Ans: D

49. The following code indicates:
SELECT fld1 FROM tab1 INTO TABLE itab
UP TO 100 ROWS
WHERE fld7 = pfld7.
A: Itab will contain 100 rows.
B: Only the first 100 records of tab1 are read.
C: If itab has less than 100 rows before the SELECT, SY-SUBRC will be set to 4.
D: None of the above.
Ans: D

50. To place a checkbox on a list, use
A: WRITE CHECKBOX.
B: FORMAT CHECKBOX ON.
C: WRITE fld AS CHECKBOX.
D: MODIFY LINE WITH CHECKBOX.
Ans:C

51. Which of the following is NOT a true statement in regard to a sorted internal table
type?
A: May only be accessed by its key.
B: Its key may be UNIQUE or NON-UNIQUE.
C: Entries are sorted according to its key when added.
D: A binary search is used when accessing rows by its key.
Ans: A

52. The following code indicates:
CALL SCREEN 9000 STARTING AT 10 5 ENDING AT 60 20
A: Screen 9000 is called with the cursor at coordinates (10,5)(60,20).
B: Screen 9000 must be of type "Modal dialog box."
C: Display screen 9000 in a full window.
D: Screen 9000 may only contain an ABAP list.
Ans:A

53. After a DESCRIBE TABLE statement SY-TFILL will contain
A: The number of rows in the internal table.
B: The current OCCURS value.
C: Zero, if the table contains one or more rows.
D: The length of the internal table row structure.
Ans:A

54. Function module source code may not call a subroutine.
A: True
B: False
Ans: B

55. This data type has a default length of eight and a default value = '00000000'.
A: P
B: D
C: N
D: C
Ans: B

56. Within the source code of a function module, errors are handled via the keyword:
A: EXCEPTION
B: RAISE
C: STOP
D: ABEND
Ans:B

57. Which of these is NOT a valid type of function module?
A: Normal
B: Update
C: RFC
D: Dialog
Ans:D

58. To call a local subroutine named calculate answer, use this line of code:
A: PERFORM calculate answer.
B: CALL calculate answer.
C: USING calculate answer.
D: SUB calculate answer.
Ans:A

59. Given:
DO.
Write: /1 'E equals MC squared.'.
ENDDO.
This will result in ____.
A: output of 'E equals MC squared.' on a new line one time
B: an endless loop that results in an abend error
C: output of 'E equals MC squared.' on a new line many times
D: a loop that will end when the user presses ESC
Ans.B

60. The following code indicates
write: /5 'I Love ABAP'.
A: Output 'I Lov' on the current line
B: Output 'I Love ABAP' starting at column 5 on the current line
C: Output 'I Lov' on a new line
D: Output 'I Love ABAP' starting at column 5 on a new line
Ans: D

61. Which of the following is NOT a component of the default standard ABAP report
header?
A: Date and Time
B: List title
C: Page number
D: Underline
Ans: A

62. A select statement has built-in authorization checks.
A: True
B: False
Ans:B

63. A BDC program is used for all of the following except:
A: Downloading data to a local file
B: Data interfaces between SAP and external systems
C: Initial data transfer
D: Entering a large amount of data
Ans:B

64. Page footers are coded in the event:
A: TOP-OF-PAGE.
B: END-OF-SELECTION.
C: NEW-PAGE.
D: END-OF-PAGE.
Ans:D

65. Page headers for a secondary/details list can be coded in the event:
A: GET.
B: INITIALIZATION.
C: TOP-OF-PAGE DURING LINE-SELECTION.
D: NEW-PAGE.
Ans:C

66. To both add or change lines of a database table, use ____.
A: INSERT
B: UPDATE
C: APPEND
D: MODIFY
Ans:D

67. To select one record for a matching primary key, use ____.
A: SELECT
B: SELECT INTO
C: SELECT SINGLE
D: SELECT ENTRY
Ans:C

68. After adding rows to an internal table with COLLECT, you should avoid adding
More rows with APPEND.
A: True
B: False
Ans:A

69. The output for the following code will be
report zabaprg.
DATA: my_field type I value 99.
my_field = my_field + 1.
clear my_field.
WRITE: 'The value is', my_field left-justified.
A: The value is 99
B: The value is 100
C: The value is 0
D: None of the above
Ans: C

70. If this code results in an error, the remedy is
SELECT * FROM tab1 WHERE fld3 = pfld3.
WRITE: /1 tab1-fld1, tab1-fld2.
ENDSELECT.
A: Add a SY-SUBRC check.
B: Change the * to fld1 fld2.
C: Add INTO (tab1-fld1, tab1-fld2).
D: There is no error.
Ans: C,D

71. To summarize the contents of several matching lines into a single line, use this
SELECT statement clause.
A: INTO
B: WHERE
C: FROM
D: GROUP BY
Ans:D

72. What is output by the following code?
DATA: BEGIN OF itab OCCURS 0,
letter type c,
END OF itab.
itab-letter = 'A'. APPEND itab.
itab-letter = 'B'. APPEND itab.
itab-letter = 'C'. APPEND itab.
itab-letter = 'D'. APPEND itab.
LOOP AT itab.
SY-TABIX = 2.
WRITE itab-letter.
EXIT.
ENDLOOP.
A: A
B: A B C D
C: B
D: B C D
Ans: A

73. All of the following are considered to be valid ABAP modularization techniques
except:
A: Subroutine
B: External subroutine
C: Field-group
D: Function module
Ans:C


74. To create a list of the top 25 customers, you should use
A: DELETE ADJACENT DUPLICATES
B: READ TABLE itab INDEX 25
C: LOOP AT itab FROM 25
D: APPEND SORTED BY
Ans:D

75. Which of these sentences most accurately describes the GET VBAK LATE. event?
A: This event is processed before the second time the GET VBAK event is
processed.
B: This event is processed after all occurrences of the GET VBAK event are
completed.
C: This event will only be processed after the user has selected a basic list row.
D: This event is only processed if no records are selected from table VBAK.
Ans:B

76. In an R/3 environment, where is the work of a dialog program performed?
A: On the application server using a dialog work process service.
B: On the presentation server using a dialog work process service.
C: On the database server using a dialog work process service.
D: None of the above.
Ans: A

77. In regard to Native SQL, which of the following is NOT a true statement?
A: A CONNECT to the database is done automatically.
B: You must specify the SAP client.
C: The tables that you address do not have to exist in the ABAP Dictionary.
D: Will run under different database systems.
Ans:D

78. To change one or more lines of a database table, use ____.
A: UPDATE
B: INSERT
C: INTO
D: MOD
Ans:A

79. Which is the correct sequence of events?
A: AT SELECTION-SCREEN, TOP-OF-PAGE, INITIALIZATION
B: START-OF-SELECTION, AT USER-COMMAND, GET dbtab
C: INITIALIZATION, END-OF-SELECTION, AT LINE-SELECTION
D: GET dbtab, GET dbtab LATE, START-OF-SELECTION
Ans:B

80. Which of the following is NOT a numeric data type?
A: I
B: N
C: P
D: F
Ans: B

50 Top FICO Multiple Choice Questions and Answers

FICO Multiple Choice Questions and Answers

1. SAP SUPPORT PACKS CAN BE APPLIED TO WHICH TYPE OF LANDSCAPE?
A. 1-SYSTEM LANDSCAPE
B. 2-SYSTEM LANDSCAPE
C. 3-SYSTEM LANDSCAPE
D. ALL OF THE ABOVE   
Ans: D

2.  ON SAP INSTALLATION WHICH OF THE FOLLOWING CLIENT/CLIENTS ARE MADE BY DEFAULT?
A. CLIENT 000
B. CLIENT 001
C. CLIENT 066
D. ALL OF THE ABOVE 
Ans: D

3. IS IT POSSIBLE TO HAVE MULTIPLE LANDSCAPES IN ONE TRANSPORT DOMAIN ?
A.  YES 
B.  NO
Ans: A

4. THE SYSTEMS IN A SYSTEM LANDSCAPE SHARE CUSTOMIZING AND REPOSITORY OBJECTS VIA ________ ?
A. TRANSPORT REQUESTS 
B. CONSOLIDATION ROUTE
C. REMOTE FUNCTION CALL
D. ALL OF THE ABOVE
Ans: A

5. DEVELOPMENT CLASSES CONTAINS ____________?

A. REPOSITORY OBJECTS 
B. USER MASTER DATA
C. CUSTOMIZING DATA
D. ALL OF THE ABOVE
Ans: A

6. IS IT POSSIBLE TO DEFINE MORE THAN ONE CONSOLIDATION AND DELIVERY ROUTES IN A TRANSPORT DOMAIN ?
A.  YES 
B.  NO
Ans: A

7. WHICH OF THE FOLLOWING INFORMATIONS ABOUT TRANSPORTS REQUESTS NOT PRESENT IN COFILES?

A.  INFORMATION OF TRANSPORT TYPES
B.  REQUIRED IMPORT STEPS
C.  TRACE FILES   
D.  POST PROCESSING EXIT CODES
Ans: C

8. WHICH OF THE FOLLOWING FUNCTION PHYSICALLY WRITES FILES TO THE OPERATING SYSTEM LEVEL IN TRANSPORT MANAGEMENT SYSTEM?
A.  IMPORT
B.  EXPORT
C.  BOTH A & B
D.  NONE OF THE ABOVE
Ans: B

9. WHICH VERSION ONE CAN USE ENHANCED TRANSPORT MANAGEMENT SYSTEM (TMS+) ?
A.  NW 700 SP12 
B.  NW 700 SP10
C.  BOTH A & B
D.  NONE OF THE ABOVE
Ans: A

10. WHICH OF THE FOLLOWING TRANSACTION CODE USED TO RELEASE A TASK?
A.  SE05
B.  SE07
C.  SE09 
D.  SE04
Ans: C

11. COPYING OF ONE PACKAGE NAME TO ANOTHER PACKAGE NAME IS CALLED ?
A.  TRANSPORT OF COPIES
B.  RELOCATION   
C.  CUSTOMIZING REQUEST
D.  WORKBENCH REQUEST
Ans: B

12. IF WE WRITE AN ABAP PROGRAM IN CLIENT 800 AND MAKE A TRANSPORT REQUEST FOR THIS THEN THE REQUEST OF WHICH TYPE?
A.  TRANSPORT OF COPIES
B.  RELOCATION
C.  CUSTOMIZING REQUEST
D.  WORKBENCH REQUEST   
Ans: D

13 WHILE DOING SYSTEM COPY, YOU HAVE TO PRESERVE RFC DESTINATIONS (SM59), WHAT PROCEDURE WILL YOU FOLLOW?
A.  EXPORT SM59 TABLES USING TRANSPORT REQUEST 
B.  TAKE SNAPSHOTS AND PRESERVE THEM
C.  THIS IS NOT POSSIBLE, THE DATA WILL BE OVERWRITTEN
D.  USER SAP* AND INSTALL
Ans: A

14. WHAT IS THE FULL FORM OF SSCR?
A.  SAP SOFTWARE CHANGE REQUIREMENTS
B.  SAP SOFTWARE CHANGE REQUESTS
C.  SAP SOFTWARE CHANGE REGISTRATION   
D.  SAP SOFTWARE CHANGE REPRESENTATION
Ans: C

15.IN WHICH SUBDIRECTORY THE SUPPORT PACKAGES SHOULD BE UNCARRED ?
A.  /USR/SAP/TRANS/EPS/IN 
B.  /USR/SAP/TRANS/OUT
C.  /USR/SAP/TRANS/LOG
D.  /USR/SAP/TRANS/SUPP
Ans: A

16. IN WHICH CLIENT SHOULD WE CONFIGURE STMS ?
A.  000   
B.  001
C.  800
D.  ANY CLIENT
Ans: A

17. WHICH OF THE FOLLOWING SAP TOOL/TOOLS USED IN A  CUSTOMIZING PROJECT ?
A.  SAP IMG
B.  TRANSPORT ORGANIZER
C.  ABAP WORKBENCH
D.  A & B
Ans: D

18. IN A THREE SYSTEM LANDSCAPE THE PROJECT MANAGER WILL EXPORT HIS REQUEST FROM QUALITY SYSTEM?
A.  RIGHT
B.  FAKE 
Ans: B

19. WHAT ARE THE COMPONENTS OF R3 SYSTEM WITH RESPECT TO THREE TIER ARCHITECTURE?
A.  DATABASE,APPLICATION,PRESENTATION 
B.  DEVELOPMENT,QUALITY,PRODUCTION
C.  DEMO,TRAINING,SANDBOX
D.  MS,ICM,GN
Ans: A

20. WHEN A USER SENDS REQUEST TO SAP SYSTEM VIA BROWSER, WEB REQUESTS ARE FIRST HANDLED BY?
A.  ICM 
B.  MS
C.  GW
D.  SDM
Ans: A

21. WHICH SYSTEM IS RESPONSIBLE FOR MAINTENANCE OF INFRASTRUCTURE & CONFIGURATION OF STMS?
A.  DOMAIN CONTROLLER 
B.  SOFTWARE DEVELOPMENT SYSTEM
C.  PORTAL SYSTEM
D.  PRODUCTION SYSTEM
Ans: A

22. TRANSPORT REQUEST IS MADEUP OF ?
A.  COFILE
B.  DATAFILE
C.  BOTH A & B 
D.  NONE OF THE ABOVE
Ans: C

23. TRANSACTION SCC1 COPIES CHANGES FROM ONE CLIENT TO ANOTHER CLIENT BASED ON ?
A.  TASK
B.  TRANSPORT REQUEST
C.  TRANSPORT REQUEST & IT’S TASK
D.  ALL OF THE ABOVE 
Ans: D

24. WHICH OF THE FOLLOWING DOES NOT COME UNDER /USR/SAP/TRANS ?
A.  BIN
B.  PROFILE   
C.  TMP
D.  LOG
Ans: B

25. WHICH OF THE  FOLLOWING CONTANS A MESSAGE SERVER ?
A.  DIALOG INSTANCE
B.  CENTRAL INSTANCE   
C.  BOTH A & B
D.  NONE OF THE ABOVE
Ans: B

26. IN SAP NETWEAVER AS ABAP+JAVA TWO DIFFERENT DATABASES ARE REQUIRED, ONE FOR ABAP, ANOTHER FOR JAVA. ?
A.  RIGHT   
B.  FAKE
Ans: A

27. COMMUNICATION BETWEEN ABAP STACK AND JAVA STACK IS DONE THROUGH ___. ?
A.  SDM
B.  JCO   
C.  SCM
D.  ICM
Ans: B

28. BASIC FUNCTIONALITY 7.00 MATCHES WITH CORE COMPONENT ?
A.  6.0 
B.  5.0
C.  4.7
D.  NONE
Ans: A

29. DATA FROM DIFFERENT CLIENTS IS KEPT SEPERATELY?
A.  AT THE O.S LEVEL
B.  AT THE KERNEL LEVEL   
C.  BOTH
D.  NONE.
Ans: B

30. A NEW PATCH DEPLOYEMENT IN JAVA STACK IS DONE BY THE TOOL?
A. SPAM
B. SAINT
C. TP
D. SDM 
Ans: D

31. WHICH OF THE FOLLOWING WILL BE DEFAULT NAME OF CONSOLIDATION ROUTE FOR A THREE SYSTEM LANDSCAPE CONTAINING, QMS, DMS AND PMS SYSTEMS?
A. ZQMS
B. ZDMS 
C. ZCON
D. ZDEV
Ans: B

32. WHICH OF THE FOLLOWING STRATEGIES IS MOST RECOMMENDED AS A TRANSPORT STRATEGY IN SAP?
A. QUEUE CONTROLLED MASS TRANSPORT   
B. QUEUE CONTROLLED SINGLE TRANSPORT
C. WORKFLOW CONTROLLED TRANSPORT
D. NONE OF THE ABOVE
Ans: A

33. IN A TRANSPORT DOMAIN CONTAINING 8 SYSTEMS, TWO SYSTEMS CAN SHARE A SAME SYSTEM ID ?
A. RIGHT
B. FAKE   
Ans: B

34. IS IT POSSIBLE TO DEFINE MORE THAN ONE CONSOLIDATION AND DELIVERY ROUTES IN A TRANSPORT LANDSCAPE ?
A.  YES
B.  NO   
Ans: B

35. WHICH OF THE FOLLOWING PROPERTY SHOULD ONE CONSIDER WHEN DECIDING THE DOMAIN ?
A. /USR/SAP/TRANS/EPS/IN  ?


B.  /USR/SAP/TRANS/OUT
C.  /USR/SAP/TRANS/LOG
D.  /USR/SAP/TRANS/SUPP

    CONTROLLER SYSTEM.

A.  HIGH AVAILIBILITY
B.  EASILY ACCESIBLE
C.  PROTECTED UNDER A DEMILITARIZED ZONE
D.  LEAST USAGE

36. WHEN DOES THE BUFFER OF PRODUCTION GETS POPULATED IN STANDARD THREE SYSTEM LANDSCAPE ?

A.  EXPORT FROM THE DEVELOPMENT
B.  IMPORT INTO QUALITY     
C.  IMPORT INTO PRODUCTION
D.  EXPORT FROM QUALITY
Ans: B

37. IN A THREE SYSTEM LANDSCAPE, HOW CAN YOU APPLY A SNOTE THROUGHOUT THE LANDSCAPE ?
A.  APPLY IN DEVELOPMENT, THEN IN QUALITY AND FINALLY IN PRODUCTION 
B.  APPLY IN DEVELOPMENT,EXPORT, THEN IMPORT IN QUALITY AND FINALLY IN PRODUCTION   
C.  APPLY ONLY IN DEVELOPMENT AND PRODUCTION
D.  THROUGH TRANSACTION – LANDNOTE
Ans: B,C

38. WHICH OF THE FOLLOWING WILL CHANGE AFTER APPLYING SUPPORT PACK TO A COMPONENT ?

A. COMPONENT RELEASE VERSION
B. ANCIENT LICENSE GETS DELETED
C. SUPPORT PACKAGE PATCH LEVEL 
D. KERNEL PATCH
Ans: C

39. WHICH OF THE FOLLOWING IS CLIENT DEPENDENT REQUEST ?

A.  TICKTING REQUEST
B.  CUSTOMIZING REQUEST   
C.  WORKFLOW REQUEST
D.  WORKBENCH REQUEST
Ans: B

40. A PROJECT MANAGER MAKES ______ AND DISTRIBUTES INDIVIDUAL  ______ TO THE CUSTOMIZING TEAM ?

A.  PROJECT, TRANSPORT REQUEST
B.  PROJECT, TASK
C.  TASK, TRANSPORT REQUEST
D.  TRANSPORT REQUEST, PROJECT
Ans: B

41. WHEN YOU WANT TO ADD A NEW COMPONENT TO YOUR EXISTING NW 700 SYSTEM, FOR EXAMPLE, FIN_BASIS 700 – YOU WILL USE ?

A.  SPAM
B.  SAINT   
C.  SDM
D.  JSPM
Ans: B

42. WHEN YOU WANT TO ADD A NEW PATCH TO YOUR EXISTING COMPONENT, FOR EXAMPLE, FIN_BASIS 700 – YOU WILL USE ?

A.  SPAM 
B.  SAINT
C.  SDM
D.  JSPM
Ans: A

43. THREE SYSTEMS IN A SINGLE LANDSCAPE CAN HAVE DIFFERENT TRANSPORT DIRECTORIES ?

   A. YES   
B.  NO
Ans: A

44. THE FOLLOWING TABLES ARE USED FOR COMMUNICATION BETWEEN RDD* JOBS AND TP WHILE IMPORT OF A TRANSPORT REQUEST ?

   A.TRBAT   
B. T000
C. TRJOB   
D. USR02
Ans: A,C

45. WHAT WILL YOU CHECK WHEN YOU SEE A TRUCK SYMBOL IN IMPORT QUEUE, AND THE TRANSPORT IS HANGING ?

   A. YOU WILL CHECK THE LOGS IN /USR/SAP/TRANS/TMP
B.  YOU WILL CHECK IF THE USER TMSADM IS LOCKED
C.  CHECK IF RDDIMPDP IS RUNNING AS BACKGROUND JOB
D.  CONTACT THE DEVELOPER FOR CLARITY

    DEPLOYEMENT

A.  /USR/SAP/TRANS/EPS/IN
B.  /USR/SAP/TRANS/OUT
C.  /USR/SAP/TRANS/LOG
D.  /USR/SAP/TRANS/SUPP

46. What is the T Code for payment with printout?
A.   F-18
B.   F-19
C.   F-20
D.   F-17
Ans:  A

47. What is the T Code for post incoming payments?
A.   F-27
B.   F-28
C.   F-55
D.   F-11
Ans:  B

48. What is the T Code for document archving?
A.   F145
B.   F045
C.   F405
D.   F05
Ans:  B

49. What is the T Code for clear customer?
A.   FB1D
B.   FBD1
C.   F1BD
D.   FB1C
Ans:  A

50. What can be the reasons for archiving data?
A.   Improve response time
B.   Keep data secret from auditors
C.   Reduce system downtimes during software upgrades
D.   None of the above
Ans:  A,C

51. Which of the following are required settings for foreign currency valuation?
A.   Define exchange rates
B.   Define valuation methods
C.   Define expense and revenue accounts for exchange rate differences
D.   Specify balance sheet adjustment accounts for receivables and payables
E.   All the above
Ans:  E

52. The posting peroid can be defined for each:
A.   Company code
B.   Accounting principle
C.   Posting period variant
D.   Accrual type
E.   All the above
F.   a,b and d
Ans:  F

53. What is the purpose of account determination?
A.   Document type
B.   Debit account
C.   Credit account
D.   Balance sheet account
E.   All the above
F.   a, b and c
Ans:  F

54. Which of the following are the fields of 'General Data' in customer/vendor accounts?
A.   Insurance
B.   Account Management
C.   Both the above
D.   None of the above
Ans:  C

55. Which of the following are process dimensions of SAP business workflow?
A.   Organization4 structure
B.   Process structure
C.   Function
D.   Information
E.   All the above
F.   None of the above
Ans:  E

30 Top BlackBerry Multiple Choice Questions and Answers

BlackBerry Multiple Choice Questions and Answers

1.A BlackBerry device user lost her BlackBerry device. What should a system administrator do to prevent her confidential data from being accessed by another person? (Choose one.)
A. Delete her BlackBerry device user account in BlackBerry Manager.
B. In the IT Admin Tasks pane, select Erase Data and Disable Handheld.
C. Contact the service provider and request that service on the BlackBerry device be terminated.
D. In BlackBerry Manager, right-click on the username and choose Wipe Handheld.
E. Advise the BlackBerry device user to change her email account password immediately.
Answer: B

2.A BlackBerry device appears to have stopped responding and an hour glass is displayed on the screen.
The BlackBerry device is connected to the computer, but its status is shown as Disconnected in
BlackBerry Desktop Manager. What are two ways to resolve this issue? (Choose two.)
A. Click Options or Settings on the BlackBerry device Home screen > Select Advanced Options > Click Wipe Handheld.
B. Perform a full back up of the BlackBerry device data and turn on advanced logging. Find the corrupt database indicated in the log, clear the corrupt database, and then restore the database to the BlackBerry device.
C. Install the latest version of BlackBerry Device Software on the computer and run the application loader process.
D. Remove the battery from the BlackBerry device while it is connected to the computer and run the
application loader process. During the application loader process, re-insert the battery and complete the process.
E. Click Options or Settings on the BlackBerry device Home screen > Select Advance Settings > Click Application Configuration > Select Allow Java Script and Allow JVM.
Answer: C,D

3.Which organizer data application is unsupported for synchronization in BlackBerry Desktop Manager 4.2.2? (Choose one.)
A. Sage ACT! 6.0
B. Novell GroupWise 6.5.7
C. Yahoo! Mail
D. IBM Lotus Notes 6.5
E. Microsoft Outlook 98
Answer: E

4.What are two reasons to implement S/MIME as part of a BlackBerry Enterprise Solution? (Choose two.)
A. To increase the security of email message transmissions after they leave the organization infrastructure
B. To allow inter-connectivity of multiple BlackBerry Enterprise Servers in a single organizational infrastructure
C. To comply with security standards governed by an organization or a company
D. To improve phone call security between the BlackBerry device and the service providers?wireless towers to prevent digital scanners from picking up wireless signals
E. To allow secure Wi-Fi connections to a organization infrastructure from any hotspot by encrypting data packets
Answer: A,C

5.A BlackBerry device user has multiple groups in the address book of a messaging application. Each day, the user synchronizes this address book with the BlackBerry device's Address Book. While viewing the Address Book on the BlackBerry device, the user notices that some of the contacts are missing. What should the user do to view the missing entries in the BlackBerry device's Address Book? (Choose one.)
A. Display the menu > Select View > Select Show all Groups
B. Display the menu > Select Filter > Modify Category
C. Display the menu > Select Options > Modify Sort By
D. Display the menu > Select SIM Phone Book > Select View
E. Display the menu > Select Show All Contacts
Answer: B

6.The BlackBerry device is displaying a 517 error. What does this error indicate and what should be done to resolve the error? (Choose one.)
A. This error indicates that a BlackBerry device does not have BlackBerry Device Software installed and
needs to have the software installed using the backup and restore tool.
B. This error indicates a BlackBerry device has a corrupt file system and needs to have BlackBerry
Device Software installed using the application loader tool.
C. This error indicates a BlackBerry device is locked and needs to have BlackBerry Device Software
installed using the backup and restore tool.
D. This error indicates a BlackBerry device has a corrupt file system and needs to have BlackBerry
Device Software installed using the backup and restore tool.
E. This error indicates a BlackBerry device is locked and needs to have BlackBerry Device Software
installed using the application loader tool.
Answer: B

7.A BlackBerry device can connect to BlackBerry Desktop Manager using which three connection methods? (Choose three.)
A. USB port
B. Bluetooth technology
C. Infrared technology
D. COM port
E. FireWire connection
F. Parallel connection
Answer: A,B,D

8.Which two conditions must be met for a successful enterprise activation process? (Choose two.)
A. Port 4101 on the firewall must be open.
B. Email messages must go to the BlackBerry Enterprise Server adminstrator's inbox.
C. Attachments with the .dat extension must be allowed.
D. Message delivery from BlackBerry.net must be unrestricted.
E. All PIM databases must be cleared using the backup and restore tool.
Answer: C,D

9.During a clean uninstall of BlackBerry Desktop Manager, which two keys from the registry may need to be removed manually by the BlackBerry device user? (Choose two.)
A. HKEY_LOCAL_MACHINE\Software\Research In Motion
B. HKEY_CURRENT_USER\Software\Research In Motion
C. HKEY_LOCAL_MACHINE\Software\BlackBerry
D. HKEY_CURRENT_USER\Software\BlackBerry
E. HKEY_CURRENT_USER\Software\RIM Device
Answer: A,B

10.Upon completion of an organizer data synchronization on the BlackBerry device, a message appears indicating that several records were skipped. What would cause this message to appear? (Choose one.)
A. One or more of the records in one of the organizer data applications is missing a piece of information
that is required for synchronization to occur.
B. BlackBerry Desktop Software lacks the proper permission to access the data.
C. BlackBerry Desktop Software is unable to connect to an organizer data application and, as a result,
some records were skipped.
D. A setting in the Configure Synch?options is set to skip records that are dated prior to today.
E. The BlackBerry device has reached the maximum number of entries for the application and is unable to
add more entries.
Answer: A

11.Using BlackBerry Manager, what are two ways to navigate to the Resend IT Policy option? (Choose two.)
A. Navigate to Tools > Select Policies > Select a policy name > Select Edit > Select Users > Click Resend
IT Policy
B. Right-click on the BlackBerry device user account > Click Resend IT Policy
C. Select the BlackBerry device user account > Select IT Admin in the Task pane > Click Resend IT
Policy
D. Select the BlackBerry Enterprise Server name > Select IT Admin > Click Resend IT Policy
E. Right-click on the BlackBerry device user account > Select IT Admin > Click Resend IT Policy
Answer: B,C

12.When performing an enterprise activation, the following error message appears. Some databases failed to synchronize. Address Book
What are two possible causes of this error? (Choose two.)
A. Contact information required for synchronization is missing.
B. The address book is too large to synchronize.
C. Wireless PIM Sync is turned off.
D. There are invalid characters (such as #, %, $, and &) in the address
book.
E. The BlackBerry Device Software installed on the BlackBerry device
The safer , easier way to help you pass any IT exams.
5 / 9
has become corrupt.
Answer: A,D

13.A BlackBerry device stops responding and displays the following error message. APP Error 200 Reset What troubleshooting steps should be taken to resolve this issue? (Choose one.)
A. During the application loader process, make sure the Automatically back up and clear the application
database option has been selected.
B. Before performing the application loader process, verify that the Content Protection and Content
Compression options on the BlackBerry device have both been turned off.
C. Before performing the application loader process, verify that the Regenerate Encryption keys manually
option has been selected under Email Settings in BlackBerry Desktop Manager.
D. While performing the application loader process, make sure the Erase all application data and Erase
all currently installed applications options are both selected under Advanced options.
E. During the application loader process, make sure the DOD Root Certificates option is selected and
reset the BlackBerry device.
Answer: D

14.A BlackBerry device user wants appointments in the Calendar to appear on the BlackBerry device for at least three months after the appointments date. How can this be accomplished? (Choose one.)
A. Display the menu > Select Options > Modify Allow Appointments
B. Display the menu > Select Options > Modify Appointment Memory
C. Display the menu > Select Options > Modify Keep Appointments
D. Display the menu > Select Options > Modify Show All Appointments
E. Display the menu > Select Options > Modify Previous Appointments
Answer: C

15.What is required to enable S/MIME support on the BlackBerry device? (Choose one.)
A. Identifier for the S/MIME Support Package for BlackBerry Smartphones
B. Passcode for the S/MIME Support Package for BlackBerry Smartphones
C. Authentication key for the S/MIME Support Package for BlackBerry Smartphones
D. Client access license for the S/MIME Support Package for BlackBerry Smartphones
E. Client validation license for the S/MIME Support Package for BlackBerry Smartphones
Answer: D

16.Given the following. - The BlackBerry device has been provisioned properly by the service provider. -The BlackBerry device user has been added to the BlackBerry Enterprise Server. - The enterprise activation password has been set. - The user has navigated to the enterprise activation screen and typed an email address and the activation password provided by the system administrator. What happens during the Activating stage of the enterprise activation process? (Choose one.)
A. The BlackBerry Enterprise Server sends an activation email message to the user's mailbox to start the
activation. Once this email message arrives in the user's mailbox, the process continues to the Verifying
Encryption stage.
B. The BlackBerry device sends an activation email message to the user's mailbox. The activation email
message is then processed by the BlackBerry Enterprise Server and the BlackBerry device displays
Verifying Encryption.
C. The BlackBerry device sends an email message to the BlackBerry Enterprise Server that includes the
user's email address and PIN. When this email message is retrieved by the BlackBerry Enterprise
Server, the BlackBerry device displays Verifying Encryption.
D. The BlackBerry Enterprise Server attempts to communicate directly with the BlackBerry device during
this stage. Activating?will continue to be displayed on the BlackBerry device and Initializing
will be displayed on the BlackBerry Enterprise Server until the activation is complete.
E. The BlackBerry device sends a PIN message to the BlackBerry Enterprise Server to initiate the
activation process. When the PIN message is received by the BlackBerry Enterprise Server, the email
address is verified and the BlackBerry device displays Verifying Encryption.
Answer: B

17.Which three components of BlackBerry Desktop Manager are available in BlackBerry Web Desktop Manager? (Choose three.)
A. Application Loader
B. Backup and Restore
C. Synchronize
D. Email Settings
E. Synchronize Certificates
Answer: A,B,D

18.When the BlackBerry device displays lower case lettering for the network status, what are the first two steps that should be taken to re-establish network connectivity? (Choose two.)
A. Re-install BlackBerry Device Software.
B. Activate the BlackBerry device over the wireless network.
C. Perform a hard reset of the BlackBerry device.
D. Register the BlackBerry device over the wireless network.
E. Resend service books from the BlackBerry Enterprise Server.
Answer: C,D

19.Which BlackBerry Enterprise Server service, when stopped, may negatively impact the enterprise activation process? (Choose one.)
A. BlackBerry Alert Service
B. BlackBerry MDS Services
C. BlackBerry Policy Service
D. BlackBerry Enterprise Service
E. BlackBerry Attachment Service
Answer: C

20.After a BlackBerry device user initiated an enterprise activation from her BlackBerry device, the enterprise activation message fails to arrive in her mailbox. What are three causes of this problem? (Choose three.)
A. The user typed an incorrect email address prior to starting the enterprise activation.
B. A spam email message filter prevented the delivery of the enterprise activation message.
The safer , easier way to help you pass any IT exams.
7 / 9
C. The user account has not yet been added to the BlackBerry Enterprise Server.
D. The BlackBerry device was previously active on another BlackBerry Enterprise Server and has a
conflicting IT policy.
E. The BlackBerry device failed to register on the wireless network or is not provisioned for BlackBerry
Enterprise Server services.
Answer: A,B,E

21.A BlackBerry device user is transferring a video file to a media card. Which three video codecs are supported by the BlackBerry device? (Choose three.)
A. MPEG-4 Part 2
B. H.263
C. DivX
D. WMV 9
E. RealVideo
Answer: A,B,D

22.Which three BlackBerry Enterprise Server components can be installed remotely on a stand-alone server? (Choose three.)
A. BlackBerry Attachment Service
B. BlackBerry Policy Service
C. BlackBerry MDS Connection Service
D. BlackBerry Router
E. BlackBerry Synchronization Service
Answer: A,C,D

23.A BlackBerry device user wants to copy contacts from the BlackBerry device to an organizer
application on the computer, but does not want to copy contacts from the organizer application on the computer to the BlackBerry device. When configuring the synchronization options, which operation should be selected? (Choose one.)
A. Import
B. Export
C. Synchronize
D. Handheld wins
E. Reconcile
Answer: B

24.Which three types of documents are available to BlackBerry devices? (Choose three.)
A. BlackBerry device user guides
B. Safety and product information booklets
C. BlackBerry device getting started guides
D. Fixed and known issues lists
E. Handheld management guides
Answer: A,B,C

25.What is the purpose of Content Protection for a BlackBerry device?(Choose one.)
A. Encrypts data stored locally
B. Locks message databases with a password
C. Stores all media files in a hidden folder
D. Allows wireless messages to be encrypted
E. Prevents intrusions from other wireless device users
Answer: A

26.A BlackBerry device user needs a colleague public certificate.
What are two ways for the BlackBerry device user to obtain the colleague's public certificate if LDAP queries are failing? (Choose two.)
A. The colleague sends the user an encrypted message.
B. The colleague sends the user a signed message.
C. The colleague sends the user the public certificate.
D. The user performs an address book lookup for the colleague.
E. The colleague's public certificate is resent from the BlackBerry
Enterprise Server.
Answer: B,C

27.A system administrator has just received word that a new software configuration called ABC Config has been created. The system administrator's supervisor wants the new configuration assigned to his BlackBerry device so he can test it. Starting from BlackBerry Manager, what should the system administrator do to accomplish this task? (Choose one.)
A. Click on the BlackBerry Enterprise Server name > Select the Users tab > Double-click on the
supervisor's account > Click the IT Policy menu item > Click the drop-down arrow > Click Assign Software
Configuration > Click OK
B. Click on the BlackBerry Enterprise Server name > Select the Users tab > Right-click on the
supervisor's account > Select Assign Software Configuration > Select the correct configuration > Click OK
C. Click on the BlackBerry Enterprise Server name > Select the All Users tab > Right-click on the
supervisor's account > Click Assign Software Configuration > Select the correct configuration > Click OK
D. Click on the BlackBerry Enterprise Server name > Select the Users tab > Double-click on the
supervisor's account > Select the IT Policy menu item > Click Software Configuration > Select the correct
configuration > Click OK
E. Click on the BlackBerry Domain > Click the Software Configurations tab > Right-click on the correct
configuration > Click Add User > Select the supervisor's account > Click OK
Answer: B

28.Which component of the BlackBerry Enterprise Server data flow acts as a mediator and interpreter between the messaging server and multiple wireless networks? (Choose one.)
A. BlackBerry Infrastructure
B. BlackBerry Router
C. BlackBerry MDS
D. Internet connection
E. Firewall
Answer: A

29.Starting from the Users tab, what would a system administrator do to locate the option to disable email redirection in BlackBerry Manager for a BlackBerry device user? (Choose one.)
A. Right-click on the appropriate user account > Under the IT Admin fly-out, click Disable Redirection
B. Select the appropriate user account > Click Service Access > Select the Disable Redirection check box
C. Select the appropriate user account > Click Edit Properties > Select the Disable Redirection check box
D. Right-click the appropriate user account > Click Stop Redirection
E. Right-click the appropriate user account > Under the IT Admin fly-out, click Restrict Redirection
Answer: B

30.A system administrator has just received a new BlackBerry device for an existing BlackBerry device user and wants the user to come to the office to collect it. Using BlackBerry Manager, how would the system administrator send a PIN message to the old BlackBerry device to let the user know to come to the office? (Choose one.)
A. Select the Users tab > Right-click on the user's account > Select Send PIN > Type the message
B. Select the Users tab > Right-click on the user's account > Select Send Message > Type the message
C. This feature is unavailable. The PIN message must be sent from a BlackBerry device.
D. Select the Users tab > Right-click on the user's account > Select Connect to Handheld > Type the
message in the PIN field
E. Select the All Users tab > Right-click on the user's account > Select Send PIN > Type the message
Answer: B