cvrtz8134 cvrtz8134 07-03-2024 Computers and Technology contestada Consider the code segment below:var a = 0;var b = 3;var c = 4;a = a+cb = a+cc = a+cWhat are the values of a, b, and c after this code segment has been run?A. a:4, b:4, c:4B. a:4, b:8, c:8C. a:4, b:8, c:12D. a:4, b:8, c:16E. a:0, b:3, c:4