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 std new Student (); The Student classi 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() { return name + " + address: ) } Write the answer without adding anything to it (such as leading or trailing text, = signs, ...). Write 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
