Vertitime
X
Technologies
AI
ML
GenAI
Data Science
R
Python
Pandas
Data Analytics
SQL
C
Html
Javascript
Data Structure
JAVA
CSS
Swift
Azure Cloud
AWS Cloud
DevOps
Microservices
Interview Questions
Java Introduction
Java Variables
Java Data Types
Java Operators
Java Strings
Java Booleans
Java If-Else
Java Switch
Java While Loop
Java For Loop
Java If-Else.
The Java if-else statement tests the condition. It executes the if block if condition is true otherwise else block is executed.
Example -
if (condition) { // codes in if block } else { // codes in else block }