**************************************** * A - Addresses of all the restaurants * **************************************** //restaurant/address/text() ************************************ * B - Names of all the restaurants * ************************************ //restaurant/@name ************************************ * C - Address of Kalpna restaurant * ************************************ //restaurant[@name='Kalpna']/address/text() *************************************************************** * D - Phone numbers of all restaurants that serve Indian food * *************************************************************** //restaurant[cuisine/text()='Indian']/phoneno/text() ********************************************************* * E - names of all restaurants which serve Italian food * ********************************************************* //restaurant[cuisine/text()='Italian']/@name