Testinside – IT certification exam World NO.1 IT Certification Exams Provider

E20-405 Free download

11.18.2008 · Posted in EMC

Free Download PassQuick E20-405 Practice Exams

Preparing for the E20-405 exam? Searching E20-405 Braindumps, E20-405 Test Questions, E20-405 Practice Exam, E20-405 Dumps? PassQuick E20-405 is written to coincide with the real test by the experienced IT experts and specialists. With the complete collection of PassQuick Questions and Answers, PassQuick E20-405 is high enough to help the candidates to easy pass this exam easily without any other study materials and no need to attend the expensive training class.

Free E20-405 PDF Download

Download EMC E20-405 Pdf

 
 
Exam : EMC E20-405
Title : EMC Content Management Server Programming(CMSP)

1. Given the following repositories that are projecting to the following Connection Brokers:
How do you dynamically add host2 as additional Connection Broker, such that Docbase A and Docbase B are listed as available repositories?
A. change "host = host1" to "host = host1, host2" in dmcl.ini
B. execute IDfDocbrokerClient.addDocbroker("host2",1489);
C. add the following statements in the dmcl.ini: [DOCBROKER_BACKUP_1] host=host2 port=1489
D. add the following statements in the dmcl.ini: [DOCBROKER_SECONDARY] host=host2 port=1489
Answer: B

2. Where are the credentials located for the BOF’s client dynamic delivery mechanism?
A. dfc.properties
B. dmcl.ini
C. bof.properties
D. dbor.properties
Answer: A

3. What are the minimum required components to extend custom object type behavior?
A. TBO and SBO
B. TBO and DFC
C. SBO and DFC
D. SBO and Web Services Framework
Answer: B

4. When are the binding rules for a virtual document actually applied?
A. When the virtual document is saved
B. When IDfSysObject.asVirtualDocument() is called
C. When IDfVirtualDocumentNode.getChildCount() is called
D. When IDfVirtualDocument.getRootNode() is called
Answer: C

5. How do you manually configure the DFC global registry?
A. 1. add the dfc.bof.registry entries to the dfc.properties file.
B. 1. encrypt the password
 2. add the dfc.bof.registry entries to the dfc.properties file.
C. 1. activate the registry user
 2. change the password
 3. encrypt the password
 4. add the dfc.bof.registry entries to the dfc.properties file.
D. 1. create a new user as a consumer
2. designate the user as a registry user
3. encrypt the password
4. add the dfc.bof.registry entries to the dfc.properties file.
Answer: C

6. Given an SBO called com.mycompany.ICreditScore and the following statement:
newModule(repositoryName, "com.mycompany.ICreditScore", sessionMgr)
What does the statement do?
A. deploys com.mycompany.ICreditScore module
B. deploys com.mycompany.ICreditScore service
C. deploys and instantiates com.mycompany.ICreditScore module
D. deploys and instantiates com.mycompany.ICreditScore service
Answer: C

7. Which statement is true about Trusted Content Services (TCS)?
A. TCS is not required to create ApplicationPermission entries.
B. TCS is not required to evaluate ApplicationPermission entries.
C. TCS is not required to delete ApplicationPermission entries.
D. TCS validates and enforces application permissions at the server level.
Answer: B

8. Which statement is true about the object model?
A. dmr_content is not a sub-type of dm_sysobject although sysobject contents are stored as dmr_content objects.
B. dm_acl objects are stored in the System cabinet.
C. Not all sysobjects can have associated permissions.
D. Virtual documents are objects of type dm_relation that describe a parent/child relationship between objects.
Answer: A

9. Given the following architecture:
To disable full-text search for end users of Webtop, on which computer should you update the dfc.properties file?
A. server1 only
B. app1 only
C. both server1 and local1
D. both app1 and local1
Answer: B

10. How should you deploy a TBO to the respository?
A. Using IDfClient.newModule() only
B. Using Documentum Application Installer only
C. Using both Documentum Application Installer and IDfClient.newModule()
D. Using Documentum Application Installer, IDfClient.newModule() and IDfClient.newService()
Answer: B

