Is string a class in java?
No Answer is Posted For this Question
Be the First to Post Answer
What is finalize()? Is finalize() similar to a destructor?
write java code to print second max number in the array
how to make hashmap object as synchronized object?
Is it possible to write JAVA program without including any of the packages,such as "import java.io.*"; bcoz I instantly wrote a code without "import..." statement and runned the program on command Line & it worked. the code is: class Person { String name; int age; Person(String s,int a) { name = s; age = a; } accept() { System.out.println(name+"Hi!!!!!"); System.out.println(age); } } class Demo { public static void main(Strings args[])throws IOException { String name = args[0]; int age = Integer.parseInt(args[1]); Person p = new Person(name,age); p.accept(); } }
How does indexof work?
What is the largest data type in java?
What is OOP?
What is meant by packages?
Explain oops concepts in detail?
What is hashmap and map?
What is casting?
what is the JNDI?