Taw10(Week 1)

35 Questions | Attempts: 269
Please wait...
Question 1 / 35
0 %
0/100
Score 0/100
1. All the repository objects created by developer and saved as local objects are saved in a special pacakge called ________.
Submit
Please wait...
About This Quiz
General Knowledge Quizzes & Trivia

This is a mock up exam covering week1 of the course. This test no way should be associated with the real exam, it just give you a feeler and gauge your current knowledge.
Passing this test no way guarantees that you will pass the actual exam you still need to... see moreread the books and study more till the exam

Best of Luck
SN
see less

2.
We’ll put your name on your report, certificate, and leaderboard.
2. To explicity refer to internal table body for the following code

data: it_scarr type standard table of scarr with header line.
If the above code has no error, you want to explicilty refer to the body of te internal table you can refer in this example as _________
Submit
3. Evaluate the following code snippet
Data: begin of str1,
              id type i, name(5) type c,  state(2) type c,
       end of str1.
Data: begin of str2,
              id(2) type c, country(3) type c, info(8) type c,
       end of str2.
str1-id = 100.
str1-name = 'SAPAG'.
str1-state = 'CA'.
str2 = str1.
write:/str2-info.
what will be oputput of the above code?
Submit
4. Semantic information is available to data object if the elementary type is defined as
Submit
5. Which component of Application server controls the traffic between work processes and presentation server ?( Only one answer correct)

Explanation

All the user requests go to the Dispatcher which is then routed to respective work processes

Submit
6. If you need to start a transaction VA01 in a new session which of the following commands you will give
Submit
7. User is not a client specific object, can be used to login at any clients in SAP system

Explanation

User data is client specific, user master record is mapped to a specific client in SAP system

Submit
8. Developer "A" is part of a Change Request where there are many other developers also assigned. When developer "A" finishes all his task , he will release his task, what happens when a developer releases his task
Submit
9. Evaluate the following code snippet Types: name(10) type c. Data: ename(10) type c,         cname type name,         sname type s_name. Assuming that there is no error in above code, from which type is sname data object created    
Submit
10. Data: dob type d.
The above data object can stores internally data in which format
Submit
11. All the development objects made by developer which is just saved in the repository can be transported?

Explanation

All the saved and activated objects can be transported

Submit
12. Which statement below will create/generate the selection screen in the executable program
Submit
13. You have subroutine "Calculate" to have a formal parameter p_res that is used to return a value. Which of the following definitions of "Calculate" would you ensure that the value is passed back to the calling program only if the processing of subroutine "Calculate" ends.
Submit
14. In a class CL_A you have methods m1(defined as static) and m2(defined as instance),if ou have creatd a object objA from CL_A which of the following is a valid statements    
Submit
15. Communication between two systems (SAP or third party) is handled by which services

Explanation

Message Server is for load balancing
RFC is the protocol for communication which works on Gateway Services
ICM is for all http requests only

Submit
16. Ideally if coded correctly which work process should take over the responsibility of any transactions to database like insert, update and delete
(only 1 correct answer)
Submit
17. Evaluate the follwing code Types: begin of str,           id type i,          name(10) type c,          salary type i,          tax   type p decimals 2,         net    type p decimal 2,        end of str. Data: it_str type standard table of str with non-unique key id. Data: wa_str type str. For the above declarations, will COLLECT statement work?    

Explanation

Collect statement will only work if the all the non key columns are numeric types.

Submit
18. Which of the following is valid for Internal tables
(More than 1 correct answer)
Submit
19. Project Manager created a change request and assigned developers to this change request. In such cases there will be a Task created, and for each developer a change request number generated.

Explanation

Change Request is created and for each developer a task created, the Change request and task number has a naming conventions knnnnn

Submit
20. If you need to have a modular resuable unit which can be called by all the programs, which of the following can be used
(more than 1 correct answer)
Submit
21. Which of the following are valid SAP GUI clients?
(more than 1 correct answer)
Submit
22. Which of the following statements are true about Text Symbols
(more than 1 correct answer)
Submit
23. Evaluate the following code snippet

