Google News
logo
Perl - Quiz(MCQ)
Which of the following method joins the separate strings of LIST into a single string with fields separated by the value of EXPR, and returns the string?
A)
join EXPR, LIST
B)
sort EXPR, LIST
C)
split EXPR, LIST
D)
splice EXPR, LIST

Correct Answer :   join EXPR, LIST


Explanation : This function joins the separate strings of LIST into a single string with fields separated by the value of EXPR, and returns the string.

Advertisement