+ 1
System.out.println(2_0==20); why answer is true
Java code output is true why
1 Answer
+ 3
It's true, because "_" is used to separate the digits in a numerical literal to improve readability of the code. You can find more info here: https://docs.oracle.com/javase/7/docs/technotes/guides/language/underscores-literals.html
Hope it helps you.