DEV Community

hema latha
hema latha

Posted on

Assignment

1) Create a Class named “Trainer”.
– Have default instance variables String dept, institute
– Have private instance variable int salary
– Assign 10000 as value for salary.
– Create getter method for salary.
– Assign values – “Java”, “Payilagam” to them
– Have instance method training() with void as return data type
– Add a print statement inside training() method
– Have instance named as ‘trainerKumar’ and pass “CSE”, “payilagam” as arguments to it.
– Handle above line with matching Constructor.

2) Create a sub class “SQLTrainer” under “Trainer”.
– Have main method in it.
– Create instance ram for this class
– Handle with proper super class constructor
– Access parent class instance variables
– Call parent class instance method training()
– Access salary using getter method in parent class

program---

package task;

public class Trainer {
String dept; String institute;

private int salary = 10000;
public Trainer(String dept,String institute)
    {
        this.dept=dept;
        this.institute=institute;
    }
public static void main(String[] args) {
Trainer trainerkumar = new Trainer("CSE","payilagam");
}

public int getSalary() {
return salary;
}
public void training()
{
    System.out.println("department"+" "+dept+"   institute"+" "+institute);
}
Enter fullscreen mode Exit fullscreen mode

}

package task;

public class SQLtrainer extends Trainer
{

public SQLtrainer(String dept, String institute) {
    super(dept, institute);
    // TODO Auto-generated constructor stub
}

public static void main(String[] args) 
{
    // TODO Auto-generated method stub
    SQLtrainer ram = new SQLtrainer("CSE","payilagam");
    ram.training();
    int salary = ram.getSalary();
    System.out.println(salary);
}
Enter fullscreen mode Exit fullscreen mode

}

Image of Timescale

PostgreSQL for Agentic AI — Build Autonomous Apps on One Stack

pgai turns PostgreSQL into an AI-native database for building RAG pipelines and intelligent agents. Run vector search, embeddings, and LLMs—all in SQL

Build Today

Top comments (0)

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more

👋 Kindness is contagious

Explore a trove of insights in this engaging article, celebrated within our welcoming DEV Community. Developers from every background are invited to join and enhance our shared wisdom.

A genuine "thank you" can truly uplift someone’s day. Feel free to express your gratitude in the comments below!

On DEV, our collective exchange of knowledge lightens the road ahead and strengthens our community bonds. Found something valuable here? A small thank you to the author can make a big difference.

Okay