Students.pop("NISHA")
OR
del (Students["NISHA"])
OR
del Students["NISHA"]
OR
Any other correct variation of the code
LS=["HIMALAYA", "NILGIRI", "ALASKA", "ALPS"]
D={}
for S in LS :
if len(S) % 4 == 0 :
D[S] = len(S)
for K in D :
print(K, D[K], sep="#")
HIMALAYA#8 ALPS#4
Stud= { "Murugan":100, "Mithu":95 } #Statement 1
print(Stud[95]) #Statement 2
Stud [ "Murugan" ]= 99 #Statement 3
print(Stud.pop( )) #Statement 4
print(Stud) #Statement 5
(a) Statement 2
(b) Statement 3
(c) Statement 4
(d) Statement 2 and 4
(a) Statement 2 OR (d) Statements 2 and 4