Multiple choice technology web technology

Please select all options that are correct about Event Processing in zk ?

  1. When an event is fired, it is associated with a desktop

  2. ZK separates events by their associated desktops

  3. Events for different desktops are not processed in parallel

  4. An Event cannot access components belonging to other desktops

Reveal answer Fill a bubble to check yourself
A,B,D Correct answer
Explanation

In ZK, each event is associated with a desktop (user session), and ZK separates events by desktop for isolation. Events for different desktops can be processed in parallel (option C is false). Components in one desktop cannot be accessed from events in another desktop, maintaining session isolation.