alonnahh2922 alonnahh2922 04-03-2024 Computers and Technology contestada What could you change to make the following code not result in a error?interface A { public int one(); public int two(); public int three();}public class B implements C { public int one() { return 1; }}