Multiple choice How can an array be passed as a function argument? By value By reference By name By passing all the values stored in the array The array cannot be used as a function argument Reveal answer Fill a bubble to check yourself B Correct answer Explanation While passing arrays to the argument, the name of the array is passed as an argument, i.e, starting address of memory area is passed as argument. Hence, an array is passed by reference.