What is a class variable?
No Answer is Posted For this Question
Be the First to Post Answer
What does regex mean?
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(); } }
What are the 6 mandatory procedures for iso 9001?
why the abstract class has default constructor?
What are the differences between string and stringbuffer?
What are peerless components?
What does compareto () do in java?
How to compare strings in java?
What is the memory leak in java?
What is the difference between Java1.4 and Java1.5
Is null a keyword in java?
Explain hashset and its features?