Answer:
If we pick Minecraf as a game, you could assume variables like:
sleeping = false
Logical or Boolean data type. Used when you need to store a true/false to easily make conditional statements.
health_point = 20
Numerical or Integer data type. Used when you need a number without decimal values.
speed = 3.8
Numerical or Float data type. Used when you need a number with decimal values.
name = "John"
String data type. Used when you need a sequence of characters.