COMPUTER PROGRAMMING FUNDAMENTALS
WHAT IS PROGRAMMING
Question
[CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
|
What is the name for joining two or more strings together?
|
function
|
|
casting
|
|
concatenation
|
|
validation
|
Explanation:
Detailed explanation-1: -Concatenation is the process of appending one string to the end of another string. You concatenate strings by using the + operator. For string literals and string constants, concatenation occurs at compile time; no run-time concatenation occurs.
Detailed explanation-2: -Use CONCATENATE, one of the text functions, to join two or more text strings into one string.
Detailed explanation-3: -C++ ‘+’ operator for String Concatenation C++ ‘+’ operator can be used to concatenate two strings easily.
Detailed explanation-4: -The ampersand symbol is the recommended concatenation operator. It is used to bind a number of string variables together, creating one string from two or more individual strings.
There is 1 question to complete.