Now, let's move on to the boolean and char data types.
The boolean data type in Java can hold one of two possible values: true or false. This data type is widely used in logical expressions and decision-making. Here's a simple example:
The char data type is used to store a single character. Java uses Unicode, allowing a char to store any character! Here's how it's done:
You'll find that String is as common in Java as stars in the cosmos. Java treats String as a basic data type and uses it to store a sequence of characters - just a text. The string is always surrounded by double quotes.
What's interesting to note is the immutability of String in Java. Once a String is created, its value can't be changed.
