what models are available for event handling?
Answer / niranjanravi
EventDelegation and Eventinheritance maodel.EventDelegation
model is more advantageous than EventInheritance model.
| Is This Answer Correct ? | 2 Yes | 0 No |
What is wrapper class example?
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(); } }
Can a for statement loop indefinitely?
what do you meant by Runtime Polymorphism?
13 Answers BVIMR, IBM, Persistent,
Difference between Reader/Writer and InputStream/Output Stream?
9 Answers Adobe, Kirusa, Verizon,
How can you traverse a linked list in java?
How many methods does cloneable interface contains?
Why is method overloading not possible by changing the return type in java?
How do you compare characters in java?
Difference between interface and abstract class with ex.
4 Answers Cognizant, Tech Mahindra,
if i have one string class then how can you achive this class functionality of this class?
How to read and write image from a file ?