I believe the correct answer is choice D. Making a law.
I don't believe the scientific method says anything about making a law.
I hope this helps you and have a great day!
Check who you are sending it to before you hit send
package mypackage; // Whatever package this should be in.
public abstract class DesktopComponent {
private String type;
// Alternatively you may want a final variable.
// private final String type;
public DesktopComponent(String type)
{
this.type = type;
}
abstract void onClick();
}
Answer:
Ok, so it's not letting me submit a text response, so I'll attach an image of my answer.
Explanation: