Sunday, September 05, 2010    
Home My Books Blog ColdFusion About Me Back    

 • Adobe ColdFusion 9 Web Application Construction Kit, Volume 1: Getting Started

 • Adobe ColdFusion 9 Web Application Construction Kit, Volume 2: Application Development

 • Adobe ColdFusion 9 Web Application Construction Kit, Volume 3: Advanced Application Development

 • Macromedia ColdFusion MX7 Certified Developer Study Guide

 • MySQL Crash Course

 • Sams Teach Yourself Microsoft SQL Server T-SQL In 10 Minutes

 • Sams Teach Yourself Regular Expressions in 10 Minutes

 • Sams Teach Yourself SQL in 10 Minutes - Third Edition

Join my mailing list and find out about new books and other topics of interest.

ColdFusion MX7 Certified Developer Exam
Question 1 of 30

Why will the following code fail? (select 2)
<cfset a = ArrayNew(1)>
<cfset ArrayResize(a, 400)>
<cfset LoopUntil = ArrayLen(a)>
<cfloop from="1" to="#LoopUntil#" index="i">
 <cfset ArrayDelete(a, i)>
</cfloop>
<cfset> requires an equals sign.
The loop will go past the array’s length.
The index passed to ArrayDelete() will be invalid.
An array must be resized to a size greater than 500.

  © Copyright 1997-2009 Ben Forta, All Rights Reserved