You are on page 1of 50

Topic Subtopic Question Option 1

SAP-ABAP-NEW DDIC Find the odd man out .


Each session has its own
ABAP MEMORY area.
SAP-ABAP-NEW DDIC Find the wrong statements
A structure be included in a
structure .
SAP-ABAP-NEW DDIC
If the type specification is
missing, the field is of type Integer
SAP-ABAP-NEW DDIC
Which of the of the following
search help has highest
precedence (choose
appropriate option with
respect to screen field) Search help from screen
SAP-ABAP-NEW DDIC
Select the mathematical
function(s) supported by
ABAP/4. LOG
SAP-ABAP-NEW DDIC
State True/False: Structures
like tables must have a
primary key field assigned. True.
SAP-ABAP-NEW DDIC
The conversion exit of a
data variable is attached to Data element
SAP-ABAP-NEW DDIC The table T000 contains client data
SAP-ABAP-NEW DDIC
The transaction code for
SQL trace is, DB05
SAP-ABAP-NEW DDIC
The transaction code to
view a data model is SE12
SAP-ABAP-NEW DDIC
Transaction codes are
stored in which table ? TCODE
SAP-ABAP-NEW DDIC Transaction variants are -
Same as selection screen
variant
SAP-ABAP-NEW DDIC
What are the different types
of data we store in SAP
System ? Master data
SAP-ABAP-NEW DDIC
Which of the statement(s)
is/are correct? A) A domain
can be assigned to several
data elements B) A data
element can point to only
one domain C) A data
element can be assigned to
many domains and a
domain can be assigned to
many data elements.
Choose appropriate option. A
SAP-ABAP-NEW DDIC
Which of below given
statements are correct ?
Primary index is based on
primary key fields of the
table .
SAP-ABAP-NEW DDIC
Which of the following
cannot be created via the
ABAP dictionary( se11 ) ? Search helps
SAP-ABAP-NEW DDIC
Which of the following is an
invalid data dictionary type? CHAR
SAP-ABAP-NEW DDIC
Which one of the following is
client dependent? Tables
SAP-ABAP-NEW DDIC
Which statement is used for
checking Authorization for a
particular object. Authority-check.
SAP-ABAP-NEW Reports
ABAP is
_____________________
generation programming
language. First
SAP-ABAP-NEW Reports
An ABAP report is selecting
data from MARA and storing
it in table GT_MARA.
GT_MARA is being READ
with key MATNR in the loop
of another internal table.
The best performance of the
READ statement can be
achieved by declaring
GT_MARA as a : Standard Table
SAP-ABAP-NEW Reports
AT SELECTION-SCREEN
event is triggered after
INITIALIZATION event Yes
SAP-ABAP-NEW Reports EXIT statement, Exits the current loop.
SAP-ABAP-NEW Reports
HIDE command in report is
used to:
Retain content of field with
output line
SAP-ABAP-NEW Reports
How can you suppress the
default title of a list? No standard page heading
SAP-ABAP-NEW Reports
How do you define the
selection screen of a
program?
Interface between program
and user
SAP-ABAP-NEW Reports
How do you fetch data from
another client with a SQL
statement
Its not possible to read data
from another client
SAP-ABAP-NEW Reports
In debugging if you want to
test a transaction you enter
_________________ in
command field. /a
SAP-ABAP-NEW Reports
In SAP R/3 which one of
these allocates the
resources in application
layer. Work processor
SAP-ABAP-NEW Reports
Join select statements
cannot be written on a
___table Transparent table
SAP-ABAP-NEW Reports Lock objects are actually Type of a table
SAP-ABAP-NEW Reports
Native SQL can be written in
SAP environment in ABAP
by using EXEC-ENDEXEC.
SAP-ABAP-NEW Reports
PARAMETERS <p> ......
LOWER CASE ...... Causes
the parameter P(which is a
character field of length 4) to
be input in: Lower case
SAP-ABAP-NEW Reports
Programs are __________.
Complete the above
sentence. Client dependent.
SAP-ABAP-NEW Reports
RANGES : R_MATNR FOR
MARA-MATNR would
create a
an internal table with four
fields sign,option,low, high
SAP-ABAP-NEW Reports
SKIP generates by default
_______________ blank
line(s) for each page.
Complete the above
sentence. One
SAP-ABAP-NEW Reports
System fields are stored in
which database structure? SYST
SAP-ABAP-NEW Reports
The default mode in which a
dataset is opened is Input.
SAP-ABAP-NEW Reports
The first event triggered in a
program is Initialization
SAP-ABAP-NEW Reports
The function module
RS_SET_SELSCREEN_ST
ATUS is used for
Choosing the selection
screen to be displayed
SAP-ABAP-NEW Reports
The page header in a
secondary list is printed in
the event: top-of-list
SAP-ABAP-NEW Reports
The parameters are always
are passed by value in : RFC
SAP-ABAP-NEW Reports The relational operator <> is less than
SAP-ABAP-NEW Reports
The search help of a
selection screen field can be
decided upon by the clause: MATCHCODE OBJECT .
SAP-ABAP-NEW Reports
The STOP statement in a
program would take
program control: out of the program
SAP-ABAP-NEW Reports
The transaction code to
view a short dump is SM12
SAP-ABAP-NEW Reports
The transaction code to
view the output list created
by a background job would
be _____. Complete the
above sentence. SP01
SAP-ABAP-NEW Reports
The value 03 in the ACTVT
field of an authority check
statement would authorise
the user to ___ the data
object Delete
SAP-ABAP-NEW Reports
There is an internal table
with fields A,B,C in that
sequence. The statement
AT NEW B would be
triggered on Change in A
SAP-ABAP-NEW Reports
Time as per the user`s time
zone is stored in the system
variable : sy-uzeit
SAP-ABAP-NEW Reports
What does AT SELECTION-
SCREEN do? Selection screen validation
SAP-ABAP-NEW Reports
What is the main use of the
FOR ALL ENTRIES clause?
It helps avoid, writing select
clauses within a loop.
SAP-ABAP-NEW Reports
What is the most important
precaution one should take
for using the for all
entriescommand ?
Select all the key field of the
database table.
SAP-ABAP-NEW Reports
What is the name of the
system variable that is
assigned value for loop pass
within a DO-ENDDO loop/ sy-tabix.
SAP-ABAP-NEW Reports
What is the name of the
system variable that stores
content of the entire line
where a double click has
occurred? SY-LINNO.
SAP-ABAP-NEW Reports
What is the use of the
CATCH-ENDCATCH
command in ABAP/4? Handling the run time errors.
SAP-ABAP-NEW Reports
What is true about extract
data sets / field groups.
They store data in
compressed form.
SAP-ABAP-NEW Reports
What will happen if an
internal table
I_EKKO having
records in it is processed by
following logic: Loop at
I_EKKO. I_EKKO-EBELN =
ACCENTURE.
Append I_EKKO. Endloop.
One extra record is inserted
into internal table.
SAP-ABAP-NEW Reports
When does the event AT
LINE SELECTION
occur?
When function code
PICK is triggered
SAP-ABAP-NEW Reports
Which addition in the
PARAMETERS statement
allows you to place default
values on the selection
screen? Value
SAP-ABAP-NEW Reports
Which amongst the
following events is/are
associated with logical
databases? LDB_SELECT_ALL.
SAP-ABAP-NEW Reports
Which instruction is used to
move the contents of an
internal table to a file on the
applcation server GUI_UPLOAD
SAP-ABAP-NEW Reports
Which is the only type of
message that appears on
the next screen after it is
issued? Warning
SAP-ABAP-NEW Reports
Which of the below will
trigger TOP-OF-PAGE
event. MOVE
SAP-ABAP-NEW Reports
Which of the following
events are trigerred before
the selection screen is
displayed Initialization
SAP-ABAP-NEW Reports
Which of the following
instructions is used to read
the contents of a file on the
presentation server to an
internal table? GUI_UPLOAD
SAP-ABAP-NEW Reports
Which of the following
statement is more correct
than the othersin context to
APPEND & COLLECT
ABAP commands
APPEND always adds a
record to an internal table.
COLLECT may or may not
add record to an internal
table.
SAP-ABAP-NEW Reports
Which of these is not a valid
event in
loopendloop.Where f is a
field in internal table. At new f
SAP-ABAP-NEW Reports
Which system field stores
the logon user`s name? SY-UNAME
SAP-ABAP-NEW Reports
Which system field
generates current date? SY-DATUM
SAP-ABAP-NEW Reports
Which system field stores
the system time? SY-DATUM
SAP-ABAP-NEW Reports You can read internal tables, Only sequentially.
SAP-ABAP-NEW
ABAP
Program
ming ABAP Processor located in Dispatcher
SAP-ABAP-NEW
ABAP
Program
ming Data types are? Pure descriptions
SAP-ABAP-NEW
ABAP
Program
ming Default data type in ABAP? String
SAP-ABAP-NEW
ABAP
Program
ming
Function group global
definitions can consist of? Screens
SAP-ABAP-NEW
ABAP
Program
ming
Function module that has to
be called to process the text
element of a window? START_FORM
SAP-ABAP-NEW
ABAP
Program
ming
In BDCDATA structure
Screen start can be set
using? FNAM
SAP-ABAP-NEW
ABAP
Program
ming
In which parameter passing
technique no memory is
allocated for actual
parameters for a
subroutine? Pass by reference
SAP-ABAP-NEW
ABAP
Program
ming
Input values for selection
screen can be stored as a? Text symbol
SAP-ABAP-NEW
ABAP
Program
ming
New fields can be added to
Standard SAP tables using? Include structure
SAP-ABAP-NEW
ABAP
Program
ming Package can be created in? SE11
SAP-ABAP-NEW
ABAP
Program
ming
Parameter statement does
not allow the data type? I
SAP-ABAP-NEW
ABAP
Program
ming R/3 Stands for Real time / 3 server
SAP-ABAP-NEW
ABAP
Program
ming
SAP Application are
developed using ABAP
SAP-ABAP-NEW
ABAP
Program
ming
Tcode for SAP Script
Standard texts? SE71
SAP-ABAP-NEW
ABAP
Program
ming
Tcode for Transport
workbench? SE01
SAP-ABAP-NEW
ABAP
Program
ming
Technical attributes of a
field are stored in? Domain
SAP-ABAP-NEW
ABAP
Program
ming
Text table must have the
following data type in one of
the key fields? LANG
SAP-ABAP-NEW
ABAP
Program
ming
The definition of foreign key
must exist between tables
while creating? Database view
SAP-ABAP-NEW
ABAP
Program
ming
To find all the Views created
based on a Table we can
use? Data browser
SAP-ABAP-NEW
ABAP
Program
ming
Using WRITE statement we
cannot display? ICON
SAP-ABAP-NEW
ABAP
Program
ming
Where do you enter
transaction code? (*****) Menubar
SAP-ABAP-NEW
ABAP
Program
ming
Which addition in the
PARAMETERS statement
allows you to place default
values on the selection
screen? Value
SAP-ABAP-NEW
ABAP
Program
ming
Which interface setting of
the search help will
determine the field
sequence in Hit list? SPOS
SAP-ABAP-NEW
ABAP
Program
ming
Which is not a Numeric data
type in DDIC INT4
SAP-ABAP-NEW
ABAP
Program
ming
Which of the following is not
a data object? Field string
SAP-ABAP-NEW
ABAP
Program
ming
Which of the following is not
a Text element? Title
SAP-ABAP-NEW
ABAP
Program
ming
Which of the following is not
an input field? Radiobutton
SAP-ABAP-NEW
ABAP
Program
ming
Which of the input help will
be given high priority? Value range at domain
SAP-ABAP-NEW
ABAP
Program
ming
Which processor controls
the flow logic of an online
program? Dispatcher
SAP-ABAP-NEW
ABAP
Program
ming
Which statements will
create data objects? DATA
SAP-ABAP-NEW
ABAP
Program
ming
Which tables allows to
create secondary indexes Pooled
SAP-ABAP-NEW
ABAP
Program
ming
Which type of view can only
refer to single table? Database view
SAP-ABAP-NEW
ABAP
Program
ming
How can you call a report
from another Report ? Submit statement
SAP-ABAP-NEW
ABAP
Program
ming
How to terminate
Subroutines and Functions
? CHECK
SAP-ABAP-NEW
ABAP
Program
ming
Internal Tables are always
passed by ____________ . Value
SAP-ABAP-NEW
ABAP
Program
ming
Select-options are stored in
a internal table. What are
the fields of that internal
table ? Sign
SAP-ABAP-NEW
ABAP
Program
ming
STOP command will trigger
? Start-0f-Selection
SAP-ABAP-NEW
ABAP
Program
ming
Suppose You use a Custom
developed Function Module
A in a program Ztest and the
Function Module A used
does not exists in SAP
system. Than will the
program ZTEST give any
activation Error ? TRUE
SAP-ABAP-NEW
ABAP
Program
ming
What are the ways of
passing parameters ? By Value
SAP-ABAP-NEW
ABAP
Program
ming
What will be the output of
following code: DO 5
TIMES. Hide sy-index. Write
sy-index . ENDDO. 12345
SAP-ABAP-NEW
ABAP
Program
ming
What is the functionality of
following command : Leave
Program
It will not stop the execution
of Program.
SAP-ABAP-NEW
ABAP
Program
ming
Which of the statements are
correct for Function Modules
and Subroutines ?
Function modules have
Global Modularization
whereas subroutines have
Local Modularization.
SAP-ABAP-NEW
ABAP
Program
ming
Why are Text elements
used ?
To avoid hardcoding of
strings in Programs .
SAP-ABAP-NEW
ABAP
Program
ming
Write output of folowing
Program. Initialization .
Write / `A` . Start-0f-
Selection. Write / `B` . Top-
of-Page . Write / `C` . CAB
SAP-ABAP-NEW
Dialog
Program
ming
Current Screen Number is
stored in which System Field
. Sy-cuscr
SAP-ABAP-NEW
Dialog
Program
ming
What are the events in Flow
Logic. PBO
SAP-ABAP-NEW
Dialog
Program
ming
What is the functionality of
following command :
TRANSPORTING f1 f2 ...
If the system finds an entry,
it does not transfer all of the
subfields (default) into the
work area, but only the
specified fields f1 f2 ...; the
other subfields remain
unchanged.
SAP-ABAP-NEW
Dialog
Program
ming
Which of the following
statements are false ?
Subscreens are always
embedded into some other
screen, it can not be called
independently .
SAP-ABAP-NEW Interfaces
Most important part of any
interface design is: Field Mapping
SAP-ABAP-NEW
Lock
Objects
When Lock Objects are
activated, system generates
two Function Modules.
Name Them.
ENQUEUE_name_of_lock_
object
SAP-ABAP-NEW
Module
Pool
CHAIN & END-CHAIN
statements are used for:
Validation of a group of
fields
SAP-ABAP-NEW
Module
Pool
In the flow logic, what must
you code in both PBO and
PAI when you have a table
control in your screen? CHAIN, ENDCHAIN
SAP-ABAP-NEW
Module
Pool SE41 transaction code is Screen painter
SAP-ABAP-NEW
Module
Pool
The following statement is
invalid for the flow logic of a
dialog program FIELD
SAP-ABAP-NEW
Module
Pool
The system variable __
contains the number of rows
in a table control SY-INDEX
SAP-ABAP-NEW
Module
Pool
The transaction code for
creating transaction variants
is SHDB
SAP-ABAP-NEW
Module
Pool
Which one of the following is
not a EXIT COMMAND? STOP
SAP-ABAP-NEW
ObjectOri
ented
ABAP
The transaction code for
building a global class
definition is SE24
SAP-ABAP-NEW
Smartfor
ms
While dealing with
Images/Logo in SAPScripts,
__________ program is
used. Complete the above
sentecne. RSTXICON
SAP-ABAP-NEW
Smartfor
ms
Superscripts and Subscripts
are maintained for Pages
SAP-ABAP-NEW
Smartfor
ms
Table for finding the
Program name relevant to
the Layout set or vice-versa TTDTG
SAP-ABAP-NEW
Smartfor
ms
The Type and size of the
output paper is set at In the driver program
SAP-ABAP-NEW
Smartfor
ms
Transaction code for Layout
set design SE38
SAP-ABAP-NEW
Smartfor
ms What is SAP Script? To Print Forms
SAP-ABAP-NEW
SAPSCRI
PTS
For calling External program
from SAP Script, what
should be the parameter
structure type? ITCSY
SAP-ABAP-NEW
SAPSCRI
PTS
State True/False: A form
can have only one main
window between different
pages. TRUE
SAP-ABAP-NEW
SAPSCRI
PTS
The form WRITE_FORM( )
needs to be called explicitly
for anonymous text
elements. TRUE
SAP-ABAP-NEW
SAPSCRI
PTS
The program to
export/import a SAP script
to/from a local file is RSTXR3TR
SAP-ABAP-NEW
SAPSCRI
PTS
To print set of lines on same
page ,Which command
should be used? SAME PAGE
SAP-ABAP-NEW
SAPSCRI
PTS
To print a variable in
barcode format on the
sapscript, the barcode has
to be specified in Paragraph format
SAP-ABAP-NEW
SAPSCRI
PTS
What is the transaction code
for creating/editing the
layout set of a sapscript? SE51
SAP-ABAP-NEW
SAPSCRI
PTS
What is the transaction code
for output type
configuration? SE71
Option 2 Option 3 Option 4 Option 5
ABAP memory is used to
exchange data between
programs running in
different sessions in the
same R/3 system .
ABAP memory is used to
exchange data between
programs running in
different sessions in the
different R/3 system .
SAP Memory is used to
pass the data to and receive
data from Screen Fields.
A table can be included in a
structure and a Structure in
a table
A field of a strucure can be
made as a foreign key
Packed Character Numeric
Search help from field Check table help Data element
MOD EXP ANTILOG TAN
False.
Domain Table field definition
Progam in which the
variable is used
plant data company codes logical systems
SM30 ST05 SM37
SE11 SD11 DM03
TSTC TCTS SYST
Same as display variant in
ALV
For customizing the
transactions
It is a sub module of SAP FI-
GL
Transaction data Customizing data System data All of the above.
B C A and B A,B and C
secondry index is created on
non primary fields of a table
. Both 1 and 2 None
views table types lock objects domains
INT1 DEC LANG QUAN
Domains Reports Layout Forms
Authority_check_dataset
System will automatically
check. None.
Second Third Fourth
None of the
above.
Sorted table hashed table Any table
No
Exits all the loops in case of
nested loop. Terminates the program.
Terminates the current loop
pass and starts the next
loop pass.
Hide screen display Hide toolbar from screen Hide selection screen
Standard page heading New-Page At-New
It is a list It is created by user None
Use the clause
DESTINATION in the select
statement
Set sy-mandt to the required
client number before the
select
Use the clause CLIENT
SPECIFIED in the select
stmt
/d /h /tr /z
Dynpro-Manager Dispatcher Roll Area.
Check table Value table Cluster table
Function module Deleted objects Can not be edited
EXE-ENDEXE. COLL-ENDCOLL AXAC-ENDAXAC
Upper case
Retains case entered by the
user
Converts user input to lower
case
Client independent Both 1 and 2 None of the Above
select option in the program
for material number
data variable of type mara-
matnr
internal table with a single
field of type mara-matnr
Two Nine Ten
SYSTEM APQI APQD
Output. Appending.
At selection screen Top of page Top of List
Making the selection fields
mandatory
Making the selection fields
display only
Changing the standard GUI
status of the selection
screen
top-of-list during line-
selection start-of-page
top-of-page during line
selection
Normal function call Subroutine call
Function module in update
task
less than or equal to equal to not equal to
SEARCH HELP INPUT HELP F4_HELP
out of the current processing
block out of the current loop to the end-of selection event
ST01 ST22 SE80
SM01 SM13 BD57
Change Create Display
Change in B Change in A or B Change in A and B
sy-timlo sy-datlo
Only the system time is
stored
To create detail list
To fetch data from database
table None of the above
It helps in reducing the
usage of number of internal
tables.
It helps in picking item level
data for available header
level data. None of the above.
The where clause should
contain all the key fields.
Before the select, check if
the internal table used in
for all entriesclause
is not empty. None of the above.
Sy-index. Sy-lsind. Sy-dbcnt. Sy-tfill.
SY-LILLI. SY-LISEL. SY-CUROW. SY-CUCOL.
Messaging error messages.
Defining the exceptions in
function modules.
Creating the exceptions in
function modules.
ABAP debugger cannot
debug a field group entire
structure.
Field Groups are able to sort
bulky data very fast as
compared to an internal
table. All of the above.
It will not go into Loop
statement.
Loop will never end as it is
an endless loop. None.
When function code
ADD is triggered. Does not occur
During processing of
selection screen
Default Values None
GET. GET LATE. B and C. All of the above.
GUI_DOWNLOAD READ DATASET OPEN DATASET TRANSFER
Abort Success. Error. Information
SKIP. LOOP-ENDLOOP. WRITE Both b and d.
At selection screen output At selection screen Start of selection End of selection
GUI_DOWNLOAD READ DATASET OPEN DATASET TRANSFER
APPEND adds a record to
an internal table. COLLECT
does not add a record.
APPEND adds a record to
an internal table. COLLECT
adds a record to an internal
table.
At end of f At first At end
SY-UZEIT SY-LSIND SY-MANDT
SY-UZEIT SY-DATE SY-CDATE
SY-TIME SY-UZEIT SY-OPS
Only direct.
both sequentially as well as
direct. None of the above.
Message server Gateway Work process
No memory is associated
with them
Desribe the technical
properties of Data Objects All of the above.
C N I
Internal tables Workareas All of the above.
WRITE_FORM CONTROL_FORM OPEN_FORM
FVAL DYNPRO DYNBEGIN
Pass by value Pass by value and return All of the above.
Text element Variant Attribute
Append Structure BOTH 1 & 2 None of the above
SE38 SE16 SE80
P F C
Real Time / 3 Tier Response / 3 tier Resource / 3 tier
Cobol C,C++ All of the above.
SE72 SE74 SO10
SE09 SE80 SE84
Data Element Check table Value Table
CHAR CLNT LCHR
Projection view Help view Maintenance view
Repository infornation
system Where Used List Object Navigator
Symbol Check box Radiobutton
Command field ABAP editor None of the above
Default Initial None of the above
LPOS Import Export
DEC CURR NUMC
Constant Internal table Field symbol
List heading Text symbol Selection text
Checkbox Listbox Pushbutton
Check table assignment Search help at data element Search help at Table field
ABAP Processor Compiler Dynpro Processor.
Constants Parameters All of the above.
Clustered Transparent All of the above.
Maintenance view Projection view Help view
CALL statement Leave To report statement Leave statement .
RAISE EXCEPTION BOTH 1 & 2 None of the above
Reference Value and Result
options Low High All of the Above
End-of-Selection Initialization Top-of-Page End-of-Page
FALSE
By Reference Pass by Value and result All of the above.
1234 23456 2345
It will stop the execution of
Program. It will give error message.
It will leave to another
program .
Function modules are
Testing Independent
whereas subroutines are
Testing Dependent .
Function modules have
Exception Handling whereas
subroutines have No
Exception Handling.
Function modules can be
Remote whereas
Subroutines cant be Remote All of the above
To make program reusable .
To make Program
Language dependent .
To make Program
Language independent .
ABC CBA BCA
Sy-Dynnr Sy-lincd Sy-nums
PAI POH POV All of the Above
If the system finds an entry,
it transfer all of the subfields
into the work area, but only
the specified fields f1 f2 ..
remain unchanged.
If the system finds an entry,
it transfer all of the subfields
into the work area.
If the system finds an entry,
it does not transfer all of the
subfields (default) into the
work area, but only the
specified fields f1 f2 ...; the
other subfields are
unchanged.
Can call more than one
subscreen in a particular
screen .
Can call subscreen into a
subscreen
Subscreen does not have its
own GUI status .
None of the
above.
Field Sequence
Network settings on
interfacing systems. File system
DEQUEUE_name_of_lock_
object
ENLOCK_name_of_lock_ob
ject
DELOCK_name_of_lock_ob
ject
Validation of a field Making a field sequence Making a logic chain
AT EXIT-COMMAND LOOP, ENDLOOP SET PF-STATUS
ABAP editor Menu painter Function builder
LOOP IF MODULE
SY-LOOPC SY-TABIX SY-LSIND
SHD0 SE51 OVNN
EXIT BACK CANCEL
SE23 SE91 SH01
RSTXSCRP RSTXLDMC None of the above
Character Formats Paragraph Formats None of the above
TTGRT TTPLA TNAPR
Header Cannot be set During printing
SE70 SE72 SE71
Tool to create Transaction
code
Tool to create BDC
programs None of the above
ITDATA SYST BDCMSGCALL
FALSE
FALSE
SAPMSSY0 SAPMSE71 RSTXDBUG
ADDRESSENDADDRES
S
PROTECTEND
PROTECT SELECTENDSELECT
Character format Window Page window
SE71 SE41 SE93
SHD0 NACE SHDB NAST
Option 6 Correct Answer Complexity Fixed Sequence Marks Time Contributor
3 Medium No 1 1.5 Shireesh.Mitragotri
3 Simple No 1 0.5 Shireesh.Mitragotri
3 Simple No 1 0.5 Shireesh.Mitragotri
1 Complex No 1 2 Shireesh.Mitragotri
1 Simple No 1 0.5 Shireesh.Mitragotri
2 Simple Yes 1 0.5 Shireesh.Mitragotri
2 Simple No 1 0.5 Shireesh.Mitragotri
1 Simple No 1 0.5 Shireesh.Mitragotri
3 Simple No 1 0.5 Shireesh.Mitragotri
3 Complex No 1 2 Shireesh.Mitragotri
2 Simple No 1 0.5 Shireesh.Mitragotri
3 Simple No 1 0.5 Shireesh.Mitragotri
Only 1 & 2 5 Complex Yes 1 2 Shireesh.Mitragotri
4 Complex Yes 1 2 Shireesh.Mitragotri
3 Complex Yes 1 2 Shireesh.Mitragotri
function pools 6 Complex No 1 2 Shireesh.Mitragotri
HEX 6 Complex No 1 2 Shireesh.Mitragotri
4 Complex No 1 2 Shireesh.Mitragotri
1 Simple Yes 1 0.5 Shireesh.Mitragotri
4 Simple Yes 1 0.5 Shireesh.Mitragotri
3 Complex No 1 2 Shireesh.Mitragotri
1 Simple No 1 0.5 Shireesh.Mitragotri
1 Medium No 1 1.5 Shireesh.Mitragotri
1 Medium No 1 1.5 Shireesh.Mitragotri
1 Simple No 1 0.5 Shireesh.Mitragotri
1 Simple Yes 1 0.5 Shireesh.Mitragotri
4 Complex No 1 2 Shireesh.Mitragotri
3 Simple No 1 0.5 Shireesh.Mitragotri
3 Simple No 1 0.5 Shireesh.Mitragotri
4 Complex No 1 2 Shireesh.Mitragotri
2 Complex No 1 2 Shireesh.Mitragotri
1 Complex No 1 2 Shireesh.Mitragotri
3 Complex No 1 2 Shireesh.Mitragotri
2 Simple Yes 1 0.5 Shireesh.Mitragotri
1 Complex No 1 2 Shireesh.Mitragotri
1 Simple No 1 0.5 Shireesh.Mitragotri
1 Simple No 1 0.5 Shireesh.Mitragotri
1 Complex No 1 2 Shireesh.Mitragotri
1 Simple No 1 0.5 Shireesh.Mitragotri
4 Complex No 1 2 Shireesh.Mitragotri
3 Medium No 1 1.5 Shireesh.Mitragotri
1 Complex No 1 2 Shireesh.Mitragotri
4 Simple No 1 0.5 Shireesh.Mitragotri
1 Medium No 1 1.5 Shireesh.Mitragotri
4 Medium No 1 1.5 Shireesh.Mitragotri
3 Simple No 1 0.5 Shireesh.Mitragotri
1 Medium No 1 1.5 Shireesh.Mitragotri
4 Complex No 1 2 Shireesh.Mitragotri
3 Complex No 1 2 Shireesh.Mitragotri
2 Medium No 1 1.5 Shireesh.Mitragotri
1 Simple Yes 1 0.5 Shireesh.Mitragotri
1 Simple Yes 1 0.5 Shireesh.Mitragotri
3 Medium Yes 1 1.5 Shireesh.Mitragotri
2 Simple No 1 0.5 Shireesh.Mitragotri
3 Medium No 1 1.5 Shireesh.Mitragotri
1 Medium No 1 1.5 Shireesh.Mitragotri
4 Medium Yes 1 1.5 Shireesh.Mitragotri
3 Medium Yes 1 1.5 Shireesh.Mitragotri
1 Medium No 1 1.5 Shireesh.Mitragotri
2 Simple Yes 1 0.5 Shireesh.Mitragotri
4 Medium Yes 1 1.5 Shireesh.Mitragotri
5 Medium No 1 1.5 Shireesh.Mitragotri
3 Medium No 1 1.5 Shireesh.Mitragotri
5 Medium Yes 1 1.5 Shireesh.Mitragotri
1 Complex No 1 2 Shireesh.Mitragotri
1 Medium No 1 1.5 Shireesh.Mitragotri
1 Medium No 1 1.5 Shireesh.Mitragotri
4 Medium No 1 1.5 Shireesh.Mitragotri
1 Simple No 1 0.5 Shireesh.Mitragotri
1 Simple No 1 0.5 Shireesh.Mitragotri
3 Simple No 1 0.5 Shireesh.Mitragotri
3 Simple Yes 1 0.5 Shireesh.Mitragotri
4 Medium No 1 1.5 Shireesh.Mitragotri
4 Medium Yes 1 1.5 Shireesh.Mitragotri
2 Medium No 1 1.5 Shireesh.Mitragotri
4 Complex Yes 1 2 Shireesh.Mitragotri
2 Simple No 1 0.5 Shireesh.Mitragotri
4 Simple No 1 0.5 Shireesh.Mitragotri
1 Medium Yes 1 1.5 Shireesh.Mitragotri
3 Medium No 1 1.5 Shireesh.Mitragotri
2 Simple Yes 1 0.5 Shireesh.Mitragotri
4 Medium No 1 1.5 Shireesh.Mitragotri
3 Simple No 1 0.5 Shireesh.Mitragotri
2 Medium No 1 1.5 Shireesh.Mitragotri
1 Medium Yes 1 1.5 Shireesh.Mitragotri
4 Simple No 1 0.5 Shireesh.Mitragotri
2 Simple No 1 0.5 Shireesh.Mitragotri
1 Simple No 1 0.5 Shireesh.Mitragotri
1 Simple No 1 0.5 Shireesh.Mitragotri
4 Complex No 1 2 Shireesh.Mitragotri
3 Simple No 1 0.5 Shireesh.Mitragotri
4 Simple No 1 0.5 Shireesh.Mitragotri
2 Simple Yes 1 0.5 Shireesh.Mitragotri
2 Simple Yes 1 0.5 Shireesh.Mitragotri
2 Complex No 1 2 Shireesh.Mitragotri
4 Complex No 1 2 Shireesh.Mitragotri
4 Complex No 1 2 Shireesh.Mitragotri
1 Simple No 1 0.5 Shireesh.Mitragotri
4 Simple No 1 0.5 Shireesh.Mitragotri
4 Complex No 1 2 Shireesh.Mitragotri
4 Complex No 1 2 Shireesh.Mitragotri
4 Medium Yes 1 1.5 Shireesh.Mitragotri
3 Medium Yes 1 1.5 Shireesh.Mitragotri
3 Complex No 1 2 Shireesh.Mitragotri
1 Medium No 1 1.5 Shireesh.Mitragotri
3 Medium Yes 1 1.5 Shireesh.Mitragotri
2 Medium No 1 1.5 Shireesh.Mitragotri
None of the
above. 5 Medium Yes 1 1.5 Shireesh.Mitragotri
2 Simple No 1 0.5 Shireesh.Mitragotri
2 Medium Yes 1 1.5 Shireesh.Mitragotri
4 Medium Yes 1 1.5 Shireesh.Mitragotri
1 Complex No 1 2 Shireesh.Mitragotri
2 Medium No 1 1.5 Shireesh.Mitragotri
5 Complex Yes 1 2 Shireesh.Mitragotri
4 Complex No 1 2 Shireesh.Mitragotri
1 Complex No 1 2 Shireesh.Mitragotri
2 Complex No 1 2 Shireesh.Mitragotri
5 Complex Yes 1 2 Shireesh.Mitragotri
1 Complex No 1 2 Shireesh.Mitragotri
5 Complex Yes 1 2 Shireesh.Mitragotri
1 Medium No 1 1.5 Shireesh.Mitragotri
1,2 Complex No 1 2 Shireesh.Mitragotri
1 Medium No 1 1.5 Shireesh.Mitragotri
3 Medium No 1 1.5 Shireesh.Mitragotri
3 Simple No 1 0.5 Shireesh.Mitragotri
3 Medium No 1 1.5 Shireesh.Mitragotri
2 Medium No 1 1.5 Shireesh.Mitragotri
2 Medium No 1 1.5 Shireesh.Mitragotri
1 Medium No 1 1.5 Shireesh.Mitragotri
1 Medium No 1 1.5 Shireesh.Mitragotri
3 Medium Yes 1 1.5 Shireesh.Mitragotri
2 Complex Yes 1 2 Shireesh.Mitragotri
4 Complex No 1 2 Shireesh.Mitragotri
2 Medium No 1 1.5 Shireesh.Mitragotri
4 Simple No 1 0.5 Shireesh.Mitragotri
1 Simple Yes 1 0.5 Shireesh.Mitragotri
1 Medium No 1 1.5 Shireesh.Mitragotri
1 Simple Yes 1 0.5 Shireesh.Mitragotri
2 Complex Yes 1 2 Shireesh.Mitragotri
1 Complex No 1 2 Shireesh.Mitragotri
3 Simple No 1 0.5 Shireesh.Mitragotri
2 Medium No 1 1.5 Shireesh.Mitragotri
2 Simple No 1 0.5 Shireesh.Mitragotri
3 Medium No 1 1.5 Shireesh.Mitragotri
Contributed Date Capability Reviewed Reviewer Name Reviewer Capability Reviewed Date
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:42
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:42
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:42
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:42
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:42
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:42
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:43
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:43
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:43
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:43
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:43
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:44
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:44
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:44
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:44
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:44
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:44
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:44
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:45
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:45
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:45
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:45
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:45
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:45
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:46
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:46
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:46
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:46
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:46
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:46
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:47
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:47
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:47
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:47
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:47
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:47
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:48
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:48
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:48
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:48
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:48
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:48
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:49
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:49
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:49
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:49
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:49
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:49
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:49
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:50
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:50
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:50
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:50
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:50
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:50
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:50
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:51
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:51
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:51
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:51
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:51
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:51
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:51
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:52
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:52
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:52
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:52
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:52
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:52
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:52
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:53
3/26/2007 20:17 SAP Yes k.chennakeshavaiah LOMA 3/26/2007 20:53
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:47
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:47
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:47
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:47
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:48
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:48
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:48
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:48
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:48
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:48
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:41
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:41
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:42
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:42
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:42
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:42
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:42
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:42
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:42
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:42
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:43
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:43
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:43
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:43
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:43
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:43
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:43
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:43
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:44
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:44
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:44
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:44
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:44
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:44
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:44
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:44
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:44
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:44
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:44
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:44
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:45
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:45
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:45
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:45
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:45
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:45
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:45
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:45
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:45
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:45
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:45
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:45
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:46
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:46
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:46
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:46
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:46
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:46
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:47
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:47
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:47
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:47
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:47
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:47
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:46
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:46
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:46
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:46
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:46
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:46
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:46
4/1/2007 13:40 SAP Yes k.chennakeshavaiah LOMA 4/1/2007 13:47
Times Used In Paper Answered Correctly
11 767
4 643
7 1028
9 724
7 105
9 1265
7 852
10 791
4 700
4 797
7 1246
6 543
5 695
11 1215
4 690
8 1390
2 482
8 1061
8 934
8 1096
8 590
4 869
8 965
4 623
8 1043
5 588
10 607
6 804
5 748
7 929
5 66
6 545
8 350
6 494
4 681
8 911
6 778
3 476
4 662
4 545
5 20
3 203
5 788
6 540
3 379
5 667
10 1091
4 698
5 111
4 526
2 586
5 504
3 615
5 834
7 1006
4 695
5 577
8 645
1 182
5 633
4 614
3 558
4 351
3 187
4 456
2 382
3 526
4 275
4 685
3 596
4 615
5 605
6 661
4 408
4 523
6 466
8 412
5 440
5 688
6 300
7 482
3 178
15 1127
5 246
7 504
10 833
6 287
7 240
4 321
6 295
5 104
6 332
3 378
6 440
7 834
10 668
5 351
3 249
8 730
8 559
6 350
8 890
8 487
6 330
8 398
5 283
9 611
5 467
4 335
8 151
6 568
10 865
3 173
5 223
8 186
12 734
7 405
8 916
6 262
5 46
10 849
8 609
3 144
3 165
11 524
7 553
5 124
3 322
4 304
8 865
6 435
9 696
6 234
9 798
8 776
9 886
8 351
9 324
5 79
7 332
6 519
6 413
6 407
8 603

You might also like