Name the methods in mouse listeners ?
Answers were Sorted based on User's Feedback
Answer / jack
mouse pressed
mouse exited
mouse entered
mouse released
mouse clicked
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / ravikiran(aptech mumbai)
mouseclick
mousedoubleclick
mouseover
mousepressed
mousereleased
| Is This Answer Correct ? | 5 Yes | 4 No |
Answer / a srinivas rao
methods in mouse listener are nothing but what actions that
can be performed through a mouse.for example the following
are the actions we can perform i..e..,
-mouseclick
-mousedoubleclick
| Is This Answer Correct ? | 0 Yes | 1 No |
Java run-time system generates What class of exceptions?
what is the difference between preemptive scheduling and time slicing? : Java thread
What is a J2EE component? List out all the component?
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.
What are non-access modifiers?
What is generic class?
Which data type is a class in java?
Explain why wait(), notify() and notifyall() methods are in object class rather than in thread class?
What is a “stateless” protocol ?
What is the main purpose of java?
Why do we need to override equals() and hascode() method of object class?
What is the purpose of stub and skeleton?