We want to store 10 digit mobile number i.e.9999999999. Should it be numeric or string datatype? We don\'t want to do any calculative or manipulation operation on this
It must be a stringas phone number will exceed the limit of int or even long. So for handling those scenario string is always prefered.
string
int
long