✏️ Explanatory Question Give the output of the following method: public static void main (String [] args){ int a = 5; a++; System.out.println(a); a -= (a--) - (--a); System.out.println(a);} 👁 112 Views 📘 Detailed Answer 🟢 Easy 🔗 Share