Select the correct location on the image.
Which line will give the circumference of a circle with radius 6?
public class Circumference
{
public static void main(String[ ] args) {
System.out.println(2*Math.PI*6);
System.out.println (Math.PI);
System.out.println(Math.PI*6*6);
System.out.println (Math.PI*6);