Q30. Consider the following CORONA DataFrame and answer the questions given below: ID State Cases 100 Delhi 3000 110 Mumbai 4000 120 Chennai 5000 130 Surat 4500 Create the above dictionary and DataFrame with given data and perform the following operations: (a) Write code to add a new column named 'Recovery' using the Series method. This column should store the number of patients recovered in each state. (Assume appropriate values) (b) Add a new column named 'Deaths' using the assign() method to store the number of deaths in each state. (Assume values) (c) Add a new row using loc[] to store details of another state. (Assume values) (d) Add a new column named 'Percentage' using the insert() method. This column should store the percentage of recovery in each state and must...