a. If a faculty_id value is deleted from the faculty table, the corresponding records in the course table that use this facultyid will not be deleted.
3)
    b. Delete FROM loan; d. TRUNCATE TABLE loan;
4)
    a. 0
5)
    b. <25,Lewis F.H>will be the first tuple in the output
6)
    c. SCIENTIST
7)
    d. All rights - select, delete, update.
8)
    a. SELECT * FROM MountainDetails WHERE StateName IN('Sikkim','Uttarakhand');
9)
    b. UPDATE MountainDetails SET Altitude=Altitude*1.05 WHERE StateName LIKE '%d';
10)
    c. SELECT MountainName, Altitude FROM MountainDetails WHERE Altitude>=(SELECT AVG(Altitude) from MountainDetails) OR Altitude BETWEEN 6500 AND 8000;