What are the advantages of java over C++?
No Answer is Posted For this Question
Be the First to Post Answer
Keywords in Exceptions?
What's the default access specifier for variables and methods of a class?
What is the significance of listiterator?
what is difference between Exception and Error?
What are access specifiers available in java?
To the class members how can we provide security?
What is byte data type?
why interaction with server using javascript is difficult
Difference between java and javascript
What does index mean in java?
if we give input as " hi how are you" then the output should be "uoy woh"...it should skip odd words in the input and should reverse even words from the end of string...can anyone help me to write this program in java
public class Base { public void myMethod(int a,intb) {} } // Uses myMethod and then hides it. public class DerivedOne extends Base { private void myMethod(int a,int b); } will this compile or not .yes or no. why