Personal Management App for iOS (Assignment deadline: Wednesday 03/02/2021, 11:59pm (Week 14) on vUWS. You must demonstrate your assignment at the usual tutorial in week 14) Assignment Details For this….
redirect initial input to come from your text file.
Making use of class Results shown below, repeat the above program, this time writing/reading objects of class Result. (When displaying the names and marks that have been read, of course, you must make use of the methods of class Result.) Once again, redirect initial input to come from your text file. class Result implements Serializable
{
private String surname;
private int mark;
public Result(String name, int score)
{
surname = name;
mark = score;
}
public String getName()
{
return surname;
}
public void setName(String name)
{
surname = name;
}
public int getMark()
{
return mark;
}
public void setMark(int score)
{
if ((score>=0) && (score<>
mark = score;
}
}