Multiple choice technology testing

What does the ChildObjects method return?

  1. A collection object

  2. A string true/false

  3. Number of objects matching the description

  4. Boolean True/False

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The ChildObjects method returns a collection object containing all child objects matching the description properties you specify. It returns a Collection object (not a simple count or boolean), which you can then iterate through using .Count and .Item(index). This is essential for dynamic object handling when you don't know exactly how many objects exist.