A method foo modifies its String parameter:
static void foo(String s) { s += " Ocean"; }
Method foo is called in another method as:
// call foo String p = "Pacific"; foo(p); // p ?
What would be the value of p after the call to foo ?