1.
Q9: Put the code in the right order to complete the default constructor.
static
vs. instance/object-level variablesstatic
vs. instance/object behaviors/methodsstatic
as neededpublic class Point {
private int x;
private int y;
public Point (int one, int two) {/*LOGIC*/}
public Point (int a, int b) {/*LOGIC*/}
}