Why does it take so much time to access an applet having swing components the first time?
No Answer is Posted For this Question
Be the First to Post Answer
What is a static method in java?
What is are packages?
what is template design pattern?
Are constructors methods?
Should you use singleton pattern?
Can static methods access instance variables in java?
java can provide security ,how can provide?
8 Answers Aspire, BNP Paribas, Genpact, IBM,
what r advatages of websphere? & how to deploy?
Why method overriding is used?
what is the output??????? public class multireturn { public(int assign x ( int x) { if(4==x) { return 7; } else if (7=x+3) { return 6; } return 5; } }
Can we create our own daemon thread?
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;