Answer:
False
Step-by-step explanation:
Static arrays are stored on the stack , having fixed size and scope within functions.
Example-
int arr[10];
Static arrays can't update the values given by the user at the time of execution, they are initialized with some default values.So,we can't create list of servers at the time of program execution.
But we can create list of servers using Dynamic arrays, because size is not fixed as it stores in heap and update at the time of execution.
Example-
int* arr = new int[10];
delete[] arr;