Exam NetSuite ERP Consultant All QuestionsBrowse all questions from this exam
Question 42

Which search expression would yield abctestdrive?

    Correct Answer: B

    The correct search expression to yield 'abctestdrive' is 'abc'||'test'||'drive'. Option A, using CONCAT, would separate the inputs with spaces, and option D is incorrectly formatted. Option C would not form a single concatenated string but rather a list of values.

Discussion
AlisaSokOption: A

Answer is A

testtaker6472

no, it is not.

QamarToumaOption: B

A. CONCAT ('abc', 'test', 'drive') This would output: "abc test drive" B. 'abc'||'test'||'drive' This would output: "abctestdrive" C. abc, test, drive This would not yield a single string, but rather a comma-separated list of three individual values. D. CONCAT ('abc''test''drive') This would output: "abc'test'drive"