Multiple choice asp.net

What is the first method that is fired during page load among these methods?

  1. PreRender

  2. Init

  3. Load

  4. Unload

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

In ASP.NET WebForms lifecycle, Init fires first (called when page is initialized), followed by Load, PreRender, and finally Unload. Init is the earliest event in the provided list, occurring before view state is loaded and before controls are populated.