SUBJECTS
|
BROWSE
|
CAREER CENTER
|
POPULAR
|
JOIN
|
LOGIN
Business Skills
|
Soft Skills
|
Basic Literacy
|
Certifications
About
|
Help
|
Privacy
|
Terms
|
Email
Search
Test your basic knowledge |
Coldfusion
Start Test
Study First
Subject
:
it-skills
Instructions:
Answer 50 questions in 15 minutes.
If you are not ready to take this test, you can
study here
.
Match each statement with the correct term.
Don't refresh. All questions and answers are randomly picked and ordered every time you load a test.
This is a study tool. The 3 wrong answers for each question are randomly chosen from answers to other questions. So, you might find at times the answers obvious, but you will see it re-enforces your understanding as you take the test each time.
1. Invokes a component method from within a ColdFusion page or component - or invokes a web service.
<CFFUNCTION: ACCESS: PACKAGE>
<CFCOMPONENT: OUTPUT>
IsXmlElem()
<CFINVOKE>
2. Determines whether a string is well-formed XML text.
<CFCOMPONENT: OUTPUT>
IsXmlRoot()
<CFERROR:EXCEPTION>
IsXML()
3. Sets permissions on directories. It applies only to UNIX/LINUX OSes and is used when the ACTION attribute is set to CREATE.
TimeSpan()
<CFDIRECTORY: MODE >
onError()
URLEncodedFormat()
4. Any encountered error - including undeclared ones. Cannot include CFML tags - but you can display values of the error variables by enclosing them in number signs (#) - as in #error.MailTo#.
<CFFUNCTION>
URLEncodedFormat()
<CFERROR:REQUEST>
onError()
5. Used to incrementally output a CFML page request to the web browser before a CFML page is completely processed
GetFileInfo()
<CFFLUSH>
XMLChildPos()
ARGUMENTCOLLECTION
6. Determines whether a function parameter is an Extended Markup language (XML) document object. Returns true - if the function argument is an XML document object; False - otherwise.
<CFFUNCTION: ACCESS: PRIVATE>
XmlValidate()
<CFTRACE>
IsXmlDoc()
7. Runs when an uncaught exception occurs in the application. Use this method to handle errors in an application-specific manner. This method overrides any error handlers that you set in the ColdFusion Administrator or in cferror tags. It does not overr
onError()
XMLSearch()
XmlGetNodeType()
<CFCOMPONENT: OUTPUT>
8. Use this method for any clean-up activities that your application requires when it shuts down - such as saving data in memory to a database - or to log the application end to a file. You cannot use this method to display data on a user page - because
onApplicationEnd()
IsXmlRoot()
IsXmlElem()
TimeSpan()
9. Creates a date/time object that defines a time period. You can add or subtract it from other date/time objects and use it with the cachedwithin attribute of <CFQUERY>.
<CFLOG>
<CFCOMPONENT: OUTPUT>
CreateTimeSpan()
XmlFormat()
10. Executes a ColdFusion developer-specified process on a server computer.
<CFEXECUTE>
XmlTransform()
ToString()
IsSOAPRequest()
11. Determines the value associated with a key in a structure. Returns the value associated with a key in a structure; if structure does not exist - throws an exception.
<CFFUNCTION: ACCESS: PRIVATE>
onApplicationEnd()
StructFind()
IsXML()
12. Returns result values from a component method.
IsSOAPRequest()
URLEncodedFormat()
<CFRETURN>
ARGUMENTCOLLECTION
13. Uses an XPath language expression to search an XML document that is represented as a string variable. Returns an array of XML object nodes that match the search criteria.
XMLSearch()
XMLChildPos()
<CFLOG>
<CFERROR:VALIDATION>
14. Determines whether a directory exists. Returns Yes - if the specified directory exists; No - otherwise.
IsXmlRoot()
XmlGetNodeType()
DirectoryExists()
<CFMODULE>
15. Invokes a custom tag for use in ColdFusion application pages. This tag processes custom tag name conflicts
IsXML()
<CFMODULE>
<CFOBJECTCACHE>
XmlTransform()
16. Verifies the data type of a query parameter and - for DBMSs that support bind variables - enables ColdFusion to use bind variables in the SQL statement. Bind variable usage enhances performance when executing a <CFQUERY> statement multiple times. Thi
<CFQUERYPARAM>
IsXML()
<CFLOG>
HTMLEditFormat()
17. Available only to the component that declares the method and any components that extend the component in which it is defined
IsXmlDoc()
CreateTimeSpan()
<CFFUNCTION: ACCESS: PRIVATE>
HTMLCodeFormat()
18. Replaces special characters in a string with their HTML-escaped equivalents
HTMLEditFormat()
<CFEXIT>
XmlTransform()
<COLUMNMAP>
19. Available only to the component that declares the method - components that extend the component - or any other components in the package
<CFCACHE>
IsXmlDoc()
<CFFUNCTION: ACCESS: PACKAGE>
<CFCOMPONENT: OUTPUT>
20. Displays and logs debugging data about the state of an application at the time the tag executes. Tracks runtime logic flow - variable values - and execution time. Displays output at the end of the request or in the debugging section at the end of the
<CFTRACE>
StructFind()
DirectoryExists()
XmlGetNodeType()
21. Attribute of the <CFINVOKE> that allows you to pass parameters to web services. Name of a structure; associative array of arguments to pass to the method.
ARGUMENTCOLLECTION
<CFLOG>
<CFMODULE>
GetFileInfo()
22. Creates an XML document object.
<CFLOG>
IsXmlElem()
<CFEXECUTE>
XmlNew()
23. Returns the filename - path - parent directory - type - size - when the file was most recently modified - whether the file has read permission - write permission - and if it is hidden?
GetFileInfo()
XMLParse()
<CFRETURN>
<CFERROR:REQUEST>
24. Creates a ColdFusion object - of a specified type
<CFFUNCTION: ACCESS: PACKAGE>
<CFOBJECT>
<CFEXIT>
HTMLCodeFormat()
25. Converts an XML document that is represented as a string variable into an XML document object.
<CFMODULE>
<CFERROR:EXCEPTION>
XMLParse()
ARGUMENTCOLLECTION
26. Available to a locally or remotely executing page or component method - or a remote client through a URL - Flash - or a web service. To publish the function as a web service - this option is required.
<CFMODULE>
<CFOBJECT>
<CFFUNCTION: ACCESS: REMOTE>
IsXmlRoot()
27. Applies an XSLT to an XML document object that is represented as a string variable. An XSLT converts an XML document to another format or representation by applying an XSL stylesheet to it. Returns a string; an XML document after the XSLT is applied.
<CFFUNCTION: ACCESS: PUBLIC>
XmlFormat()
IsXmlAttribute()
XmlTransform()
28. Serializes and deserializes CFML data structures to the XML-based WDDX format. The WDDX is an XML vocabulary for describing complex data structures in a standard - generic way. Implementing it lets you use the HTTP protocol to such information among
<CFMODULE>
<CFRETURN>
XMLChildPos()
<CFWDDX>
29. An exception of the type specified by the exception attribute. Uses the full range of CFML tags. Error variables must be in cfoutput tags.
<CFABORT>
<CFLOG>
<CFERROR:EXCEPTION>
<CFCOMPONENT: EXTENDS>
30. Creates a date/time object that defines a time period. You can add or subtract it from other date/time objects and use it with the cached within attribute of <CFQUERY>.
<CFWDDX>
<CFOBJECTCACHE>
<CFCACHE>
TimeSpan()
31. Attribute of the <CFFEED> tag is used only for the create action with a query attribute. It is a structure that specifies a mapping between the names of the columns in the object specified by the query attribute and the columns of the ColdFusion feed
<COLUMNMAP>
<CFQUERYPARAM>
<CFOBJECT>
<CFFUNCTION: ACCESS: PACKAGE>
32. Determines whether a function parameter is the root element of an XML document object. Returns true - if the function argument is the root object of an XML document object; False - otherwise
ARGUMENTCOLLECTION
IsSOAPRequest()
<CFFUNCTION: ACCESS: REMOTE>
IsXmlRoot()
33. Determines whether the function parameter is an XML Document Object Model (DOM) attribute node. Returns true - if the function argument is an XML attribute node - otherwise returns false.
IsXmlAttribute()
HTMLEditFormat()
<CFFLUSH>
<CFCOMPONENT: EXTENDS>
34. Converts a value to a string. ColdFusion has the ability to convert an XML document object to a string by using this function.
<CFOBJECTCACHE>
ToString()
<CFLOG>
<CFOBJECT>
35. Creates an XML document object element. Returns an XML document object element. The other choices are not valid ColdFusion functions.
GetFileInfo()
XmlElemNew()
<CFOBJECTCACHE>
<CFTRACE>
36. Runs at the beginning of the request. It is useful for user authorization (login handling) - and for request-specific variable initialization - such as gathering performance statistics.
<CFFUNCTION: ACCESS: PUBLIC>
<CFEXECUTE>
<CFABORT>
OnRequestStart()
37. Determines whether a function parameter is an XML document object element. Returns true - if the function argument is an XML document object element; False - otherwise.
<CFDIRECTORY: MODE >
<CFINVOKE>
IsXmlElem()
<CFCOMPONENT: OUTPUT>
38. Invokes a custom tag for use in ColdFusion application pages. Used to avoid custom tag name conflicts
HTMLCodeFormat()
TimeSpan()
<CFWDDX>
<CFMODULE>
39. Available to a locally executing page or component method
XMLChildPos()
<CFFUNCTION: ACCESS: PUBLIC>
XmlGetNodeType()
XMLSearch()
40. Gets the position of a child element within an XML document object
XMLChildPos()
<CFMODULE>
<CFFLUSH>
onApplicationEnd()
41. Writes a message to a log file
<CFQUERYPARAM>
XmlFormat()
DirectoryExists()
<CFLOG>
42. Flushes the query cache
<CFCACHE>
<CFOBJECTCACHE>
<CFERROR:REQUEST>
XmlFormat()
43. Determines the type of an XML document object node. Returns a string identifying the XML node type
XmlGetNodeType()
onApplicationEnd()
XMLChildPos()
StructFind()
44. Will stop execution of the entire page and not return control back to the calling page.
<CFFLUSH>
<CFABORT>
<CFOBJECTCACHE>
URLEncodedFormat()
45. Generates a URL-encoded string. For example - it replaces spaces with %20 - and non-alphanumeric characters with equivalent hexadecimal escape sequences.
URLEncodedFormat()
HTMLEditFormat()
<CFCACHE>
<CFFLUSH>
46. Errors recognized by server-side type validation. Cannot include CFML tags - but you can display values of the error variables by enclosing them in number signs (#) - as in #Error.InvalidFields#.
<CFQUERYPARAM>
HTMLCodeFormat()
<CFERROR:VALIDATION>
XMLParse()
47. Stores a copy of a page on the server and/or client computer - to improve page rendering performance. To do this - the tag creates temporary files that contain the static HTML returned from a ColdFusion page. Use this tag if it is not necessary to ge
<CFCACHE>
ARGUMENTCOLLECTION
IsXML()
URLEncodedFormat()
48. This tag aborts processing of the currently executing CFML custom tag - exits the page within the currently executing CFML custom tag - or re-executes a section of code within the currently executing CFML custom tag
<CFDIRECTORY: MODE >
<CFFUNCTION: ACCESS: PACKAGE>
<CFEXIT>
<CFFUNCTION>
49. Defines a function that you can call in CFML. Required to defined ColdFusion component methods.
<CFEXIT>
IsXML()
XmlFormat()
<CFFUNCTION>
50. Escapes special XML characters in a string - so that the string is safe to use with XML.
<CFCOMPONENT: OUTPUT>
XmlFormat()
XmlNew()
<CFQUERYPARAM>