What do you understand by the term concatenation
Answers
Answered by
18
Answer:
concatenation, in the context of programming is the operation of joining two strings together.The term "concatenation" literally means to merge two things together...
Answered by
6
Answer:
In Computer Science, The term Concatenation describes the combination of strings, text, or other data in a series without any gaps.
Explanation:
For example :
In programming languages, the operator "+" denotes concatenation.
Python concatenation :
print("Hello" + "World")
Output :
Hello World
Similar questions