Answer is D.
To test:
class Caller {
private void init () {
System.out.println("Initialized");
}
private void start () {
init();
System.out.println("Started");
}
}
public class Test {
public static void main(String[] args) {
Caller c = new Caller();
c.start();
c.init();
}
}
A voting comment increases the vote count for the chosen answer by one.
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one.
So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
JoseCG
Highly Voted 4 years agoZafar_Nasim
3 years, 8 months agodevysf
2 years, 6 months agov323rs
Highly Voted 4 years agoSreeni_A
Most Recent 5 months, 2 weeks agoakbiyik
1 year, 2 months agocarloswork
1 year, 3 months agoMthlagi
1 year, 11 months agoMthlagi
1 year, 11 months agobrianhuang881215
2 years, 5 months agoSurendra88
2 years, 6 months agoSSJ5
2 years, 10 months agosyddanialshz75
4 years, 2 months ago