click below
click below
Normal Size Small Size show me how
Lesson 4 Minecraft
Revision for minecraft lesson 3
| Question | Answer |
|---|---|
| Which data type stores the smallest range of whole numbers? | byte |
| What data type would you use in order to store text? The assigned data should be in " " | String |
| What data type would you use in order to store characters? The assigned data should be in ' ' | char |
| What data type would you use in order to store either true or false? | boolean |
| What data type would you use to store a number containing a decimal point? After the assigned data one should add f. | float |
| What data type would you use to store a number containing a decimal point? There is nothing written after the assigned data. | double |
| Which data type is the most used type to store whole numbers and it ranges between -2,147,483,648 to +2,147,483,647. | int |