Consider an array of 10 elements named 'demo_array'. Which of the following should be used to replace the first 7 elements of the array with the value 5?


- Demo_array[0:7] = 5
- Demo_array[1:7] = 5
- Demo_array[1:8] = 5
- Demo_array[0:8] = 5