Question:What is the output of the following in JavaScript?var a=7; a+=12; a-=4; a*=5; a/=3; a%=2; document.write(a);
var a=7; a+=12; a-=4; a*=5; a/=3; a%=2; document.write(a);
A 75 B 12.5 C 0 D 1
+ AnswerD
+ Report