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 / srinivas battula
Java is Pure OOPS... Try writing a java program without
Class. i.e. public class Test {}, In this way it satisfies
Oops Concept.
Abstraction: Take any thing like static, system,etc. we
don't know the internal functionalities, but by calling
them we are achieving the task. Here it is hiding the
complexities but representing essential features.
Encapsulation: By writing a program you are grouping all
the methods, variables,etc there by satisfying Encapsulation
Inheritence: When reusability occurs, you satisfy this
concept.
Polymorphism: We achieve it through Overloading and
Overriding in Java in most of the concepts.
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
Is there a way to increase the size of an array after its declaration?
What is the list interface?
Why do we use predicate in java?
What is difference between add() and addelement() in vector?
What is the purpose of the strictfp keyword?
What is the use of generics? When was it added to the Java development Kit?
Define Multiprogramming and Multiprocessing in java.
How do I get 64 bit java?
What is the difference between a method and a procedure?
Can a private method be declared as static?
what do you mean by marker interface in java?
What is string substring?
What is == in java?
What is difference between public static and void?
What is advantage of java?