how we can write the string concatenation program in java.
Answer Posted / kandavel
class conc
{
public static void main(String args[])
{
String a="kanda",b="Vel",c;
c=a+b;
System.out.println(" Concat String :"+c);
}}
//This program must save the file name is conc.java
| Is This Answer Correct ? | 17 Yes | 0 No |
Post New Answer View All Answers
Explain the scope or life time of class variables or static variables?
What is the meaning of find and replace?
What is :: operator in java 8?
What does int argc char * argv [] mean?
What is fail first in java?
Can we override the private methods?
Explain about narrowing conversion in java?
Explain the difference between an Interface and an Abstract class?
What is the final method?
Why is String immutable?
How many digits is int32?
What are thread groups?
What is the difference between variable & constant?
What is bufferedwriter?
Why is logger singleton?