Questions
If you lock project locally which is NOT TRUE then
- You cannot check-in to the server
- You can check-in to the server
- You cannot undo your changes
- You can use Tools->Unlock to unlock project
Mobile web client will use the following
- Local Object Manager
- Local Data Manager
- Local SWE
- Siebel Server
what is the default depth for navigation of collections for content on web
- 10
- 100
- 1000
- No restriction
An item in a taxonomy (Hierarchical navigation of content by category)
- Ontology
- Facet
- Dictionary
- intent
Facets can be passed as parameters
- True
- False
Arbitrary text strings used as internal identifiers for various objects in the IM system
- Primary key
- Reference key
- Title
- Description
Reference key for each object in the Information Manager instance are not unique
- True
- False
All content within a channel share the same
- Content attributes (schema)
- Workflow steps
- Publishing Lifecycle
- Display options
Reject these Document Patterns (For this Collection Only) - Specify one or more optional document patterns for inclusion in the collection.
- True
- False
You can view and analyze application log data using
- Application Logger
- Event viewer
- All the above
- None of the above
InQuira search application specific logging is logged in binary format
- True
- False
ILOG Jrules belongs to which company?
- SUN
- Microsoft
- IBM
- ILOG
ILOG Jrules is used in following languages
- Oracle
- Java
- Dot Net
- PHP
Can we use objects of super class and sub class in same rule
- True
- False
IlrSimpleRuleSessionProvider class provides
- connection between an Execution Unit (XU) and a non-EJB rule session in a J2SE application server
- connection between an Execution Unit (XU) and a non-EJB rule session in a J2EE application server
- connection between an Execution Unit (XU) and a EJB rule session in a J2EE application server
- connection between an Rule Team Server and a EJB rule session in a J2EE application server
In a rule set, there should be exactly 1 ruleflow
- True
- False
data temp; set lib1.x lib2.y; length jobcode $12.; run; What would be the length of Jobcode in temp?
- a.) 5
- b.) 8
- c.) 12
- d.) Syntax Error
PROC SORT data = lib.temp out = temp2; By subjid; Run; In which library temp2 is made?
- a.) WORK
- b.) SASUSER
- c.) LIB
- d.) SYNTAX ERROR
options obs = 500; Data TEMP; Set test(firstobs = 75); Run;
- a.) 424
- b.) 426
- c.) 500
- d.) 75
data temp; test = ‘X’; select(test); when(‘Y’) Name = ‘Ank’; when(‘X’) Name = ‘Ankur’; when(‘Z’) Name = ‘ ’; end; run; What is the output?
- a.) Ankur
- b.) Ank
- c.) Missing (character missing value)
- d.) ‘Ankur’