What does `static int x;` imply?
Q1. What does `static int x;` imply?
Answer: x retains its value between function calls
Explanation: Static variables retain their values between function calls, initialized only once. NET computer science MCQs often test this core concept.