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
Given that document is an instance of an IDfDocument object, and given the following statement: document.setObjectName("test"); What will be the outcome?
A. The code does NOT compile.
B. At runtime, a NoSuchMethodException is thrown because setObjectName() is definedonIDfSysObject.
C. At runtime, a NoSuchMethodException is thrown because setObjectName() is defined onIDfPersistentObject.
D. The code runs successfully.
You want to get an object, but there is more than one object that meets the qualification. What should you do?
A. iterate through the results of the getFolderByPath() method
B. use the getObjectByQualification() method with a qualifier that includes all of the objects
C. use a query and iterate through the resulting collection
D. use the getObjectPaths() and iterate through the resulting enumeration
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?
A. IDfQuery.DF_READ_QUERY
B. IDfQuery.DF_QUERY
C. IDfQuery.DF_CACHE_QUERY
D. IDfQuery.DF_EXECREAD_QUERY
Which statement is NOT true about the IDfVirtualDocument.removeNode() method?
A. The node is removed from the virtual document.
B. The dmr_containment object is removed from the repository.
C. The underlying selected object is removed from the repository.
D. The change is not committed until the object is checked in.
The drawing depicts a virtual document A, with a child node of B. B is also a virtual document with two child nodes, C and D. Document B has 4 versions: one implicit version 1.2, and three others with symbolic labels, "Approved," "CURRENT," and "Released." Document B is early-bound to "Released" and setOverrideLateBindingValue() set to true. Document C has two versions, "Released" and "CURRENT" and is late-bound. Document D has two versions, "CURRENT" AND "Approved" and is late-bound. The virtual document is obtained using "Released" as the preferred version in the late binding value and setIncludeBrokenBindings defaults to false. Which versions are bound when the virtual document is traversed?
A. A=CURRENT, B=Released, C=Released, D=CURRENT
B. A=CURRENT, B=1.2, C=Released, D=Approved
C. A=CURRENT, B=Released, C=CURRENT, D=CURRENT
D. A=CURRENT, B=Released, C=Released, D=Broken
When querying the dm_queue view to read a user's active workflow tasks, what information is contained in the router_id field?
A. current Activities
B. current Workitems
C. current Workflow Instances
D. current Workflow Templates
Given the following code:
IDfCollection result = session.getRunnableProcesses("");
What would the result contain?
A. workflow templates
B. installed workflow templates
C. instantiated workflows
D. acquired workflows
Which statement is true about TBOs?
A. A TBO can be shared between the repositories if it is registered in the global registry.
B. A TBO can be shared as long as the repositories contain the same object type for whichthe TBO is written.
C. A TBO cannot be shared between repositories.
D. A TBO is not extendable.
Which statement is true about the DFC tracing model?
A. DFC tracing is only for Java code.
B. DFC tracing is only for business objects.
C. DFC tracing logs method call information.
D. DFC tracing can only be controlled by application source code.