Correct answer is (a) Array_Name[4].data_variable_name;
The explanation is: The array name with the index of fifth element is called, i.e. index 4. Then the dot operator is used to access the data member of that object. This Allows us to access the data members of all the objects in an object array.