Want to pass your Adobe ColdFusion 9 ACE Exam 9A0-127 exam in the very first attempt? Try Pass2lead! It is equally effective for both starters and IT professionals.
VCE
You are using
A. in the folder containing the file with the currently executing code
B. in the CustomTags folder under the ColdFusion installation folder
C. in a mapped directory
D. in the first custom tag path folder as configured in ColdFusion Administrator
Which declaration of the variable columnmap results in the successful output of an RSS feed?
qdata = querynew("name,description,url");
queryaddrow(qdata,3);
querysetcell(qdata,"name","Larry",1);
querysetcell(qdata,"description","Larry was the middle stooge",1);
querysetcell(qdata,"url","http://www.larryfine.com",1);
querysetcell(qdata,"name","Moe",2);
querysetcell(qdata,"description","Moe was the leader",2);
querysetcell(qdata,"url","http://en.wikipedia.org/wiki/Moe_Howard",2);
querysetcell(qdata,"name","Curly",3);
querysetcell(qdata,"description","Curly is everyone's favorite",3);
querysetcell(qdata,"url","http://stoogeworld.com/_Biographies/Curly.htm",3);
query="#qdata#" xmlvar="xRSS" columnmap="#columnmap#" properties="#properties#"> A. B. C. D.
Given the following statement: