Which of the tasks is the Join function used to carry out in the following statement? Dim line As String line = Join(strArrData, ",")Which of the tasks is the Join function used to carry out in the following statement?

```Dim line As String
line = Join(strArrData, ",")
```
(A) Join concatenates the values of all elements of the array strArrData, and adds a comma
delimiter between successive values.
(B) Join concatenates the values of all elements of line, and adds a comma to the end of the
line.
(C) Join parses or separates out all items of text that are delimited by a comma in
strArrData.
(D) Join parses or separates out all items of text that are delimited by a comma in line.

(A) Join concatenates the values of all elements of the array strArrData, and adds a comma
delimiter between successive values.

Computer Science & Information Technology

You might also like to view...

Microsoft PowerPoint and Apple Keynote are examples of ________ software

Fill in the blank(s) with correct word

Computer Science & Information Technology

The == symbol is referred to as the ______ operator.?

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

Computer Science & Information Technology