Computer Science, asked by indraneilbhatnagar, 1 year ago

What do you understand by the term concatenation

Answers

Answered by RoyalqueenRiya
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 sushiladevi4418
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