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
What is java Applet?
What is output buffer?
What is lossy conversion in java?
Why is stringbuffer faster than string?
Why Do I Get A "permission Denied" Error After Downloading The .jnlp Java Launcher For The Vkvm?
Explain some best practices you would apply while using collection in java?
What does system.gc() and runtime.gc() methods do?
How to do encapsulation in java?
How objects of a class are created if no constructor is defined in the class?
Do I need java on my computer?
Differentiate between stringbuffer and string?
What is default exception handling in java?
What is tostring () method?
What is an array length?
Can a list be null in java?