[2022年更新]早速ゲットしてトップランクのSAP C-TAW12-750試験問題集
パスする秘訣はC-TAW12-750をゲットして認証された試験エンジンPDF
SAP C-TAW12-750 認定試験の出題範囲:
| トピック | 出題範囲 |
|---|---|
| トピック 1 |
|
| トピック 2 |
|
| トピック 3 |
|
| トピック 4 |
|
| トピック 5 |
|
| トピック 6 |
|
| トピック 7 |
|
質問 33
Which of the following are features of the Context in Web Dynpro?
There are 2 correct answers to this question
Response:
- A. Data is shared between controllers through Context mapping
- B. Every Web Dynpro controller has one Context
- C. Every Web Dynpro controller has multiple Contexts
- D. Data is transferred from one Context to another by firing plugs
正解: A,B
質問 34
What is the purpose of the enqueuer work process?
Please choose the correct answer.
Response:
- A. It translates Open SQL statements
- B. It processes user entries
- C. It processes update requests
- D. It manages logical locks in the lock table
正解: D
質問 35
The Internet Communication Manager (ICM)...
Please choose the correct answer.
Response:
- A. Allows the ABAP stack and the Java stack to exchange data.
- B. Allows SAP NetWeaver Application Server to process HTTP requests.
- C. Can not replaced SAP ITS.
- D. Replaced SAP ITS.
正解: B
質問 36
For which of the following requirements can you implement a functional method?
There are 2 correct answers to this question.
Response:
- A. A factory method that returns an object reference
- B. A method to set an instance attribute with one importing parameter and no other parameters
- C. A handler method for an event that has a returning parameter
- D. A private static helper method that returns a single value as the result of an algorithm
正解: A,D
質問 37
You run an executable program which contains the following code:
DATA: gv_var1 TYPE n LENGTH 3,
Gv_var2 TYPE n LENGTH 3 VALUE '456'.
START-OF-SELECTION
CLEAR gv_var2
Gv_var2 = gv_var1.
Gv_var1 = '123'.
At what point does the system reserve memory for the data object gv_var1?
Please choose the correct answer.
Response:
- A. At the beginning of the START-OF-SELECTION event block
- B. When the value '123' is assigned to the data object
- C. As soon as the program is loaded into thie internal session
- D. When the assignment to gv_var2 is executed
正解: C
質問 38
Which types of programs or parts of programs can be tested directly from the ABAP Workbench or ABAP Editor?
There are 4 correct answers to this question.
Response:
- A. FUNCTION MODULE
- B. INTERFACE-POOL
- C. FUNCTION-POOL
- D. CLASS-POOL
- E. PROGRAM
- F. METHOD
- G. INCLUDE
- H. TYPE-POOL
- I. REPORT
正解: A,D,F,I
質問 39
Database access can occupy most of the runtime in an ABAP program. Which tools are available to assist you to diagnose performance issues in your program? Select all that apply}
- A. ABAP Objects Runtime Analysis (Transaction ATRA)
- B. Performance Trace (Transaction ST05)
- C. ABAP Objects Runtime Analysis (Transaction SE30)
- D. ABAP Trace (Transaction SAT)
正解: A,B,C,D
質問 40
Given the code in the exhibit (see Figure 17.9) and the knowledge that both lcl_truck and lcl_car inherit from lcl_vehicle, which statements are true? Select all that apply
- A. The table lt_vehicle contains three vehicles.
- B. The code is not syntactically correct.
- C. The code will produce a runtime error.
- D. The code shows two valid up casts.
- E. The code shows three valid up casts.
- F. The code shows no valid up casts.
正解: A,C,D
質問 41
When would you call the RFC function module synchronously?
There are 2 correct answers to this question.
Response:
- A. During interactive communication
- B. During unidirectional communication
- C. During queue processing
- D. During two-way communication
正解: C,D
質問 42
SAP enhancements for customer exits are managed by which transaction?
Please choose the correct answer.
Response:
- A. Transaction SMOD
- B. Transaction CMOD
- C. Application CMOD
- D. Neither transaction listed here
正解: A
質問 43
Your code contains the following statement:
READ TABLE gt_itab INTO gs_struc INDEX 1.
When defining gt_itab, which internal table types can you use?
Please choose the correct answer.
Response:
- A. Standard and sorted
- B. Sorted and hashed
- C. Standard, sorted, and hashed
- D. Standard and hashed
正解: A
質問 44
Which of the following statements are correct? Select all that apply.
- A. An enhancement spot can contain an explicit enhancement point and an enhancement section.
- B. An enhancement spot can contain an explicit enhancement point, explicit '-' enhancement section, and new BAdl.
- C. An enhancement spot can contain either an explicit enhancement point and enhancement section or a new BAdl only, but all three cannot be in the same enhancement spot.
- D. An enhancement spot can contain one or more simple or composite '-' enhancements.
正解: A,C,D
質問 45
Which of the following statements are true? Select all that apply. (S.596) {3 Richtig}
- A. None of the above.
- B. Implicit enhancement can be used to enhance SAP objects developed prior to SAP NetWeaver 7.0.
- C. An implicit enhancement point can be used to insert code in an SAP program and is always available to the customer.
- D. Implicit enhancement options allow you to enhance interface parameters for function modules and methods without modifying the repository object.
正解: B,C,D
質問 46
What can be exposed in the component interface of a Web dynpro component?
Please choose the correct answer.
Response:
- A. Custom methods of the component controller
- B. Context nodes of WINDOW controllers
- C. Standard hook methods of the component controller
- D. Public attributes of WINDOW controllers
正解: A
質問 47
What are the advantages of modularization?
There are 3 correct answers to this question
Response:
- A. Maintainability
- B. Reusability
- C. Transparency
- D. Profitability across DBMS
- E. Performance
正解: A,B,C
質問 48
You want to check the user input in the field FIELD_NAME on a classical screen. If an incorrect value is entered, the user should be able to correct the field value.
How do you call the module CHECK_MODULE in the PAI of the screen to accomplish this?
Please choose the correct answer.
Response:
- A. FIELD field_name MODULE check_module MESSAGE Ennn.
- B. MODULE check_module ON ERROR.
- C. CHAIN. MODULE check_module FIELD field_name. ENDCHAIN.
- D. FIELD field_name MODULE check_module.
正解: D
質問 49
Your selection screen can be modified at which event?
Please choose the correct answer.
Response:
- A. AT SELECTION-SCREEN
- B. None of the above
- C. AT SELECTION-SCREEN OUTPUT
- D. AT SELECTION-SCREEN ON <field_name>
正解: C
質問 50
When to use Enhanced Open SQL?
There are 2 correct answers to this question.
- A. Need the query in one piece of code only
- B. To view scalar components
- C. At the time of Dictionary Views
- D. To access system fields
正解: A,D
質問 51
Which of the following statements are true? Select all that apply.
- A. database view is implemented as an inner join.
- B. A database view is implemented as an outer join.
- C. maintenance view is implemented as an outer join.
- D. A maintenance view is implemented as an inner join.
正解: A,C
質問 52
One of your SAP systems needs to be migrated from its current database to an SAP HANA database. You want to avoid any functional issues after the migration.
What should you search for and if necessary replace in the existing custom ABAP code? There are 3 correct answers to this question.
- A. ORDER BY Clauses in Open SQL statements
- B. Direct access to a cluster on the database
- C. Native SQL statements
- D. Code that relies on implicit database sorting
- E. Left outer joins in open SQL statements
正解: B,C,D
質問 53
......
C-TAW12-750試験問題は練習は2022年最新の330問題:https://www.goshiken.com/SAP/C-TAW12-750-mondaishu.html
C-TAW12-750試験問題集パスと最新テスト問題集:https://drive.google.com/open?id=1XuPc_GcjyMJ0Ab_KgFiVkuKO5Wt7hUFt