Posts
Bollean in java
android dev
-
November 28, 2023
Java Booleans Very often, in programming, you will need a data type that can only have one of two values, like: YES / NO ON / OFF TR…
Operators in java
java
-
November 25, 2023
Java Operators Operators are used to perform operations on variables and values. In the example below, we use the + operator to …
Data types in java
data types
-
November 25, 2023
Java Data Types As explained in the previous chapter, a variable in Java must be a specified data type: Example int myNum = 5 ; …
Variables in java
java
-
November 25, 2023
Java Variables Java Variables Variables are containers for storing data values. In Java, there are different types of variables, …
Syntax in Java
java program
-
November 25, 2023
Java Syntax In the previous chapter, we created a Java file called Main.java , and we used the following code to print "Hello …