This website collects cookies to deliver better user experience
str1 = null; str2 = "javaoneworld"; str1.concat(str2); you'll get NullPointerException👎👎.
str1 = null; str2 = "javaoneworld"; str1+str2; you'll not get NullPointerException instead you'll get some output😅😀. o/p - nulljavaoneworld
How to execute commented code? and more.
23
0