Classes, Interfaces, Packages, Enums

Question 1 of 24

What is the result of compiling the class Draw
public interface IShape
{
	public double originX = 0;
}

public interface IContext
{
	public double originX = 0;
}

public class Draw implements IContext, IShape
{

	public Draw()
	{
		double originX = this.originX;
	}
}