What will be the output of following Java code?
public class Main {
public static void main(String[] args) {
String str = "Sookshmas";
str = "knowingis justnot enough";
System.out.println(str);
}
}

Posted on by