11. Which DFC interface provides a getCheckoutDirectory() method that returns the local checkout directory?
A. IDfClient
B. IDfClientX
C. IDfSession
D. IDfClientRegistry
Answer: D

12. What happens when you fail to close open query collections in a DFC application?
A. Performance for other users will be impaired.
B. Eventually, no more queries can be executed.
C. Garbage collection will release appropriate resources.
D. The session will disconnect.
Answer: B

13. encrypt the password
4. add the dfc.bof.registry entries to the dfc.properties file.
Answer: C

14. A TBO has been created for the custom object type called my_loan_application. If the following statement is executed in a Webtop custom component, where is the TBO executed?
IDfSysObject loanApp = (IDfSysObject)session.newObject("my_loan_application");
A. The TBO executes on the client browser’s JVM.
B. The TBO executes on the Global Registry computer.
C. The TBO executes on the application server JVM.
D. The TBO execuctes on the Content Server JVM.
Answer: C

15. add the dfc.bof.registry entries to the dfc.properties file.
Answer: C

16. Which SBO method signature is valid for conversion to a web service?
A. void setKeyword(IDfSysObject obj, int index, String value)
B. boolean uploadConfiguration(java.io.File myFile)
C. boolean setKeyword(IDfSysObject obj, int index, String value)
D. int countDocuments(IDfSession sess, String qualification)
Answer: B

17. Which code should you use to create a copy of the current object and place it in CopyCab?
A. IDfSysObject sysObj = (IDfSysObject)session.getObject(myId);
sysObj.link("/CopyCab");
sysObj.savelock();
B. IDfSysObject sysObj = (IDfSysObject)session.getObject(myId);
sysObj.unlink("/SourceCab");
sysObj.link("/CopyCab");
sysObj.saveAsNew( false );
C. IDfSysObject sysObj = (IDfSysObject)session.newObject(myId);
sysObj.link("/CopyCab");
sysObj.save();
D. IDfSysObject sysObj = (IDfSysObject)session.getObject(myId);
sysObj.unlink("/SourceCab");
sysObj.link("/CopyCab");
sysObj.save();
Answer: B

18. A TBO has been created for a custom object type called my_loan_application. The TBO relies on a dependant SBO to calculate credit scores. The TBO is only invoked by the Webtop application.
Where does the SBO execute?
A. Global registry machine
B. Content Server JVM
C. Application Server JVM
D. the client browser’s JVM
Answer: C

19. What kind of module is used to create a Documentum Web Service?
A. Type-based Business Object
B. Service-based Business Object
C. Web-based Business Object
D. Custom Module
Answer: B

20. Which statement is true?
A. IDfSession.getLoginTicket() will return a ticket from the current session.
B. IDfSession.getLoginTicket() will return a new session object for the current user.
C. IDfSession.getLoginTicket() will return a new session object for the super user.
D. IDfSession.getLoginTicket() will return a ticket from a new session.
Answer: A

Recommended Training about EMC E20-405 testing Fromat

The following courses are the recommended training for E20-405 PDF Fromat.

E20-405 Q & A with Explanations

E20-405 Audio video download

E20-405 Study Guide materials

E20-405 Preparation Labs

E20-405 paper books

E20-405 rapidshare 4shared sadikhov links

E20-405 torrent notes

E20-405 self testengin

E20-405 sample print pdf version

Why do you Choose PassQuick E20-405

Quality and Value for the E20-405 Exams

PassQuick Practice Exams for EMC Certification E20-405 are written to the highest standards of technical accuracy, using only certified subject matter experts and published authors for development.

100% Guarantee to Pass E20-405 Exam

If you prepare for E20-405 exam using our PassQuick testing engine, we guarantee your success in the first attempt. If you do not pass the E20-405 exam on your first attempt we will give you a FULL REFUND of your purchasing fee AND send you another same value product for free.

  • Share/Bookmark

No related posts.

Related posts brought to you by Yet Another Related Posts Plugin.

Comments are closed

themes by cheap Omega Watches store.