Question: Consider the following class declaration: public class StudentID { private static int studentNum = 0; public StudentID() { studentNum++; /* Other implementation not shown */

Consider the following class declaration: public class StudentID { private static int studentNum = 0; public StudentID() { studentNum++; /* Other implementation not shown */ What will be the value of studentNum as a result of the following code? StudentID a = new StudentID(); StudentID b = new StudentID(); 0 -1 0 0 O 2 O 3
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
