___ function is used for joining lists.

___ function is used for joining lists. Correct Answer join

The join function acts in an opposite manner to split. It combines its arguments into a single string and uses the delimiter as the first argument. For example, $weekstr = join( “ “, @week_arr) ; @weekstr = join(“ “, “mon”, “tue”, “wed”); print $weekstr ; // output will be mon, tue, wed

Related Questions

The letters P, Q, R, S, T and U are to be placed one per vertex on a regular convex hexagon, but not necessarily in the same order. Consider the following statements: The line segment joining R and S is longer than the line segment joining P and Q. The line segment joining R and S is perpendicular to the line segment joining P and Q. The line segment joining R and U is parallel to the line segment joining T and Q. Based on the above statements, which one of the following options is CORRECT?