I hope this question isn't too simple or dumb...
Can someone please tell me what value is returned for z? Thanks!Code:int x = 2;
int y = "WKD".hashCode() % 3000;
int z = "WWI".hashCode() % 3000;
for (int i = 0; i <= z; i++)
a = (x ^ i) % y;
return z;

