4
190-273 Lotus Lotus Script in Notes for Advanced Developers Thousands of IT Professionals before you have already passed their 190-273 certification exams using the Lotus 190-273 Practice Exam from ipass4sure.com. Once you start using our 190-273 exam questions you simply can't stop! You are guaranteed to pass your Lotus 190-273 test with ease and in your first attempt. Here's what you can expect from the ipass4sure Lotus 190-273 course: * Up-to-Date Lotus 190-273 questions designed to familiarize you with the real exam. * 100% correct Lotus 190-273 answers you simply can't find in other 190-273 courses. * All of our tests are easy to download. Your file will be saved as a 190-273 PDF. * Lotus 190-273 brain dump free content featuring the real 190-273 test questions. Lotus 190-273 Certification Exam is of core importance both in your Professional life and Lotus Certification Path. With Lotus Certification you can get a good job easily in the market and get on your path for success. Professionals who passed Lotus 190-273 Certification Exam are an absolute favorite in the industry. If you pass Lotus 190-273 Certification Exam then career opportunities are open for you. Our 190-273 Questions & Answers provide you an easy solution to your Lotus 190-273 Exam Preparation. Our 190-273 Q&As contains the most updated Lotus 190-273 real tests. You can use our 190-273 Q&As on any PC with most versions of Acrobat Reader and prepare the exam easily.

190-273 Lotus Lotus Script in Notes for Advanced Developers Thousands of IT Professionals before you have already passed their 190-273 certification exams

Embed Size (px)

DESCRIPTION

Question: 5 In order to generate a result set, which one of the following must be established in an ODBCQuery object? A - SQL property B - SQL method and Connection property C - SQL property and Connection property D - GetError method and Connection property Answer: C Question: 6 Which one of the following is needed to use ODBC in Lotus Domino? A - The data source must be identified. B - The ODBC driver must be available. C - The data source must be identified using a supported ODBC driver at the machine using the driver D - The data source must be identified using a supported ODBC driver at the server to which the machine connects. Answer: C Question: 7 Which one of the following would Brian use to access a replica of a database on a server? A - New on the NotesDatabase class B - Opensame on the NotesSession class C - Open method on the NotesDatabase class D - OpenByReplicalD method on the NotesDatabase class Answer: D Question: 8 Jason uses script to create documents in a Domino database from a dBase database. He has created an ODBCResultSet object called res in his code. He would like to create documents with two items, Name and City. The item names are the same as the column names in res. He has created a vendor form which contains these fields. Which one of the following will generate this result? (Assume the object db represents the current database.) A - Dim doc As NotesDocument res.FirstRow Do until res is nothing Set doc= New NotesDocument(db) doc.Form=”vendor” doc.Name=res Getvalue(”Name”) doc.City=res.Getvalue(”City”) doc.Save True,True res.GetNextRow Loop B - Dim doc As NotesDocument Dim emptyrow As Integer emptyrow=res.FirstRow Do until emptyrow=False Page 2 of 26

Citation preview

Page 1: 190-273 Lotus Lotus Script in Notes for Advanced Developers Thousands of IT Professionals before you have already passed their 190-273 certification exams

190-273LotusLotus Script in Notes for Advanced Developers

Thousands of IT Professionals before you have already passed their 190-273 certificationexams using the Lotus 190-273 Practice Exam from ipass4sure.com. Once you start usingour 190-273 exam questions you simply can't stop! You are guaranteed to pass your Lotus190-273 test with ease and in your first attempt.

Here's what you can expect from the ipass4sure Lotus 190-273 course:

* Up-to-Date Lotus 190-273 questions designed to familiarize you with the real exam.* 100% correct Lotus 190-273 answers you simply can't find in other 190-273 courses.* All of our tests are easy to download. Your file will be saved as a 190-273 PDF.* Lotus 190-273 brain dump free content featuring the real 190-273 test questions.

Lotus 190-273 Certification Exam is of core importance both in your Professionallife and Lotus Certification Path. With Lotus Certification you can get a goodjob easily in the market and get on your path for success. Professionals who passedLotus 190-273 Certification Exam are an absolute favorite in the industry.If you pass Lotus 190-273 Certification Exam then career opportunities areopen for you.

Our 190-273 Questions & Answers provide you an easy solution to your Lotus 190-273Exam Preparation. Our 190-273 Q&As contains the most updated Lotus 190-273 real tests.You can use our 190-273 Q&As on any PC with most versions of Acrobat Reader and preparethe exam easily.

Page 2: 190-273 Lotus Lotus Script in Notes for Advanced Developers Thousands of IT Professionals before you have already passed their 190-273 certification exams

Question: 1Marilyn is writing code which prompts users to specify a database to copy. She wants to makesure the database name specified is correct before a copy is made. Which one of the followingsets of properties and methods should she use on the NotesDatabase object?

A - New method, Open propertyB - IsOpen property, Open methodC - IsOpen method, Open propertyD - Created property, Open method

Answer: B

Question: 2Emily wants to report on documents in a database. She will use an action button in a view tocount documents. The database name is CLIENTS NSF and it resides on the HUB_DUNN/Dunnserver. The button is in the same database on which she is reporting. She wants to implementscript that is operational from any replica copy of the database. Which one of the following wouldbe the best method of representing the database in her script?

