190-801  Exam

Exam # of questions Description  Update
190-801 81 190-801... 02/15/2011
[Practice Test]   [Download Study Guide(PDF)]  [Update Exam]

190-801 - Exam Information
  • Description:IBM Lotus Notes Domino 8 Application Development Update
  • Passing Score:75%
  • Practice Test - Number of questions:81 questions
  • Simulation Test - Number of questions:81 questions
  • Simulation Test Duration:90 minutes
  • Has explanations:No

Question of the day

Valerie is building an agent to allow a user to mark incoming Movie Rental documents as processed, and to mark the documents as being read by the user. Complete the missing line of code in the agent below: Dim session As New NotesSession Dim dbThis As NotesDatabase Dim dcThis As NotesDocumentCollection Dim docThis As NotesDocument Set dbThis = session.CurrentDatabase Set dcThis = dbThis.UnprocessedDocuments Set docThis = dcThis.GetFirstDocument Do While Not (docThis Is Nothing) docThis.RentalProcessed = ues Call docThis.Save(True, False) Set docThis = dcThis.GetNextDocument(docThis) Loop

Answer(s)

  1. Call dcThis.MarkAllRead
  2. Call dbThis.MarkAllRead
  3. Set dcThis = dbThis.MarkAllRead
  4. Set dbThis = dcThis.MarkAllRead
Correct Answer

Call dcThis.MarkAllRead