Vous êtes sur la page 1sur 13

TAW10 WEEK 1 SAMPLE QUESTIONS (1-57)

Question 1:

a.
b.
c.
d.

4
2
unlimited
8

Question 2:

a.
b.
c.
d.

there are no column headers


1
2
4

Question 3:

a.
b.
c.
d.

This is not a valid statement


Write out 'Hello' and the contents of text element 001
Add the variable 'Hello' to message 001
If Text Element 001 is not in your login language, then 'Hello'
is displayed

Question 4:
a.
b.
c.
d.

MSG
T100
T010
T001

Question 5:
(More than one answer is correct)

a.
b.
c.
d.
e.

Sorted
Standard
Hased
Key
Index

Question 6:
a.
b.
c.
d.

standard
sorted
hashed
keyed

Question 7:

a.
b.
c.
d.

WatchPoint
Fields
Object
Overview

Question 8:
a.
b.
c.
d.

Interface pool
Executable
Runnable
Module pool

Question 9:
a. Where only numbers are allowed and there is a need for
arithmetic operations
b. Where only numbers are allowed and there is no need for
arithmetic operations
c. Where there is a need for numbers, characters, and arithmetic
operations
Question 10:
a.
b.
c.
d.

The
The
The
The

logon screen
user master record
logon language
text symbols

Question 11:
a.
b.
c.
d.

By
By
By
By

header line
value
table
exception

Question 12:

a.
b.
c.
d.

Cut/paste
Save
Back/exit/cancel
Find

Question 13:
a.
b.
c.
d.

Read
Read
Read
Read

Table
Table
Table
Table

itab
itab
itab
itab

with sorted key k1


by binary key k1
with Table Key K1
by key K1

Question 14:
(More than one answer is correct)

a.
b.
c.
d.
e.

It is an interface
It is impemented as a function
Can only be use inside SAP
Can be a method of an object
It is an Object

Question 15:
a.
b.
c.
d.
e.

Chain write ctr1 ctr2 ctr3.


write ctr1: ctr2:ctr3.
write ctr1, ctr2, ctr3.
Write: ctr1, ctr2, ctr3.
write: ctr1 ctr2

Question 16:
a.
b.
c.
d.

When the user presses the exit key


At the End-of-Selection event
At the beginning of program processing
When the processing block has ended

Question 17:
a.
b.
c.
d.

for
for
for
for

referencing an address of a field


graphic symbols on screens and lists
referencing multiple fields at the same time
re-assigning field types

Question 18:
a. Constants: C1(4) type D

b. Constants: C1(4) type C value 'ABCD'.


c. Constants: C1(4) type C like mytab-booking.
d. Constants: C1(4) type C
Question 19:
a.
b.
c.
d.
e.

SAPMZMYPROGRAM
MZMYPROGRAMINCLUDE
MZMYPROGRAMTOP
MZMYPROGRAMDATA
SAPMZMYPROGRAMTOP

Question 20:
(More than one answer is correct)

A.
B.
C.
D.
E.

Lists
Selection Screen
Screens
Logical Database
Business Objects

Question 21:
a.
b.
c.
d.

Locally in a program using the data statement


Centrally in the repository
Centrally in the dictionary
Locally in the dictionary

Question 22:
a.
b.
c.
d.

When they are generated


When they are assigned to a transportable development class
When they are activated
When they are executed

Question 23:
(More than one answer is correct)

a. Append
b. Read
c. Delete
d. Update
Question 24:
a. Each word must end with a period
b. Statements must fit on one line
c. Comments begin with a single quotation sign

d. Multiple statements are not allowed in a single line


e. Words must always be separated by at least one space
Question 25:
a.
b.
c.
d.

WorkBench Organizer
Information System
Repository Browser
Customizing Organizer

Question 26:
a.
b.
c.
d.

Data Object
Report Statement
Data Type
Dictionary Type

Question 27:
a. When the object is deleted
b. When you release the task
c. When you change development class
Question 28:
(More than one answer is correct)

a.Type Checks
b. Complex Entries
c. Menu trees
d. Translation Utilities
e. Variants
Question 29:
(More than one answer is correct)

a.
b.
c.
d.

built in ABAP types


Interface Parameters
ABAP Dictionary object
Formal Parameters

Question 30:
a. 4
b. size must be specified
c. 1

d. 2
Question 31:

Perform calculate_sales using amount.


FORM calculate_sales changing value(f_amount)
(More than one answer is correct)

a. Formal parameter is not copied to memory space of actual


parameter
b. The address of the actual parameter is passed to the formal
parameter
c. Formal Parameter f_amount is allocated its own memory
space
d. Formal parameter is copied to memory space of actual
parameter at the end of the form
Question 32:
a. Forms are less flexible and are guaranteed no chance of a run
time error
b. Conversion always occurs
c. Forms are more flexible but prone to a short dump if
conversion does not work
d. No effect
e. Conversion never occurs
Question 33:
(More than one answer is correct)

