we know that every java prog must follows OOPS Principles.
Anybody can answer, HOW THE FOLLOWING PROGRAM FOLLOWS OOPS
CONCEPTS i.e, Inheritance,Polymarphism,Encapsulation?
class a{
public static void main(String args[]){
System.out.println("Hello World");
}
}
Answer Posted / dhawal
1]here we use static main method means single copy of that
method is created in memory for that particular class means
we can not accept main method out side the class we can call
this method by using class name,ie javac a.java means this is
ENCAPSULATION
2]here println is a method, its defination writen in out
that is output straem means we obtain
INHERITANCE
3]polymorphisum means one name many form basically base
class pointer in our example when u pass String args[] to
main but can manipulate all type of data inside main this is
POLYMORPHISUM
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
How many classes can any class inherit java?
Detail discussions on JVM, memory management and garbage collector.
What does I ++ mean?
How do you define a method?
Is void a data type?
How do you sort a string in alphabetical order in java?
What is a bubble sort in java?
What is the console in java?
How do you sort arrays in java?
What do you understand by access specifiers in Java?
What are different types of states exist for a thread?
Is java hashset ordered?
What is byte [] in java?
What is an example of a constant variable?
What is data type modifier?