Question: What is the value stored in the static variable count of the Student (Student shown below) after executing this client fragment? Client fragment: Student stdA

What is the value stored in the static variable count of the Student (Student shown below) after executing this client fragment? Client fragment: Student stdA = new Student ("StudentA","AddressA"); Student stdB = stdA; Student stdC = new Student (); Student stdb = new Student (); The Student class: public class Student { private static int count = 0; String name; String address; public Student () { this ("NoName", "NoAddress"); } public Student (String name, string address) { this.name = name; this.address = address; count++; } public String toString() C return name + " + address, ) } Write the answer without adding anything to it (such as leading or trailing text. = signs, XXX in case of errors
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
