What is Concatenation | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

What is Concatenation

9th Feb 2017, 2:46 AM
Joshua Gaspar
Joshua Gaspar - avatar
5 Answers
+ 8
Concatenation is when you put things together, so in Python for example, when you add strings together, you concatenate them: x = "hello " y = "world" print(x + y) output: hello world This only works with strings and not with numbers, unless the number is a string
9th Feb 2017, 3:02 AM
Aeedoom Aeedad
Aeedoom Aeedad - avatar
+ 6
concatenation:any language involves merging/combining strings. # python >>print('red'+'yellow') redyellow
3rd Nov 2017, 4:01 AM
Shwetha
Shwetha - avatar
+ 2
thanks
9th Feb 2017, 11:25 AM
Joshua Gaspar
Joshua Gaspar - avatar
+ 2
Concatenation means combination of two or more string in a single string ... in java use + operator for concatenate any string and also use concat () Inbuilt method of string class in java //by using concat method class Demo{ public static void main(String args[]){ String s1="Ganesh "; String s2="Apune"; String s3=s1.concat(s2); System.out.println(s3);// } } //by using + class Demo{ public static void main(String args[]){ String s1="Ganesh "; String s2="Apune"; String s3=s1+s2; System.out.println(s3); } } output is same:- Ganesh Apune
19th Dec 2017, 6:55 AM
Ganesh pandurang apune
Ganesh pandurang apune - avatar
0
We can say that concatenation is merging of two strings, in which second string is placed at end of first string.
16th Dec 2017, 7:57 AM
Malhar Naiya
Malhar Naiya - avatar