Using the naming rules listed above, come up with your own variable names to hold the following kinds of data. In addition, describe the data type (integer, floating point, string, Boolean) that would likely be used by each variable.

A player's current score in a game
Your pet's name
The number of books in a library
The answer to the question "Do you want to continue?"
The result you get when calculating the area of a triangle

Do your names make sense to them, or do they have suggestions for improvement? Does your class or teacher agree with the data type you believe will work the best in each case?

1. playerScore (integer)

2. petName (string)
3. numBooksInLibrary (integer)
4. continueAnswer (Boolean)
5. triangleAreaResult (floating point)

I believe these variable names are descriptive and make sense for their respective data. The data types chosen align with what I believe would be most appropriate for each variable. It would be a good idea to check with my class or teacher to confirm if the data types chosen are indeed the best choice for each variable.