A - Dim db As New NotesDatabase(”,”CLIENTS.NSF”)B - Dim dbAs New

NotesDatabase(”HUB_DUNN/Dunn”,“CLIENTS .NSF”)C - Dim db As NotesDatabase

db .Open(”HUB_DUNN/Dunn”‘CLIENTS NSF”)D - Dim s As New NotesSession

Dim db As NotesDatabaseSet db=s.CurrentDatabase

Answer: D

Question: 3Which one of the following properties allows Jim to change the title on an object of theNotesDatabase class?

A - The Title property on the NotesDatabase classB - The MakeTitle method on the NotesSession classC - The IsTitle property on the NotesDatabase classD - The MakeTitle method on the NotesDatabase class

Answer: A

Question: 4In order to work with an ODBC source, a result set must be created. How is this done?

A - Use the Execute method on the ODBCResultSet object only.B - Use the ODBCQuery object to define the query and connection.

Use the ODBCResultSet object, Execute method to generate the ODBC data in memory.C - Use the ODBCConnection object, ConnectTo method to establish the connection. Use the

ODBCQuery object to define the query and connection.Use the ODBCResultSet object, Execute method to generate the ODBC data in memory.

D - Use the ODBCConnection object, Connection property to establish the connection. Use theODBCQuery object to define the query and connection.Use the ODBCResultSet object, Execute method to generate the ODBC data in memory.

Answer: C

Page 1 of 26

Page 3: 190-273 Lotus Lotus Script in Notes for Advanced Developers Thousands of IT Professionals before you have already passed their 190-273 certification exams

Question: 5In order to generate a result set, which one of the following must be established in anODBCQuery object?

A - SQL propertyB - SQL method and Connection propertyC - SQL property and Connection propertyD - GetError method and Connection property

Answer: C

Question: 6Which one of the following is needed to use ODBC in Lotus Domino?

A - The data source must be identified.B - The ODBC driver must be available.C - The data source must be identified using a supported ODBC driver at the machine using the

driverD - The data source must be identified using a supported ODBC driver at the server to which the

machine connects.

Answer: C

Question: 7Which one of the following would Brian use to access a replica of a database on a server?

A - New on the NotesDatabase classB - Opensame on the NotesSession classC - Open method on the NotesDatabase classD - OpenByReplicalD method on the NotesDatabase class

Answer: D

Question: 8Jason uses script to create documents in a Domino database from a dBase database. He hascreated an ODBCResultSet object called res in his code. He would like to create documents withtwo items, Name and City. The item names are the same as the column names in res. He hascreated a vendor form which contains these fields. Which one of the following will generate thisresult? (Assume the object db represents the current database.)

A - Dim doc As NotesDocumentres.FirstRowDo until res is nothingSet doc= New NotesDocument(db)doc.Form=”vendor”doc.Name=res Getvalue(”Name”)doc.City=res.Getvalue(”City”)doc.Save True,Trueres.GetNextRowLoop

B - Dim doc As NotesDocumentDim emptyrow As Integeremptyrow=res.FirstRowDo until emptyrow=False

Page 2 of 26

Page 4: 190-273 Lotus Lotus Script in Notes for Advanced Developers Thousands of IT Professionals before you have already passed their 190-273 certification exams

Pass4sure $89 Lifetime Membership Features;----------------

Pass4sure $89 Lifetime Membership includes Over 2100 Exams in One Price.All Pass4sure Questions and Answers are included in $89 package.All Pass4sure audio exams are included free in $89 package (See List).All Pass4sure study guides are included free in $89 package (See List).Lifetime login access, no hidden fee, no login expiry.Free updates for Lifetime.Free Download Access to All new exams added in future.Accurate answers with explanations (If applicable).Verified answers researched by industry experts.Study Material updated on regular basis.Questions, Answers and Study Guides are downloadable in PDF format.Audio Exams are downloadable in MP3 format.No authorization code required to open exam.Portable anywhere.100% success Guarantee.Fast, helpful support 24x7.

View list of All exams (Q&A) provided in $89 membership;http://www.ipass4sure.com/allexams.asp

View list of All Study Guides (SG) provided FREE for members;http://www.ipass4sure.com/study-guides.asp

View list of All Audio Exams (AE) provided FREE for members;http://www.ipass4sure.com/audio-exams.asp

Download All Exams Sample QAs.http://www.ipass4sure.com/samples.asp

To purchase $89 Lifetime Full Access Membership click here (One time fee)https://www.regnow.com/softsell/nph-softsell.cgi?item=30820-3

3COM CompTIA FilemakerADOBE ComputerAssociates FortinetAPC CWNP FoundryApple DELL FujitsuBEA ECCouncil GuidanceSoftwareBICSI EMC HDICheckPoint Enterasys HitachiCisco ExamExpress HPCitrix Exin HuaweiCIW ExtremeNetworks Hyperionand many others.. See complete list Here

IBMIISFAIntelISACAISC2ISEBISMJuniperLegatoLotus

LPIMcAfeeMcDataMicrosoftMile2NetworkApplianceNetwork-GeneralNokiaNortelNovell

OMGOraclePMIPolycomRedHatSairSASInstituteSCPSee-BeyondSNIA

SunSybaseSymantecTeraDataTIATibcoTruSecureVeritasVmware