In the below code segment, the salary item that is with the red font color represents

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter10: Introduction To Inheritance
Section: Chapter Questions
Problem 13RQ
icon
Related questions
Question

In the below code segment, the salary item that is with the red font color represents:

class Employee
{
private int age, salary;
public int Age
{
get { return age; }
}
public int Salary
{
get { return salary; }
set { salary = value; }
}
public Employee()
{
age = 3;
%3D
salary = 1000;
}
public Employee(int a, int b)
{
age = a;
salary = b;
}
}
О а. Object
O b. Property
Ос.
Field
O d. constructor
Transcribed Image Text:class Employee { private int age, salary; public int Age { get { return age; } } public int Salary { get { return salary; } set { salary = value; } } public Employee() { age = 3; %3D salary = 1000; } public Employee(int a, int b) { age = a; salary = b; } } О а. Object O b. Property Ос. Field O d. constructor
Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Accessibility feature of Form
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT