Given a function that returns a greeting message, what will be the output of the following code?
public static String getGreeting() {
return "Welcome to Java!";
}
public static void main(String[] args) {
System.out.println(getGreeting());
}
Given a function that returns a greeting message, what will be the output of the following code?
public static String getGreeting() {
return "Welcome to Java!";
}
public static void main(String[] args) {
System.out.println(getGreeting());
}