Just to add: There is a concept of negative infinity as well in Double class. e.g.: double d = -5.0 / 0.0; System.out.println(d); It will print "-Infinity". Thanks Naveen for the video.
@Mukeshotwani3 жыл бұрын
Cool Naveen never tried this and Very nice trick.
@naveenautomationlabs3 жыл бұрын
Thanks @Mukesh :)
@prashantj78393 жыл бұрын
Excellent series. Very helpful. Thanks for uploading
@adhage213 жыл бұрын
No one except you will have explained it .....
@venkateshsivadurga64563 жыл бұрын
Naveen sir thanks for the clarification. Swapping of two numbers without a third variable a=(a+b)-(b=a). I tried this solution for swapping.
@aravindravi90563 жыл бұрын
A=A+B; B=A-B; A=A-B; Try it bro
@venkateshsivadurga64563 жыл бұрын
@@aravindravi9056 Bro this is routine answer. The one I mentioned is little new for me at that time. There is one more alternative a = a+b/(b=a)
@maheshz27423 жыл бұрын
Thanks a lot for this kind of interview questions making video and expecting more more videos in future without single video in a day can't getting sleep. All the best
@pavankumar-xb7nw3 жыл бұрын
I thought infinite could come for all type of numbers by 0 before I see this video but it's not for integer, thin line of difference u explaied it great.
@kavishautomationfactory1703 жыл бұрын
Thank you Navin. I learnt new tricky question today.
@sureshupreti91713 жыл бұрын
Output as Infinity??🧐 Learnt a new thing Thank you from Nepal🇳🇵
@naveenautomationlabs3 жыл бұрын
My pleasure 😊
@riddhishah75183 жыл бұрын
Very tricky question Naveen! Thanks for covering it!
@vinith23203 жыл бұрын
Thank you Naveen. Useful for me If possible daily upload one video like this Naveen 👍
@HameedKhan-mq4ve3 жыл бұрын
Thanks, I have learned lot of new concepts on Java from your videos.
@naveenautomationlabs3 жыл бұрын
Glad to know that :)
@SumitSharma-qq4hk3 жыл бұрын
Really helpful to revise my java...
@esakkisoundar3 жыл бұрын
Useful information. Thank you sir.
@sridharlanka27213 жыл бұрын
Informative , Thank you again
@shoaibjack3 жыл бұрын
This is bcoz it has implemented Floating Point Arithmetic Algorithm which specifies special values like 'NaN' (not a number) and 'infinity' .. For divide by zero cases... as per IEEE 754 standards..
@shriniwasalle9113 жыл бұрын
Very useful. Thanks Naveen. ❤️
@vasundharadoma3 жыл бұрын
Thanks for this video Naveen👍
@swetagupta64683 жыл бұрын
Thanks Naveen. This surprised me😅
@naveenautomationlabs3 жыл бұрын
;)
@harshshiyani20583 жыл бұрын
Thank you so much sir....
@himanshupokhriyal6883 Жыл бұрын
Output 1 ->if dividend is double it will give Arithmetic Exception Output 2->it will give Arithmetic exception
@DiptiJoshi2415rjdj3 жыл бұрын
Thanks sir respect from South Africa 🇿🇦 I am working here but sometime this information is helpful when I have to look for a change
@acount44733 жыл бұрын
How did you find yourself in SA? Do you work as a sw developer of some kind? What's the job market like?
@k10n283 жыл бұрын
Nice 👍
@syedafarzana9603 жыл бұрын
Thank you sir
@rizwanshahid14473 жыл бұрын
thanks Naveen
@prasadnaidu2143 жыл бұрын
Thanks for upload
@jayap83553 жыл бұрын
Thanks ✌️
@hackwithharsha52283 жыл бұрын
Thank You, Never thought infinity as an output.. good to know for interviews
@naveenautomationlabs3 жыл бұрын
Glad that it helped you
@ashuiet3 жыл бұрын
Same here.. I never thought infinity can be output
@backpackcouple59093 жыл бұрын
Thanks, Sir Can u help me, how to find duplicate elements if our array has multiple duplicate elements?
@lokapavanikoduru99663 жыл бұрын
please take mock interviews
@muralimohanreddy15133 жыл бұрын
your video's are enough for freshers?
@ananyachatterjee33933 жыл бұрын
Naveen sir thank you so much. I want to get into automation testing. Can I start with your videos?
@naveenautomationlabs3 жыл бұрын
Yes, definitely
@priteshms3 жыл бұрын
liked it
@pratikjain19373 жыл бұрын
👍
@abhay84373 жыл бұрын
I always thought NaN is short for 'Not a Number'
@naveenautomationlabs3 жыл бұрын
In Java, "NaN" stands for "not a number" and signifies that a value is not defined. "NaN" is not an exception error, but a value that is assigned. For example, imaginary numbers like the square root of negative numbers or zero divided by zero will both print "NaN" as the result.
@naveenautomationlabs3 жыл бұрын
System.out.println(Math.sqrt(-1)); --this will also give you NaN.