What is the value that is returned from the following method?
public static int getVolume() { int v; v = 23; if(v < 50) { return 50; } return v; }
50
23
50 and 100
150