NetSuite ERP Consultant Exam QuestionsBrowse all questions from this exam

NetSuite ERP Consultant Exam - Question 42


Which search expression would yield abctestdrive?

Show Answer
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

2 comments
Sign in to comment
AlisaSokOption: A
May 10, 2023

Answer is A

testtaker6472
May 15, 2023

no, it is not.

QamarToumaOption: B
Jul 8, 2024

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"