Given the following code, select the correct options:
package com.java2s.courses; public class Main { public String courseName; public void setCourseName(private String n) { courseName = n; } public void setCourseName(int n) { } public static void main(){ } public static void main(String a){ } public static void main(String[] a){ } }
A
You can't add an explicit accessibility keyword to the method parame.