Wha is the output from system.out.println(“hello”+null); ?
No Answer is Posted For this Question
Be the First to Post Answer
Is hashmap thread safe?
Is a method a function?
Static Variable can referred in non-static method?
What is java virtual machine and how it is considered in context of java’s platform independent feature?
How do you define a singleton class?
What is the symbol for average?
What is scope of a variable?
what is the use of clone method? why user cant overwrite in sub class without its proper defination.
State some advantages of java?
Hi can u pls tell me what is the use of marker interface. Iknow what is marker interface but what ability will the object get by implementing this.
I have a class which is abstract which contains only the abstract methods. This is similar to an interface. Then, if i have given a choice to choose one of them. Which one i have to choose and why?
Hi Every One I Have Small Doubt Please answer This???????????????????????????? I Want to use AbstractList class methods(java.util.AbstractList) My Program is import java.util.*; class DemoOne extends AbstractList { public static void main(String[] args) { AbstractList a=new DemoOne();//This One is Correct?? DemoOne a1=new DemoOne();//This One is Correct?? Both Are Not Working System.out.println("Hello World!"+a); System.out.println("Hello World!"+a1); } } Error IS: DemoOne.java:2: DemoOne is not abstract and does not override abstract method get(int) in java.util.AbstractList class DemoOne extends AbstractList AnyOne can Please Provide The Solution????????????????????????? Plzzzzzzz