Can you add null to a list java?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More Core Java Interview Questions

What is super in java?

0 Answers  


How the interruptible method gets implemented?

0 Answers  


how to print hello world every second till i have pressed enter key ???

1 Answers   SAP Labs,


How to create packages in java?

0 Answers  


What is a variable analysis?

0 Answers  






Is boolean a wrapper class in java?

0 Answers  


Explain about method local inner classes or local inner classes in java?

0 Answers  


Can you access the private method from outside the class?

0 Answers  


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(); } }

3 Answers  


What is json parser in java?

0 Answers  


In Inheritence concept, i have a static method in super class and i am inheriting that class to one sub class.in that case the static method is inherited to sub class or not????

12 Answers   Accenture,


What is entry set in java?

0 Answers  


Categories