Which two correctly access the DIAMETER member of the Geodetics class? (Choose two.)

Given:

package com.sun.scjp;
public class Geodetics {
public static final double DIAMETER = 12756.32; // kilometers
}

Which two correctly access the DIAMETER member of the Geodetics class? (Choose two.)

Given:

package com.sun.scjp;
public class Geodetics {
public static final double DIAMETER = 12756.32; // kilometers
}

Which two correctly access the DIAMETER member of the Geodetics class? (Choose two.)

A.
import com.sun.scjp.Geodetics;
public class TerraCarta {
public double halfway()
{ return Geodetics.DIAMETER/2.0; }

B.
import static com.sun.scjp.Geodetics;
public class TerraCarta{
public double halfway() { return DIAMETER/2.0; } }

C.
import static com.sun.scjp.Geodetics.*;
public class TerraCarta {
public double halfway() { return DIAMETER/2.0; } }

D.
package com.sun.scjp;
public class TerraCarta {
public double halfway() { return DIAMETER/2.0; } }



Leave a Reply 0

Your email address will not be published. Required fields are marked *