What does public static void printGreeting(String name) communicate about the method?
public static void printGreeting(String name)
It returns the name String to every caller.
name
It takes no input because parameters cannot be declared in parentheses.
It belongs to the class, accepts one String parameter, and returns no value.
It can run only after constructing a Car object.