You can concatenate String objects by using the __________.

a. concat or trim methods
b. concat method or the + operator
c. concatenate or join methods
d. concatenate method or the + operator


b. concat method or the + operator

Computer Science & Information Technology

You might also like to view...

Hyperlinks cannot link to anything other than Web pages

Indicate whether the statement is true or false

Computer Science & Information Technology

What numbers are displayed in the list box by the following program segment?

``` Dim numbers() As Integer = {4, 7, 9, 3, 1, 7, 7} Dim query = From number in numbers Where number > 6 Select number Distinct lstBox.Items.Add(query.Count) lstBox.Items.Add(query.Average) ``` (A) 5 and 12 (B) 2 and 12 (C) 2 and 8 (D) 5 and

Computer Science & Information Technology