Tag: enterprise content management

Questions Related to enterprise content management

  1. Continual Query Language

  2. Counted Query Language

  3. Continous Query Language

  4. None of the Above


Correct Option: D
  1. A Text Object by Name:- MyHello and text value:- MyHello gets created in the database.

  2. A Text Object by Name:- MyHello and text value:- Hello gets created in the database.

  3. A Text Object by Name:- Hello and text value:- MyHello gets created in the database.

  4. Nothing is created, as one 'key/important statement' is missing in the code.


Correct Option: B

var txtObj1 = new WebObject(WebObject.PAGE); txtObj1.name = "Text1" txtObj1.url = "Text1" var txtObj2 = new WebObject(); txtObj2.name = "Text1" txtObj2.url = "Text1" write(txtObj1.state == WebObject.ACTIVE); write(",") write(txtObj2.state == WebObject.ACTIVE); What are the values

  1. true, true

  2. true. false

  3. false, true

  4. true, undefined


Correct Option: B
  1. A cookie by Name cookie-myCookie is created.

  2. The cookie will expire exactly 15 days from the time it is created.

  3. The cookie will expire exactly 30 days from the time it is created.

  4. A cookie by Name myCookie is created.

  5. Since the setTime function will fail, the cookie will never expire.


Correct Option: C,D
  1. String representation of current date, in US format.

  2. String representation of current date, in UK format.

  3. String representation of current date, as per Webserver's locale

  4. Will return a Empty string


Correct Option: C