If it was meant as: FOR [the first object in an array] to the 10th [last object in an array + 1], then for(i = 0; i < 10; i++) would make sense.
If it meant: FOR 1 "TO" 10, then we don't actually use 10, but go up TO 10, thus "< 10" is the correct answer.
If it was a more elementary: FOR 1-10, then it would be assumed that the person wished for 10 objects to be addressed starting at "1", so <= 10 is the correct choice as 10 *should* be included
True, in BASIC you have the FOR var = a TO b syntax, in which a and b are inclusive.
"Certainly avoid yourself. He is a newbie and might not realize it. You'll hate his code deeply a few years down the road." - Sortie
[ My OS ] [ VDisk/SFS ]