What is source and listener?
Answer / janet
Source: A source is an object that generates an event.this
occurs when the internal state of that object changes in
some way.
Listener: A listener is an object that is notified when an
event occurs.It has two major requirements First,it must
have been registered with one or more sources to receive
notifications about specific types of events.Second,it must
implement methods to receive and process these
notifications.
Is This Answer Correct ? | 3 Yes | 0 No |
int x=5,i=1,y=0; while(i<=5) { y=x++ + ++x; i=i+2; } System.out.println(x); System.out.println(y); System.out.println(i); How to solve this? Please explain!
What is preemptive and Non-preemptive Time Scheduling?
What is DTD?
Name three component subclasses that support painting?
What is codebase in applet?
What is a compilation unit?
Is infobus easy to use?
Can you control when passivation occurs?
What are the different methods of identifying an object?
How are the elements of a borderlayout organized?
How a component can be placed on Windows?
What is servlet preinitialization