Forwarded from Advanced JAVA
HTML, CSS, Ajax, Bootstrap, Javascript, jQuery Notes.zip
13 MB
public class Program
{
public static void main(String[] args) { System.out.println(fun()); } static int fun(){ return 20; } }
{
public static void main(String[] args) { System.out.println(fun()); } static int fun(){ return 20; } }
Anonymous Quiz
71%
20
10%
10
3%
30
16%
Compile time error
public class Program
{
static int var=5; public static void main(String[] args) { System.out.print(var--+" "); if(var) main(args); } }
{
static int var=5; public static void main(String[] args) { System.out.print(var--+" "); if(var) main(args); } }
Anonymous Quiz
52%
5 4 3 2 1
16%
1 2 3 4 5
20%
Runtime Error
12%
Compile time error