How do you sort a set in java?
No Answer is Posted For this Question
Be the First to Post Answer
10. class Nav{ 11. public enum Direction { NORTH, SOUTH, EAST, WEST } 12. } 13. public class Sprite{ 14. // insert code here 15. } Which code, inserted at line 14, allows the Sprite class to compile? a)Direction d = NORTH; b)Nav.Direction d = NORTH; c)Direction d = Direction.NORTH; d)Nav.Direction d = Nav.Direction.NORTH;
What is use of a abstract variable?
In java, how many ways you can take input from the console?
Inorder to specify a container?s layout, which method is used?
What is int argc char * argv?
Which way a developer should use for creating thread, i.e. Sub classing thread or implementing runnable.
which one the better thread emplemented thread or extended ?
How GUI component handle its own events?
Can constructor be static or final?
How much is a java license?
What is the use of toarray () in java?
What is ternary operator?