answer action

Can’t find an answer?

Make use of a qualified tutor to get the answer

Jeremy Feng
0
Q:

java

	An incredible language that receives far more hate than it deserves
because of it's poor beginnings.
	Everyone remembers the slow java applets but often fail to understand
Java's many positives including:
 - compatability with many different systems
 - Just-In-Time compilation making it almost as fast as a native language
 - the wide range of high-quality and open source libraries developed over
   many years

	Sure, it may not look as sexy as Python or NodeJS, but when you're
debugging the call stack 50 functions deep, you'll be glad you picked Java
11
public class Example {
  public static void main(String[] args) {
  	System.out.println("Hello, world!"); 
  }
}
2
Condition1 || Condition2

// returns true if one of the conditions is true.
0
public class Main {
	public static void main(String[] args) {
    	System.out.println("Hello, World!");
    }
}
0
Java is a computer language developed by Sun Microsystems. It was released in 1995 as a core part of Sun's Java platform. Although its syntax is very similar to the C, C Plus plus, it is based on a simpler object model
1
Java is a set of computer software and specifications developed by James
Gosling at Sun Microsystems, which was later acquired by the Oracle
Corporation, that provides a system for developing application software and
deploying it in a cross-platform computing environment. 
0
interface LambdaFunction {
    void call();
}
class FirstLambda {
    public static void main(String []args) {
        LambdaFunction lambdaFunction = () -> System.out.println("Hello world");
        lambdaFunction.call();
    }
}
0
Runnable r = ()-> System.out.print("Run method");

// is equivalent to

Runnable r = new Runnable() {
            @Override
            public void run() {
                System.out.print("Run method");
            }
        };
0
Java is powering the innovation behind our digital world. Harness this potential with Java resources for student coders, hobbyists, developers, and IT leaders.
-1
Java is a set of computer software and specifications developed by James Gosling at Sun Microsystems, which was later acquired by the Oracle Corporation, that provides a system for developing application software and deploying it in a cross-platform computing environment
-1
An object oriented language that is supported by any machine that oracle
decides to support developed at Sun Microsystems. 



side note:
garabage collector is ass
0
class Anupam
{
  public static void main(String...args)
  {
    System.out.println("HI this is Anupam Guin from Kolkata,INDIA");
  }
}
-1
time for making minecraft pluggins
-1

New to Communities?

Join the community