What are memory tables?
No Answer is Posted For this Question
Be the First to Post Answer
Is void a wrapper class?
How do you avoid global variables?
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(); } }
Give me an example of array and linked list? Where they can be used?
What are classloaders?
what is an objects lock and which objects have locks? : Java thread
How can we create a synchronized collection from given collection?
Why singleton is not thread safe?
What is unicode full form?
What for read() function?
Explain about main thread in java?
There are two classes named classa and classb. Both classes are in the same package. Can a private member of classa can be accessed by an object of classb?