Exam1pass
Easiest way to pass IT exams
Exam1pass Help You Pass Any IT Exam
http://www.exam1pass.com
Exam
: Lotus 190-803
Title
: Using LotusScript in IBM
Lotus Domino 8
Applications
Version : Demo
Exam1pass
Easiest way to pass IT exams
Exam1pass Help You Pass Any IT Exam
http://www.exam1pass.com
1. Jim is creating an action which will use documents based on a user-selected value. This value will be
compared with the Region field on documents in the Sales database, residing on the HUB_Dunn/Dunn
server. The user-entered value is referred to in the Rlookup identifier in the code.
The code so far is:
Dim col As NotesDocumentCollection
Dim db As New NotesDatabase("HUB_Dunn/Dunn", "SALES.NSF")
Dim dt As New NotesDateTime("01/01/90")
Dim srchstr As String
Which one of the following lines of code will return the correct collection?
A.srchstr = Rlookup set col = db.search(srchstr,dt,0)
B.srchstr = "Region="+Rlookup set col = db.search(srchstr,dt,0)
C.srchstr = "Region=" + |"| + Rlookup + |"|set col = db.search(srchstr,dt,0)
D.srchstr = "Select region=" + |"| + Rlookup + |"|set col = dbsearch(srchstr,dt,0)WArialZ
Answer: C
2. Which one of the following represents the uidocument correctly?
A.Dim s As New NotesSession Dim doc As NotesDocument Set doc=s.CurrentDocument
B.Dim w As New NotesUIWorkspace Dim doc As NotesDocument Set doc=w.CurrentDocument
C.Dim s As New NotesSession Dim uidoc As NotesUIDocument Set uidoc=s.CurrentDocument
D.Dim
w
As
New
NotesUIWorkspace
Dim
uidoc
As
NotesUIDocument
Set
uidoc=w.CurrentDocumentWArialZ
Answer: D
3. If today's date is January 31, 2010 and you ran the following piece of LotusScript:
dateString$ = Format(Today, "mm-dd-yy")
What would the value of dateString$ be?
A.1-31-10
B.01-31-10
C.1-31-2010
D.01-31-2010WArialZ
Answer: B
4. Marvin wants to export a given Notes document to a DXL text file. How would he accomplish this task?
A.He would use the NotesXMLTransformer class to copy the document directly to a text file
B.He would use the ExportDXL method of the NotesDocument class to send th