ssswilson2688 ssswilson2688 26-03-2024 Computers and Technology contestada Examine the following matlab code. what is the value of b at the end of the program: a=2; for ii=0:2:4 a= [a, a*ii]; end b=a a. b=2,0,0,0 b. b=2 2 0 2 0 0 2 0 0 0 c. b= 2 0 4 0 8 0 16 0 d. b= 2 2 4 8