Answer:
Option(d) i.e "storing a float in an int" is the correct answer for the given question.
Explanation:
1 implicit
In this typecast we change the smaller datatype into the larger datatype.
For example
int to float
2 Explicit
In this typecast we change the larger datatype into the smaller datatype in an explicit manner.
For example
float to int.