What is variable length arguments in java?


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

Post New Answer

More Core Java Interview Questions

Describe the various concepts related to object oriented programming (oop).

0 Answers  


What is the concept of multithreading?

0 Answers  


what is deadlock in threads? with example

2 Answers   CTS, XOXO,


How do I enable java in safari?

0 Answers  


Given: 10. interface A { void x(); } 11. class B implements A { public void x() { } public voidy() { } } 12. class C extends B { public void x() {} } And: 20. java.util.List list = new java.util.ArrayList(); 21. list.add(new B()); 22. list.add(new C()); 23. for (A a:list) { 24. a.x(); 25. a.y();; 26. } What is the result? 1 Compilation fails because of an error in line 25. 2 The code runs with no output. 3 An exception is thrown at runtime. 4 Compilation fails because of an error in line 20.

3 Answers  






What are the two ways you can synchronize a block of code?

5 Answers   Ericsson,


Which programming language is best in future?

0 Answers  


How will you initialize an Applet?

0 Answers  


How many bits are used to represent unicode, ascii, utf-16, and utf-8 characters in java programming?

0 Answers  


What is anti pattern in java?

0 Answers  


How can you eliminate duplicates?

2 Answers  


What is the purpose of a parameter?

0 Answers  


Categories