why is S capital in System.out.println ????
Answers were Sorted based on User's Feedback
Answer / jjj
Because System is a predefined class in java and every
predefined class must starts with a capital letter...
| Is This Answer Correct ? | 80 Yes | 6 No |
Answer / javac
Because System is a class available in Java.lang
package.According to java conventions class name should
start with Capital letter, and the same in implemented.
| Is This Answer Correct ? | 19 Yes | 6 No |
Answer / horhe
simple because System is a class. Every class must start
with capital letter
| Is This Answer Correct ? | 19 Yes | 11 No |
Answer / shaik baji
The "System" class is defined like that by the java
developer so if you want to use any static content of that
class then you should call them by using the Class name.
NOTE: 1) According to JAVA conventions every class name
should starts with capital letter.
2) Java is case sensitive.
| Is This Answer Correct ? | 8 Yes | 2 No |
Answer / sankar r k
System is a class in java. As per the convention in java all
the class must start with a capital letter.
| Is This Answer Correct ? | 5 Yes | 7 No |
Answer / abhishek mittal
because System.out.println() is a class satement. hence,it should get some respect by using "S"
| Is This Answer Correct ? | 4 Yes | 13 No |
What is diffrance between FINALIZE() & FINALLY ?
How do you sort a list in java?
How to display all the prime numbers between 1 and n (n is the number, get the input from user)
What is the difference between stringbuffer and stringbuilder class?
What is meant by Static query and Dynamic query?
What is use of set in java?
How many decimal places is a double?
Which is faster set or list in java?
How to create packages in java?
what is the difference between HashMap and Hashtable
17 Answers Value Labs, Virtusa,
What is the map interface in java programming?
What is a literal coding?