Does hashset allow duplicates in java?
No Answer is Posted For this Question
Be the First to Post Answer
How many bits are allocated to represent character of character sets - Unicode, ASCII, UTF-16, UTF-8?
Variable of the boolean type is automatically initialized as?
Can list contain null in java?
how to print hello world every second till i have pressed enter key ???
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(); } }
Can string be considered as a keyword?
Explain methods specific to list interface?
Explain about interrupt() method of thread class ?
What are the Static and Dynamic Variables? Differentiate them.
What is the difference between a scrollbar and a scrollpane?
what is the diff b/w arraylist and vector?
6 Answers Code Genesis, Genesis, Sprintine Labs,
What is the difference between throw and throws?