Practice Free AD0-P101 Exam Online Questions
Which ColdFusion tag is used to manipulate existing PDF documents?
- A . <cfpdfaction>
- B . <cfdocumentaction>
- C . <cfpdf>
- D . <cfpdfedit>
During debugging, a variable isn’t accessible outside a function.
What is the likely cause?
- A . The variable wasn’t defined globally.
- B . The variable was cached.
- C . The variable scope is local.
- D . The variable uses incorrect syntax.
Which tag in ColdFusion can convert HTML content to PDF?
- A . <cfpdf>
- B . <cfconvert>
- C . <cfdocument>
- D . <cfhtml2pdf>
What are valid types of content that can be converted to PDF using <cfdocument>? (Choose 3)
- A . HTML
- B . Plain Text
- C . JSON
- D . XML
- E . RTF
What is the correct syntax to define an ORM data object in ColdFusion?
- A . <cfcomponent persistent="true"></cfcomponent>
- B . <cfclass orm="true"></cfclass>
- C . <cfdataobject orm="enable"></cfdataobject>
- D . <cfobject orm="persistent"></cfobject>
What attribute of <cfdocument> is used to specify the document type as PDF?
- A . type="html"
- B . format="pdf"
- C . output="pdf"
- D . filetype="pdf"
Which ColdFusion tag is commonly used to include reusable code blocks from other files?
- A . <cfmodule>
- B . <cfinclude>
- C . <cfcomponent>
- D . <cfset>
What are valid attributes of the <cfloop> tag? (Choose 3)
- A . from
- B . to
- C . index
- D . start
- E . end
How can you dynamically generate charts in ColdFusion?
- A . Using <cfchart>
- B . Using <cfoutput>
- C . Using <cfimage>
- D . Using <cfgraph>
A developer wants to ensure a method is accessible only within components in the same package.
What is the appropriate access modifier in ColdFusion?
- A . public
- B . private
- C . package
- D . static
