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
Can you run java program without main method?
How do you end a program?
Can we have two main methods in a java class?
what is method reference in java 8?
What things should be kept in mind while creating your own exceptions in java?
What do you mean by byte code?
Explain the difference between jdk, jre, and jvm?
What is the purpose of assert keyword used in jdk1.4.x?
How can we make a class singleton?
What does singleton mean in java?
placement papaers of spring computing technology
What is the point of polymorphism java?
How do you represent a space in regex java?
What is string and its types?
What is mean by exception?