why is S capital in System.out.println ????

Answers were Sorted based on User's Feedback



why is S capital in System.out.println ???? ..

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

why is S capital in System.out.println ???? ..

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

why is S capital in System.out.println ???? ..

Answer / horhe

simple because System is a class. Every class must start
with capital letter

Is This Answer Correct ?    19 Yes 11 No

why is S capital in System.out.println ???? ..

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

why is S capital in System.out.println ???? ..

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

why is S capital in System.out.println ???? ..

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

Post New Answer

More Core Java Interview Questions

What is an exception in java?

0 Answers  


How can we make sure main() is the last thread to finish in java program?

0 Answers  


can rmi and corba based applications interact ?

0 Answers  


Can we extend immutable class?

0 Answers  


What is a hashmap used for?

0 Answers  






Hi can u pls tell me what is the use of marker interface. Iknow what is marker interface but what ability will the object get by implementing this.

3 Answers   CGI,


What is the difference between method and constructor ?

3 Answers  


can we create object for static class in java

14 Answers   IAP Company, IBM, Marlabs, mPortal, TCS,


How do u provide security in java

3 Answers  


Is string is a data type in java?

0 Answers  


What is the meaning of 3 dots in java?

0 Answers  


Can a class have an interface?

0 Answers  


Categories