Please enable JavaScript.
Coggle requires JavaScript to display documents.
Java Introduction - Coggle Diagram
Java Introduction
-
types of data types
String - stores text, such as "Hello". String values are surrounded by double quotes
int - stores integers (whole numbers), without decimals, such as 123 or -123
float - stores floating point numbers, with decimals, such as 19.99 or -19.99
char - stores single characters, such as 'a' or 'B'. Char values are surrounded by single quotes
-
-
-
-
-
-
Byte code - A program code that has been compiled from source code into low level code for a software Compiler
-