A social science teacher wants to use a pandas series to teach about Indian historical monuments and their states. The series should have the monument names as values and state names as indexes which are stored in the given lists, as shown in the code. Choose the statement which will create the series:
import pandas as pd
Monument=['Qutub Minar','Gateway of India', 'Red Fort','Taj Mahal'] State=['Delhi','Maharashtra','Delhi','Uttar Pradesh']
(A) $\mathrm{S}=$ df.Series(Monument,index $=$ State)
(B) $\mathrm{S}=$ pd.Series(State,Monument)
(C) $\mathrm{S}=$ pd.Series(Monument,index $=$ State)
(D) $\mathrm{S} \approx$ pd.series(Monument,index $=$ State)