Where is cached content saved by the
A. on the server hard disk
B. in the browser cache
C. in server memory
D. in a server-side database
What is the order of precedence (greatest to least) for execution of the
A. onError, cftry, cferror
B.
C.
D.
Click the Exhibit button.
The table person contains the data shown in the exhibit. You have issued the following query:
select *
from person
where lastname like
Which ColdFusion expression safely parameterizes the query to return all records that have lastnames starting with data input to a form field (form.search)?
A.
B.
C.
D.
You are utilizing ORM in ColdFusion 9.
Which tag should you use to map table fields to variables of the component?
A. cfsetting
B. cfproperty
C. cfargument
D. cfmapping
To which value should the access attribute of a CFC function be set, so the function is available only to CFCs in the same physical folder?
A. private
B. package
C. public
D. local
What is the correct syntax for a CFC function declared within a
A. function myFunction() returntype="struct" { return structNew(); }
B. function myFunct():struct { return structNew(); }
C. function struct myFunction() { return structNew(); }
D. function myFunction() { return structNew(); }
You are using cfinvoke.
Which property allows you to specify the URL of the WSDL file you want to consume?
A. method
B. WSDL
C. URL
D. webservice
Your application needs to consume an RSS feed hosted on another server.
You are using cfhttp.
Which property allows you to specify the address of the remote file?
A. url
B. address
C. server
D. destination
Given the following statement:
Where is cached content saved by the
A. on the server hard disk
B. in the browser cache
C. in server memory
D. in a server-side database