What is wrong with this function?

```int[] WriteNumbers(int numbers [ ] )
{
for(int I =0; I < 5; ++I)
cout< return numbers;
}```
A. int numbers[] needs the size of the array.
B. There are no spaces between the <<
C. I is capitalized as a variable.
D. An array cannot be returned from a function.

D

Computer Science & Information Technology

You might also like to view...

A transform can be applied to any UI element to reposition or reorient the graphic. Which of the following statements about transforms is false?

a) A RotateTransform, rotates an object around a point by a specified rotation angle. b) A ScaleTransform scales the object along the x-axis and y-axis. c) A SkewTransform skews (or shears) the object. d) You can apply only one transform to a control.

Computer Science & Information Technology

?The white-space property of an element is set to _________, which keeps inline content on a single line, preventing line wrapping.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology