Multiple choice technology programming languages What are the functions used to add elements in an array Push and unshift Push and shift Pop and push Shift and unshift Reveal answer Fill a bubble to check yourself A Correct answer Explanation push() adds elements to the end of an array, while unshift() adds elements to the beginning. Both are adding functions. shift() removes from the beginning, and pop() removes from the end; these are removing functions.