410 views
0 votes
0 votes

Is there any difference between the execution of a+=2 and a=a+2 making the difference between various calls ?

Please log in or register to answer this question.

Related questions

1 votes
1 votes
2 answers
1
sh!va asked Jul 21, 2016
486 views
Anyone please share link for gateoverflow Facebook group
0 votes
0 votes
0 answers
2
RahulRoy31 asked Dec 28, 2018
414 views
(a^n)^m b^n for m,n>=1 is1)DCFL 2)CFL or 3)CSL
0 votes
0 votes
1 answer
3
focus _GATE asked Sep 29, 2016
624 views
my ans in not matching to any option ?? i am getting 12??? is it right ??
4 votes
4 votes
3 answers
4
vijaycs asked Sep 29, 2016
1,256 views
What is the time complexity of the following code snippet?sum=0; for(i=0;i<=n;i++) { for(j=1;j<=i;j++) { if(j%i==0) { for(k=0;k<=n;k++) { sum=sum+k; } } } }