Dell E20-405 - EMC Content Management Server Programming(CMSP) Exam
Page: 1 / 46
Total 229 questions
Question #1 (Topic: )
Which method properly executes a query and returns the appropriate results. Assume you
are developing a UI tree control in a web application to display a list of cabinets. The list of
cabinets is generally static. Given the below code snippet: Which value for queryType
should be used to achieve the maximum performance?
are developing a UI tree control in a web application to display a list of cabinets. The list of
cabinets is generally static. Given the below code snippet: Which value for queryType
should be used to achieve the maximum performance?
A. IDfQuery.DF_READ_QUERY
B. IDfQuery.DF_QUERY
C. IDfQuery.DF_CACHE_QUERY
D. IDfQuery.DF_EXECREAD_QUERY
Answer: C
Question #2 (Topic: )
Which object types are used to contain a module and package Jar files in the repository?
A. dmc_module, dmc_jar
B. dm_bof_module, dm_bof_jar
C. dm_module, dm_bof_jar
D. dmc_module, dmc_java
Answer: A
Question #3 (Topic: )
What will the following method return when the object path contains multiple objects?
Public IDfPersistentObject getObjectByPath(Sting objectPath)
Public IDfPersistentObject getObjectByPath(Sting objectPath)
A. all objects in the object path
B. always the first object in the object path
C. always the last object in the object path
D. an object in the object path that cannot be determined
Answer: D
Question #4 (Topic: )
An exception is thrown within the following code, during the disconnect process. What is a
possible cause of the disconnect error?
possible cause of the disconnect error?
A. The code did not check to see if the session object was valid.
B. The code did not perform any work after opening the session.
C. The session was not retrieved through an IDfSessionManager interface.
D. The code did not cast the retrieved session object to IDfSession before assignment.
Answer: A
Question #5 (Topic: )
What is the appropriate statement for releasing the session obtained from the following
statement? IDfSession session = client.newSession(docbaseName, loginObj);
statement? IDfSession session = client.newSession(docbaseName, loginObj);
A. session.disconnect();
B. session.close();
C. session.release();
D. session = null;
Answer: A