Certification Questions

Q:

What needs to be done to make the queries work after changes are made to an InfoProvider?

A. Re-Generate the queries.

B. Nothing can be done.

C. Delete and re-create the queries.

Answer

Answer : A

Report Error

View answer Workspace Report Error Discuss

Subject: SAP BW

0 1936
Q:

Your network consists of a single Active Directory domain. All servers run Windows Server 2003 Service Pack 2 (SP2). All client computers run Windows XP Professional Service Pack 3 (SP3). On a file server, you have a shared folder named Data. The Data folder has the permissions shown in the following table:

You need to ensure that members of a group named Sales can modify content in the Data share. Sales group members must only be allowed to delete files that they create. Which additional permission should you assign to the Sales group?

A) On the Data folder, allow the Write permission. B) On the Data folder, allow the Modify permission.
C) On the Data share, allow the Change permission. D) On the Data share, allow the Full Control permission.
 
Answer & Explanation Answer: A) On the Data folder, allow the Write permission.

Explanation:
Report Error

View Answer Report Error Discuss

2 1930
Q:

A solution developer needs to configure the HTTP listener of an Integration Server on a Linux Server.

Which operating system privileges does the developer need to modify Integration node
properties and properties of integration node resources?

A) root user B) mqm
C) mqbrks D) mqm and mqbrks
 
Answer & Explanation Answer: A) root user

Explanation:
Report Error

View Answer Report Error Discuss

7 1923
Q:

[CO-OM-CCA] Assessment is designed for what?

A. It classifies the specific activities provided y a cost center along cost allocation lines.

B. Allocation of primary and secondary costs from a sender to receiver controlling objects.

C. Allocation of amounts within CO across company codes.

D. Activating plan integration with Orders and projects.

Answer

Answer : B

Report Error

View answer Workspace Report Error Discuss

Subject: SAP CO

0 1912
Q:

What are Aggregates?

A. Subset of an InfoCube.

B. Outset of a Cube.

C. None of the above.

Answer

Answer : A

Report Error

View answer Workspace Report Error Discuss

Subject: SAP BW

0 1907
Q:

You are planning to install and configure network services for ineroperability on your Windows 2000 Server computer. You specifically want this server to maintain and advertise a list of services that use the NWLink IPX/SPX/NetBIOS Compatible Transport Protocol. What service should you install?

A) Indexing Service B) NNTP Service
C) RIP Listener D) SAP Agent
 
Answer & Explanation Answer: D) SAP Agent

Explanation:

The SAP Agent enables a Windows 2000 computer to maintain and advertise a list of servers (such as NetWare servers) that use the NWLink IPX/SPX/NetBIOS Compatible Transport Protocol.

Report Error

View Answer Report Error Discuss

0 1903
Q:

What is the effect of including both keywords and placements in an Ad Group on the Display Network?

Answer

Your ads will be restricted to only specific sites that you choose and webpages where the content is relevant to the theme of the keywords.

Report Error

View answer Workspace Report Error Discuss

0 1903
Q:

You develop a Windows-based application that enables to enter product sales. You add a subroutine named XYZ.

 

You discover that XYZ sometimes raises an IOException during execution. To address this problem you create two additional subroutines named LogError and CleanUp. These subroutines are governed by the following rules:

• LogError must be called only when XYZ raises an exception.
• CleanUp must be called whenever XYZ is complete.

 

 You must ensure that your application adheres to these rules. Which code segment should you use?

A) try { XYZ(); LogError(); } catch (Exception e) { CleanUp(e); } B) try { XYZ(); } catch (Exception e) { LogError(e); CleanUp(); }
C) try { XYZ(); } catch (Exception e) { LogError(e); } finally { CleanUp(); } D) try { XYZ(); } catch (Exception e) { CleanUp(e); } finally { LogError(); }
 
Answer & Explanation Answer: C) try { XYZ(); } catch (Exception e) { LogError(e); } finally { CleanUp(); }

Explanation:

We must use a try…catch…finally construct. First we run the Comapany() code in the try block.Then we use the LogError() subroutine in the catch statement since all exceptions are handled here. Lastly we put the CleanUp() subroutine in the finally statement since this code will be executed regardless of whether an exception is thrown or not.

Report Error

View Answer Report Error Discuss

0 1900