- 0
Please help me to write the pseudocode of the following java program
-
Recently Browsing 0 members
- No registered users viewing this page.
-
Posts
-
By _neutrino · Posted
Im in Ohio, and my VPN endpoint is in Boston. If that helps, it does happen both on and off the VPN. and again only in Edge. -
By Elliot B. · Posted
It is such a shame. I used to really respect Neowin's articles. -
-
By +mram · Posted
So.... slower fixes and slower security updates are preferred? I mean, there is no goldilocks zone here until it can literally update without ever needing a restart, and even then I'm sure someone would complain. -
By News Staff · Posted
[New Deal] Save 73% on a lifetime EbookMagic Starter Plan by Steven Parker Today's highlighted Neowin Deal comes via our Apps + Software section, where you can get a lifetime subscription and save 73% on a lifetime EbookMagic Starter Plan. EbookMagic helps turn your ideas into complete, professionally formatted ebooks without spending weeks writing, editing or designing. Simply enter your title, genre and key details, and EbookMagic creates structured content, polished layouts and a custom cover in just minutes. Instead of juggling separate writing tools, formatting software and cover generators, EbookMagic handles the entire ebook creation process in one place. Generate content, customize your book and export ready-to-use files designed for publishing, sharing or personal projects. EbookMagic Lifetime gives aspiring authors, creators and entrepreneurs the flexibility to build, publish and scale projects over time without ongoing subscription fees. Whether you're building lead magnets, creating educational resources or starting your self-publishing journey, EbookMagic simplifies the process and helps bring ideas to life faster. AI-Powered Ebook Creation AI Writing Assistant: Transform prompts & ideas into complete ebook content. 12 Professional Writing Styles: Write using multiple styles and tones. Author Style Mimicking: Adapt content to preferred writing styles. Personalized Cover Generator: Produce custom ebook covers automatically. AI Audiobook Creator: Convert your books into professional-sounding audiobooks using a variety of realistic AI voices (1 audio book included). Built to Help You Create Faster Lightning Fast Creation: Build complete ebooks in minutes. Target Audience Optimization: Tailor content to specific demographics and reader preferences. Intelligent Chapter Structure: Automatically organize chapters and generate a table of contents. 15+ Genres Supported: Create fiction, non-fiction, business, romance, self-help and more. Quality Assurance: Improve readability and engagement with built-in content optimization. Convert to Interactive Books: Transform standard content into interactive experiences. 57 Major Languages Support: Produce ebooks across supported languages. Ready for Download & Publishing Ready for Sale: Create professional books that can be published and sold on Amazon KDP and other major publishing platforms Kindle & Print-Ready Formats: Export files prepared for publishing. No Watermarks: Create cleaner deliverables for publishing. Commercial Usage Rights: Sell or publish your ebooks. Built-In Editing Tools: Make edits before export. What You'll Get 5 Ebooks per month Each generated ebook can support up to 500,000 words per book. Up to 50 cover generations 12 professional writing styles Author style mimicking Personalized Cover Generator Convert to Interactive Books Multiple languages support Kindle & Print-ready formats Commercial usage rights No watermarks Good to know Length of access: Lifetime Redemption deadline: Redeem your code within 30 days of purchase Access options: Desktop and mobile Max number of devices: Up to 3 devices can be used per license. Available for both new and existing users that are not on lifetime plan. Updates included A lifetime subscription to EbookMagic Starter Plan normally costs $149, but this deal can be yours for just $39.99, that's a saving of $109. For full terms, specifications, and license info please click the link below. Get this EbookMagic Starter Plan lifetime deal for just $39.99 (was $149) Although priced in U.S. dollars, this deal is available for digital purchase worldwide. Support queries If you have queries or need support for any of the Neowin Deals, please use the contact form here. Neowin Deals are managed and sold by StackCommerce who represent Neowin on an affiliate basis. Why we post these deals We post these because we earn commission on each sale so as not to rely solely on advertising, which many of our readers block. It all helps toward paying staff reporters, servers and hosting costs. So for those that keep moaning and complaining, be thankful we're still online for you to even do that. Other ways to support Neowin Whitelist Neowin by not blocking our ads Create a free member account to see fewer ads Make a donation to support our day to day running costs Subscribe to Neowin - for $14 a year, or $28 a year for an ad-free experience Disclosure: Neowin benefits from revenue of each sale made through our branded deals site powered by StackCommerce.
-
-
Recent Achievements
-
Clizby earned a badge
One Month Later
-
Timaximus earned a badge
One Month Later
-
Timaximus earned a badge
Week One Done
-
FBSPL went up a rank
Rookie
-
davidbazooked earned a badge
First Post
-
-
Popular Contributors
-
Tell a friend
Question
gunjangunda
parent class
public class Developer
{
private String platform;
private String interviewerName;
private String developerName;
private int workingHour;
public Developer(String pf, String iName, int wHour){
String platform = pf;
String interviewerName = iName;
int workingHour = wHour;
String developerName = "";
}
public void setplatform(String pf){
platform=pf;
}
public void setinterviewerName(String iName){
interviewerName= iName;
}
public void setworkingHour(int wHour){
workingHour= wHour;
}
public void setdeveloperName(String dName){
developerName= dName;
}
public String getplatform(){
return platform;
}
public String getinterviewerName(){
return interviewerName;
}
public String getdeveloperName(){
return developerName;
}
public int getworkingHour(){
return workingHour;
}
public void display(){
System.out.println("The platform is "+platform);
System.out.println("The interviewer name is "+interviewerName);
System.out.println("The working hour is "+workingHour);
if(developerName!="")
System.out.println("The developer name is "+developerName);
}
}
CHILD CLASS
public class SeniorDeveloper extends Developer
{
private int salary;
private String joiningDate;
private String staffRoomNumber;
private double contractPeriod;
private int advanceSalary;
private boolean appointed;
private boolean terminated;
public SeniorDeveloper(String platform, String interviewerName, int workingHour, int sl, double cPeriod)
{
super(platform, interviewerName, workingHour);
int salary = sl;
double contractPeriod = cPeriod;
String joiningDate="";
String staffRoomNumber="";
int advanceSalary=0;
boolean appointed= false;
boolean terminated= false;
}
public void setsalary(int sl)
{
salary= sl;
}
public void setjoiningDate(String joiningDate)
{
this.joiningDate= joiningDate;
}
public void setstaffRoomNumber(String staffRoomNumber)
{
this.staffRoomNumber= staffRoomNumber;
}
public void setcontractPeriod(double cPeriod)
{
contractPeriod = cPeriod;
}
public void setadvanceSalary(int advanceSalary )
{
this.advanceSalary= advanceSalary;
}
public void setappointed(boolean appointed)
{
this.appointed= appointed;
}
public void setterminated(boolean terminated)
{
this.terminated= terminated;
}
public int getsalary()
{
return salary;
}
public String getjoiningDate()
{
return joiningDate;
}
public String getstaffRoomNumber()
{
return staffRoomNumber;
}
public double getcontractPeriod()
{
return contractPeriod;
}
public int getadvanceSalary()
{
return advanceSalary;
}
public boolean getappointed()
{
return appointed;
}
public boolean getterminated()
{
return terminated;
}
public void setSalary(int salary)
{
this.salary=salary;
}
public void setContractPeriod(int contractPeriod)
{
this.contractPeriod = contractPeriod;
}
public void hireForAndroid(String developerName,String joiningDate, int advanceSalary, String staffRoomNumber)
{
if(appointed==true)
{
System.out.println("Developer Name: "+developerName);
System.out.println("Room Number: "+staffRoomNumber);
System.out.println("Developer is already appointed");
}
else
{
super.setdeveloperName(developerName);
this.joiningDate= joiningDate;
this.staffRoomNumber = staffRoomNumber;
this.advanceSalary = advanceSalary;
appointed=true;
terminated=false;
}
}
public void contractTerminated()
{
if(terminated==true)
{
System.out.println("Sorry!!You are terminated.");
}
else
{
super.setdeveloperName("");
joiningDate = "";
advanceSalary = 0;
appointed = false;
terminated = true;
}
}
public void printInfo()
{
System.out.println("Platform: "+getplatform());
System.out.println("Interviewer Name: "+getinterviewerName());
System.out.println("Salary of developer: "+salary);
}
public void display()
{
super.display();
if(appointed==true)
{
System.out.println("Name of developer: "+getdeveloperName());
System.out.println("Termination status: "+terminated);
System.out.println("Joining Date: "+joiningDate);
System.out.println("Advance Salary: "+advanceSalary);
}
}
}
CHILD CLASS
public class JuniorDeveloper extends Developer
{
private int salary;
private String appointedDate;
private String evaluationPeriod;
private String terminationDate;
private String specialization;
private String appointedBy;
private boolean joined;
public JuniorDeveloper(String pf, String iName, int wHour, int salary, String appointedBy, String terminationDate )
{
super(pf,iName,wHour);
this.appointedDate = "";
this.evaluationPeriod = "";
this.specialization = "";
this.joined = false;
}
public int getsalary()
{
return salary;
}
public String getappointedDate()
{
return appointedDate;
}
public String getevaluationPeriod()
{
return evaluationPeriod;
}
public String terminationDate()
{
return terminationDate;
}
public String specialization()
{
return specialization;
}
public String appointedBy()
{
return appointedBy;
}
public boolean joined()
{
return joined;
}
public void setsalary(int salary)
{
if(joined==false)
{
this.salary = salary;
}
else
{
System.out.println("It is not possible to change the salary");
}
}
public void appointDev(String developerName, String appointedDate, String terminationDate, String specialization)
{
if(joined==false)
{
super.setdeveloperName(developerName);
joined=true;
}
else
{
System.out.println("Developer was already appointed on "+appointedDate);
}
//this.appointedDate = appointedDate;
this.terminationDate = terminationDate;
this.specialization = specialization;
}
public void display()
{
super.display();
if(joined==true)
{
System.out.println("Appointed date: "+appointedDate);
System.out.println("Developer Name: "+getdeveloperName());
System.out.println("Evaluation Period: "+evaluationPeriod);
System.out.println("Termination Date: "+terminationDate);
System.out.println("Developer Salary: "+salary);
System.out.println("Developer Specialization: "+specialization);
System.out.println("Appointed By: "+appointedBy);
}
}
}
Link to comment
https://www.neowin.net/forum/topic/1379037-please-help-me-to-write-the-pseudocode-of-the-following-java-program/Share on other sites
14 answers to this question
Recommended Posts