carlied49641 carlied49641 19-02-2024 Computers and Technology contestada When the code above is run, what will be the final value of the variable x, displayed at the end of the program?x ← 0a ← 3k ← 4REPEAT a TIMES{ REPEAT k TIMES { x ← x + a } x ← x * (-1)}DISPLAY x```a) -36 b) 36 c) 0 d) 12