What is the final value of x after this code fragment is over..?
We're nt looking at the lines before or after this code because that is independent and doesn't matter.
long x=3;
for (long i = 0; i <5237; i++)
{
x*=4
x%=15
}
Thanks
We're nt looking at the lines before or after this code because that is independent and doesn't matter.
long x=3;
for (long i = 0; i <5237; i++)
{
x*=4
x%=15
}
Thanks