Answer:
c it reduces errors
Explanation:
Instead of Mrs.Patel doing it she has an online program made for checks to do it for her.
Answer:
MacBook or a Dell computer in my opinion
Explanation:
Answer:
the main window if that`s not correct sorry
Explanation:
Answer:
I believe you want a subclass so here it is!
public class ReadWrite extends ReadOnly {
public ReadWrite(int initialValue){
super(initialValue);
}
private boolean modified = false;
public void setVal(int x) {
val = x;
modified = true;
}
public boolean isDirty() {
return modified;
}
}
Explanation:
I might be wrong, just check through it in case
Hope this helped
:)