Something different from your tutorials compared to others is, it is very engaging. Never feels bored even for a second. Thankyou so much Navin!!
@lukegleeson39704 ай бұрын
feel like im on ther home run of this tutorial. not quite done yet but thank you so much for this content. its crazy that in this world you can learn to code without even player a doller.... thanks telusko. you're a legend.
@sowmyaks8386 Жыл бұрын
Thankyou for the explanation sir. Following your java lectures.... enjoying it♥️🙂🙂♥️
@vishwajithbaradАй бұрын
at 4:02 the exception is caused by the 9th line and the throw exception command will not execute since it will directly jump to catch with the same ArithmeticException. instead you could have move lines 10 and 11 to 9 and 9 to 11. but you have cleared the concept.
@udara-me5 ай бұрын
The best java course ever😍
@praneshnanoskar6353 Жыл бұрын
Superb explanation 👍
@workoutsidhu11 ай бұрын
Sir Your video is very help full. Thank You
@sukanyaswaminathan91307 ай бұрын
hello sir, on executing line 9 itself, error occurs and the execution enters the catch block rite ? Line number 10 won't be executed at all and hence the 'throw' code. Am i getting it rite ?
@shindeprem2285 ай бұрын
Yes you are right
@allabout90minutes9 Жыл бұрын
Amazing explanation
@sethupathys641 Жыл бұрын
Hey, what does the throws keyword do?
@crofux5 ай бұрын
Throws keyword indicates that there might be error in this block of code
@Jonggungoo Жыл бұрын
aren't u from telangana sir!
@bengaming9911 ай бұрын
That’s why the channel name is telusko which means (learn) in Telugu
@MudrikaAgrawal-kx6zk5 ай бұрын
I have one doubt, how ArithmeticException object becomes constructor?
@shindeprem2285 ай бұрын
Every time we create object using new className() the constructor of that class is invoked depending on parameters we pass, he meant that
@maleeshasandakalum6213 Жыл бұрын
Thank you sir❤❤
@oshadhaedirisinghe145511 ай бұрын
Thank you
@jawad_karim11 ай бұрын
amazing !
@tahaalshimy8255 Жыл бұрын
God bless you
@syedadil7256 Жыл бұрын
There is an error in the if part it is if(i==0) but u placed if(j==0). As the denominator should be checked that is i
@ananysharma9290 Жыл бұрын
Nope buddy, If you'll re-watch the video, he explained that he doesn't want the value of J to be zero( which comes as an output when 18 is divided by 20). Since the above division operation is not an exception, catch block is not called, that's why we are using the keyword "Throw" to make this operation an exception and catched by catch block. The code in the video is totally correct 🙂