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
What is %d in printf?
Define Multiprogramming and Multiprocessing in java.
How long will it take to learn java?
What is java string pool?
Explain the importance of throws keyword in java?
What is a static method in java?
What is the default size of set in java?
What does += mean coding?
Differentiate between stringbuffer and string?
Can we cast any other type to boolean type with type casting?
Can I extend singleton class in java?
What is oop in java?
What do you understand by soft reference?
If A Class Is Declared Without Any Access Modifiers, Where May The Class Be Accessed?
Why arraylist is used in java?