Answer:
Not all people but sometimes it happens
It would help if there is a programming language in the context of which you need this answered. For instance in Python you can create a program like this:
print(type("Hello"))
print(type(1337))
print(type(True))
print(type("3.14"))
It will return:
<class 'str'>
<class 'int'>
<class 'bool'>
<class 'str'>
Answer:
The answer is 15
Explanation:
A integer is a whole number, the only wholenumber present is 15
Hope this helps :)