Consider the code segment below:
var a = 0;
var b = 3;
var c = 4;
a = a+c
b = a+c
c = a+c
What are the values of a, b, and c after this code segment has been run?
A. a:4, b:4, c:4
B. a:4, b:8, c:8
C. a:4, b:8, c:12
D. a:4, b:8, c:16
E. a:0, b:3, c:4

Respuesta :