It truely depends if you are using gmail.com yahoo.com outlook.com or any other email provider pls specify the email service that you are using and ill be glad to help .
Answer:
im pretty sure its digital footprint
Explanation:
<h2>Option D: a call to a private method of the superclass</h2>
Explanation:
Option a: a method with the "same signature" is allowed in the subclass. There will not be any confusion because the object which is trying to call the method will decide whether to call the sub class or super class.
Option b: a call to a super class constructor is possible because, when you create an object of sub class automatically the super class constructor will be called. Even the sub class constructor can call the super class constructor explicitly.
Option c: A subclass can create method that's not defined by the super class
Option D: a private method is private inside the class and hence even the object of that class cannot access.
Answer: I think its true but I'm not like 100% sure sorry
Explanation: i dont know just seems right
Answer:
An infinite-loop
Explanation:
This is because the condition is always true ie: product is always less than 25. And once there is no sentinel to stop the loop it will run forever.