a) drag
b) drop
c) dragstart
d) dragenter
Answer: b
Explanation: The drop event is fired on the element where the drop occurred at the end of the drag operation. A listener would be responsible for retrieving the data being dragged and inserting it at the drop location. Whenever user starts to drag an element, dragstart is fired. When draggable element enters a drop target then dragenter event is occurred. When element is being dragged, drag event is happened.
Related Posts
Garbage Collection can be controlled by a program?
Which of the below is not a memory leak solution?
Which of the below is not a Java Profiler?
What happens to the thread when garbage collection kicks off?
How to get prints of shared object memory maps or heap memory maps for a given process?
Which exception is thrown when java is out of memory?
What is -Xms and -Xmx while starting jvm?
Join The Discussion