Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Computer science QUESTION 9 Public Class Employee { public static int y: Private int age: Public Employee(){ age=0;} public int get_age() { return age;} }
Computer science
QUESTION 9 Public Class Employee { public static int y: Private int age: Public Employee(){ age=0;} public int get_age() { return age;} } Public Class Test{ public static void main(String[] args) { Employee q = new Employee(); q.y=2; Employee.y=10; System.out.println("y=" + q.y); } } a. What is the output of the following code? b. Insert a System.out.println() statement that prints out q's ageStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started