The following code segment performs a simple encryption routine on string password. How many times does the following loop execute? What is the value of password after the for loop terminates?
string password = "notsecure";
for (int i = 0; i < password.length(); i++)
{
password.at(i) += 1;
}