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 OOPs concept.
Is null keyword in java?
What about features of local inner class?
How do you replace all in word?
Can we have more than one package statement in source file ?
Can we override final method?
Which category the java thread do fall in?
why would you use a synchronized block vs. Synchronized method? : Java thread
Can a class extend more than one class?
What is ide with example?
What do you mean by platform independence?
What is the difference between ArrayList and Vector? which one is better in Java
How will you load a specific locale?
What is bigger kb or mb?
Why is multiple inheritance not supported in java?