a. It is attached to profiles
b. Defines permissable values for each authorization field listed
in the authorization object
c. An authorization is defined in the program attributes

Question 34:

Data wa_ztable type ztable.


Select-options so_myfield for wa_ztable-fielda.

Select * from ztable into wa_ztable


where fielda in so_myfield .
Endselect.

a. No records
b. All of the records
c. One record
Question 35:
a.
b.
c.
d.

Like
Type
Default
Value

Question 36:
(More than one answer is correct)

a.
b.
c.
d.
e.

Can be a method of an object


It is an Object
It is impemented as a function
Can only be use inside SAP
It is an interface

Question 37:
a.
b.
c.
d.

Information System
Customizing Organizer
WorkBench Organizer
Repository Browser

Question 38:
(More than one answer is correct)

a.
b.
c.
d.
e.

Object oriented Programming


Reuseability
Smaller and simpler Programs
Stored calculated values on the presentation server
Increased Database Load

Question 39:
a. CL_GUI_CONTAINER_ALV
b. CL_GUI_CUSTOM _CONTAINER
c. CL_GUI_ALVGRID_CONTAINER

Question 40:

Call Function 'MYFUNCTION'


exporting
e1 = p1
importing
i1 = p2

a.
b.
c.
d.

Program continues
Program is suspended
Message occurs
Runtime error

Question 41:
a.

Loop at itab where id = A.Endloop.

b.

Loop at itab.Endtab.
Loop where itab-id = A.Endloop.

c.

d.

Loop at itab where itab-id = A.Endloop

Question 42:
a.
b.
c.
d.

in the USER01 table


In the users own data
In the auth table
In the user master record

Question 43:
(More than
a.
b.
c.
d.
e.

one answer is correct)


I
N
O
X
P

Question 44:
(More than one answer is correct)
a. Registering developers
b. Registering changes to SAP objects

c.

Registering customer objects for local development

Question 45:

Data: fielda(4) type c.


fielda = AAAA.
Call Function Z_TEST_FUNCTION
Exporting f_fielda = fielda.
Write fielda. Function Z_TEST_FUNCTION
Importing f_fielda
Exporting f_fieldb
f_fielda = BBBB.
f_fieldb = CCCC
a.

CCCC

b.

BBBB
AAAA

c.

Question 46:
a.
b.
c.
d.

Hashed
Keyed
Indexed
Sorted

Question 47:
a.
b.
c.

The Authority-check object must be in your profile


If you do not want to carry out a check for a field, it must contain the value "DUMMY"
Fields of the Authority-check are optional

Question 48:
a.
b.
c.
d.

Program abend
Breaks the sort sequence
Syntax error
Uses linear search rather than binary

Question 49:
(More than one answer is correct)

a.
b.
c.
d.
e.

Application
Program Name
Type
Title
Status

Question 50:
(More than one answer is correct)
a. ???

Question 51:
(More than one answer is correct)
a. only the current program

b.
c.
d.

named programs
locally
only called programs

Question 52:

DATA: result TYPE p DECIMALS 2.


Result = '3000.00' * '0.30'.

a.
b.
c.
d.

result = 900.0000
result = 900.00
result = 9000000
result = 90000.00

Question 53:

Types: begin of rec_type,


flag
type c,
count(3) type c,
today
type d,
end of rec_type.
Data: input_record type rec_type.

a. 4 bytes
b. 5 bytes
c. 0 bytes
d. 12 bytes

Question 54:
a.
b.
c.
d.

Prior to Initialization event


After Initialization event
Before the Report Statement
At Start-of-Selection event

Question 55:
a.
b.

Exceptions Parameter 'RETURN'

d.

Dictionary Structure BAPIRET2

c.

Export Parameter 'sy-subrc'


Export Parameter 'RETURN'

Question 56:
Types: begin of itab_structure,
Field1 type p,
Field2 type c,
Field3 type I,
Field4 type n,
end of itab_structure.
Data: itab type table of itab_structure.
Sort itab.

a.
b.

c.
d.

Field2, Field4
Field1
Field1, Field3
Field2

Question 57:
(More than one answer is correct)

a.
b.
c.

d.

It stores development objects


Objects created using the IMG are stored in the repository
Objects in the repository can be viewed across clients
It stores client-specific objects

1. D
2. C
3. D
4. B
5. DE
6. C
7. A
8. B
9. B
10. C
11. B
12. A
13. C
14. ABD
15. D
16. C
17. A
18. B
19. E
20. ABC
21. C
22. B
23. AC
24. E
25. A
26. C
27. B
28. ABC
29. AC
30. A
31. CD
32. C
33. AB
34. B
35. D
36. ACE
37. C
38. BC
39. C
40. D
41. D
42. A
43. D
44. BDE
45. AB
46. BC
47. B
48. B
49. C
50. CD
51. CD

52. BC
53. B
54. D
55. B
56. C
57. A
58. AC

Vous aimerez peut-être aussi