Answer:
public Clock (Clock c)
{
hours = c.hours;
isTicking = c.isTicking;
}
Explanation:
Since the name of the Java class is called Clock, the constructor must have that same name, so we start by declaring the constructor as public Clock (Clock c) with a clock parameter. Within the contructor body we assign the variables hours and isTicking to the respective member feilds