- We cannot override a private or static method in Java.
 - If you create a similar method with same return type and same method arguments in child class then it will hide the super class method; this is known as method hiding.
 - Similarly, you cannot override a private method in sub class because it’s not accessible there.
 
Shathana. S.R. Answered question May 29, 2023
				