Which of the following code segment would execute the stored procedure "getPassword()" located in a database server?
a) CallableStatement cs = connection.prepareCall("{call.getPassword()}");
cs.executeQuery();
b) CallabledStatement callable = conn.prepareCall("{call getPassword()}");
callable.executeUpdate();
c) CallableStatement cab = con.prepareCall("{call getPassword()}");
cab.executeQuery();
d) Callablestatement cstate = connect.prepareCall("{call getpassword()}");
cstate.executeQuery();