If you omit the visibility keyword in your method declaration, by default the method will be declared as.
A
public
B
private
C
protected
D
friendly
Correct Answer: public
By declaring a method public, you ensure that it can be invoked from outside of the current object.