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
In questa pagina del sito puoi guardare il video online If Else statements in Java - Java tutorial for Beginners della durata di ore minuti seconda in buona qualità , che l'utente ha caricato Amarindaz 30 ottobre 2018, condividi il link con amici e conoscenti, su youtube questo video è già stato visto 89 volte e gli è piaciuto 0 spettatori. Buona visione!