Question: Given the following code: var a = 10; var b= 3; var c= 7; var d= a += b; 10 Q 1000; b =
Given the following code: var a = 10; var b= 3; var c= 7; var d= a += b; 10 Q 1000; b = a % c; if (b>c) { d = 1; } else { d = 2; } What are the final values of a,b,c,d? a == b = C = d =
Step by Step Solution
There are 3 Steps involved in it
Lets break down the code step by step a 10 b 3 c 7 d 1000 Now lets execute the ope... View full answer
Get step-by-step solutions from verified subject matter experts
