Dell E20-405 - EMC Content Management Server Programming(CMSP) Exam
Page: 2 / 46
Total 229 questions
Question #6 (Topic: )
Which is the valid method for retrieving the folder named "example1" located in the
"dmadmin" cabinet, given that the "dmadmin" cabinet only contains one folder and that
session is a valid IDfSession object?
"dmadmin" cabinet, given that the "dmadmin" cabinet only contains one folder and that
session is a valid IDfSession object?
A. IDfFolder folder = session.getFolderByPath("example1");
B. IDfFolder folder = session.getFolderByPath("/dmadmin");
C. IDfFolder folder = (IDfFolder)session.getObjectByPath("/dmadmin");
D. IDfFolder folder = session.getFolderByPath("/dmadmin/example1");
Answer: D
Question #7 (Topic: )
IDfId.getTypePart() returns the portion of the ID which represents the object's type. If the
object's Id is: 469af3ce80000200 Which digits represent the type of the object?
object's Id is: 469af3ce80000200 Which digits represent the type of the object?
A. ce
B. 46
C. 8000
D. 9af3ce
Answer: B
Question #8 (Topic: )
Given the following: where queryString = "select object_name from dm_document" Which
method properly executes a query and returns the appropriate results?
method properly executes a query and returns the appropriate results?
A. public static IDfCollection execQuery(String queryString, IDfSession session) throws DfException{ ...
B. setDQL(queryString); col = q.execute(session); ... return col; }
C. public static IDfCollection execQuery(String queryString, IDfSession session) throws DfException{ ...
D. setDQL(queryString); col = q.execute(session,0); ... return col; }
E. public static IDfDocument execQuery(String queryString, IDfSession session) throws DfException{ ...
F. setDQL(queryString); objectName = q.execute(session); ... return objectName; }
G. public static IDfDocument execQuery(String queryString, IDfSession session) throws DfException{ ...
H. setDQL(queryString); objectName = q.execute(session,0); ... return objectName; }
Answer: B
Question #9 (Topic: )
Which method applies a lifecycle to an instance of a IDfSysObject?
A. attach()
B. attachPolicy()
C. applyLifecycle()
D. attachLifecycle()
Answer: B
Question #10 (Topic: )
Which statement is true about XML validation through DFC?
A. DFC uses a modified version of the Xerces XML parser, which it includes in dctm.jar.
B. If no XML application has explicitly been specified, DFC will not be able to determine theXML application automatically.
C. If the DTD or schema are in the repository, the execute()method makes a temporary copyin the Temp cabinet and performs the validation there.
D. The execute() method of an IDfValidationOperation object runs the parser in validationmode to determine whether or not documents are well formed and conform to the DTD orschema.
Answer: D