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 meant by method overriding?
which pattern is default in scanner package?
What is meant by data hiding/encapsulation?
Can an object be null?
Explain about interthread communication and how it takes place in java?
What is the maximum length of a url?
What is difference between == equals () and compareto () method?
What are the differences between this and super keyword?
How does hashset work in java?
How many threads does a core java have?
What is a copy constructor in java?
Write a program to print the pattern given below
Is null a string?
Can you start a thread twice in Java?
What will be the output of round(3.7) and ceil(3.7)?