system.out.println(1 + 3);
Answers were Sorted based on User's Feedback
Answer / white
hey everybody! i am newbie to java.
but with "system.out.println(1 + 3);" hte answer is
"package system does not exist; || system.out.println(1+3);"
becoz java is case sensitive for that matter. the answer
would be 4 if the syntax started with a capital 'S'.
cheers
| Is This Answer Correct ? | 11 Yes | 0 No |
Answer / ravi
Here is Compile time error that is system package not exist
| Is This Answer Correct ? | 16 Yes | 7 No |
Answer / sreedhar
System is class ,println method is streem class,out is
static variable of system class,that staic variable calling
class name.thats why write the System.out.println();
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / g.deepa
In this statment,"system" is initial letter is in captial
(S)and with in the double quotes of numbers or letters only
printing on the screen like "1+3".
so it make a complie time error
| Is This Answer Correct ? | 1 Yes | 2 No |
Answer / sushma
Gives Compile time error saying that "system cannot be
resolved"
| Is This Answer Correct ? | 1 Yes | 6 No |
What is JDK? Mention the variants of JDK?
Why is logger singleton?
What is advantage of java?
What is the vector class in java programming?
Difference between this(), super()?
12 Answers College School Exams Tests, Oracle,
What is clipping and repainting and what is the relation between them?
In multi-threading how can we ensure that a resource isn't used by multiple threads simultaneously?
What is Collections API?
class A{ m2(){ } } class B extends A{ m2(){ } } class c extends B{ m2(){ } } class my_class extends c{ m2(){ } pulic static void main(){ ...My_class a = new my_class(); super.super.super.m2(); is this is leagal if not find what is the legal procedure in order to call A's version of m2(); }
Give the hierarchy of inputstream and outputstream classes.
List some java keywords sun like c, c + + keywords?
How does varargs work in java?