Data: n1 type i value 10,
         n2 type i value 5.
         n3 type i value 0.

perform Calculate using n1 n2 changing n3.
write:/ n1, n2, n3.


Form Calculate using p_n1 value(p_n2) changing value(p_n3).
p_n1 = p_n1 + 10.
p_n2 = p_n2 + 5.
p_n3 = p_n1 + p_n2.
EndForm.


What would be result of the above code
Submit
24. If the following statement is given in your ABAP program refresh it_tab. Assuming it_tab is the internal table defined, which of the following statements are true (more than 1 correct answer)    
Submit
25. For the following scenario which internal table type should  be defined
"You need to fetch a set of rows from the database table and keep it in the internal table and keep on quering the internal table with key passed , fetch that row/s from the internal table and display to user"
Submit
26. Which of the following statements are true about NetWeaver AS? (more than 1 correct answer)    
Submit
27. Which of the following are valid interface of a function module
(More than 1 correct answer)
Submit
28. Which of the following task is the responsibility of the Database Interface(DBI)
(more than 1 correct answer)

Explanation

native sql syntax check is done by DB vendors.
data consistency check of Primary Key and Foriegn Key is donw by ABAP dictionary, DBI uses ABAP dictionary

Submit
29. Repository objects are..
(more than 1 correct answer)
Submit
30. What is SAP instance
(more than 1 correct answer)
Submit
31. Which of the following statements are true
(More than 1 correct answer)
Submit
32. Which of the following statements are true about ICM(Internet Communication Manager)?
(more than 1 correct answer)

Explanation

For Single Stack, ICM is only available on ABAP
For dual stack ,ICM takes all http request and redirects to ABAP or JAVA dispatchers

Submit
33. Which of the following statements are true
(More than 1 correct answer)
Submit
34. Central Instance(CI) is....
(more than 1 correct answer)

Explanation

CI is available for both ABAP and JAVA
In JAVA CI has SDM
In ABAP CI has Message Server and Enqueue process
In JAVA Central Instance you have Message Services and Enqueue Services
In ABAP DI(Dialig Instance) you have dispatcher and work processes

Submit
35. Which of the following Web Services standards are used in SAP NetWeaver
(more than 1 correct answer)
Submit
View My Results
Cancel
  • All
    All (35)
  • Unanswered
    Unanswered ()
  • Answered
    Answered ()
All the repository objects created by developer and saved as local...
To explicity refer to internal table body for the following codedata:...
Evaluate the following code snippetData: begin of...
Semantic information is available to data object if the elementary...
Which component of Application server controls the traffic between...
If you need to start a transaction VA01 in a new session which of the...
User is not a client specific object, can be used to login at any...
Developer "A" is part of a Change Request where there are many other...
Evaluate the following code snippet ...
Data: dob type d.The above data object can stores internally data in...
All the development objects made by developer which is just saved...
Which statement below will create/generate the selection screen in the...
You have subroutine "Calculate" to have a formal parameter p_res that...
In a class CL_A you have methods m1(defined as static) and m2(defined...
Communication between two systems (SAP or third party) is handled by...
Ideally if coded correctly which work process should take over the...
Evaluate the follwing code ...
Which of the following is valid for Internal tables(More than 1...
Project Manager created a change request and assigned developers to...
If you need to have a modular resuable unit which can be called by all...
Which of the following are valid SAP GUI clients?(more than 1 correct...
Which of the following statements are true about Text Symbols(more...
Evaluate the following code snippetData: n1 type i value...
If the following statement is given in your ABAP program ...
For the following scenario which internal table type should  be...
Which of the following statements are true about NetWeaver AS? ...
Which of the following are valid interface of a function module(More...
Which of the following task is the responsibility of the Database...
Repository objects are..(more than 1 correct answer)
What is SAP instance(more than 1 correct answer)
Which of the following statements are true (More than 1 correct...
Which of the following statements are true about ICM(Internet...
Which of the following statements are true(More than 1 correct answer)
Central Instance(CI) is....(more than 1 correct answer)
Which of the following Web Services standards are used in SAP...
Alert!

Back to Top Back to top
Advertisement