Is it possible to add a string to beginning of String array without iterating the entire array.
You cant...You have to move all the strings coming after it forward to accommodate the new string. If you are directly adding it to 0th index, you will lose the previous element there