If Else statements in Java - Java tutorial for Beginners

Published: 30 October 2018
on channel: Amarindaz
89
0

Title: If statements in Java - Java tutorial

Agenda:
What is If statement?
If statement
If Else statement
Nested If statement


***What is If statement?
It is used to test the condition.
It checks Boolean condition: true or false
It executes the if block if the condition is true.

Syntax:

if(condition)
{  
//code to be executed  
}  


***if-else Statement
It executes the if block if condition is true otherwise else block is executed.
Syntax:

if(condition)
{  
//code if condition is true  
}
else
{  
//code if condition is false  
}  


***if-else-if ladder Statement
if-else-if ladder statement executes one condition from multiple statements.

Syntax:

if(condition1){  
//code to be executed if condition1 is true  
}
else if(condition2){  
//code to be executed if condition2 is true  
}  
...  
else{  
//code to be executed if all the conditions are false  
}  

***Nested if statement
The nested if statement represents the if block within another if block .
Inner if block condition executes only when outer if block condition is true. Syntax:

if(condition1)
{    
     //code to be executed    
          if(condition2){  
             //code to be executed    
    }    
}  


#javatutorial #javaifstatement #javaforselenium


********* Tutorial Playlists *********
Google apps script tutorial for beginners- https://bit.ly/google-apps-script-tut...
Automate internet explorer with VBA- https://goo.gl/Xmy8Af
Autoit tutorials for beginners- https://goo.gl/JHB1E2
Selenium Webdriver tutorials for beginners -https://goo.gl/QqxTrF

***** Contact me *******
Blog: http://www.amarindaz.com/contact/
FB page:   / amarindaz  

****** Books written by me *******
Autoit tutorials for beginners: http://amzn.to/2GjaDbD
Excel VBA for beginners: http://amzn.to/2nhI067

****** Productivity tool ********
My Favorite YouTube Tools ➜ https://goo.gl/MX9Z4p and ➜https://goo.gl/UW1uRX

****** Gear Used To Shoot This Video *****
_Audio & Microphone
http://amzn.to/2GibdGu

*******Learning partner*******
Video courses ➜https://click.linksynergy.com/fs-bin/...

Don't forget to subscribe! https://goo.gl/J2453w

💼 To Hire Me 👉 https://fwd.cx/WLGgpTiZW5HK

Checkout my app 👉 https://www.myfreshtools.com


On this page of the site you can watch the video online If Else statements in Java - Java tutorial for Beginners with a duration of hours minute second in good quality, which was uploaded by the user Amarindaz 30 October 2018, share the link with friends and acquaintances, this video has already been watched 89 times on youtube and it was liked by 0 viewers. Enjoy your viewing!