Answer :
I guess you need it written in Java. So if you need only constructor, then here it is:
public Clock(Clock clock1) {
this.hours = clock1.hours;
this.isTicking = clock1.isTicking;
}
This code is 100% correct
public Clock(Clock clock1) {
this.hours = clock1.hours;
this.isTicking = clock1.isTicking;
}
This code is 100% correct