Answered You can hire a professional tutor to get the answer.
What happens if I try to access an array element like this array[2.
What happens if I try to access an array element like thisarray[2.5];array[-1];
What happens if I try to access an array element like this array[2.5];This will not be complied and an error will be generated as we cannot have index of any arrayas double. array[-1];This will...