Below is my attempt: (I can't guarantee that it is 100% correct.)
a) There is a student in this class who can speak Hindu.

(Student(x)

Speaks(x, Hindu))
b) Every Student in this class plays some sport.

(Student(x)

y(Play(x,y)

Sport(y))
c)Some student in this class have visited Alaska but have not visited Hawaii.

(Student(x)

Visited(x, Alaska)

Visited(x, Hawaii))
d)All students in this class have learned at least one programming language.

(Student(x)

y(Learned(x,y)

ProgLanguage(y))
e)There is a student in this class who has taken every course offered by one of the departments in this school.

(Student(x)

((Taken(x,y)

Course(y))

(OfferedBy(y,z)

Department(z)))
f)Some students in this class grew up in the same town as exactly one other student in this class.

(Student(x)

Student(z)

Grewup(x,y))

Grewup(z,y)

Town(y))
g)Every student in this class has chatted with one other student in at least one chat group.

(Student(x)

Chatted(x,y))

MemberOf(x,z)

Chatgroup(z)
 \rightarrow \neg)
Chatted(x,z))