What is method overriding in java ?
No Answer is Posted For this Question
Be the First to Post Answer
What is an argument java?
Is binary a low level language?
What is stream api in java8?
explain the concept of inheritance with an example?
What do you understand by overloading and overriding in java?
Explain JSP life cycle
What is JVM ? use of JVM?
I declared main() method as private. But it still running and displaying the output. Please Answer it . Code Snippet as Below: import java.io.*; class over { private static void main(String[] args) { int high = Integer.MAX_VALUE; int overflow = high + 1; int low = Integer.MIN_VALUE; int underflow = low - 1; System.out.println(high + "\n" +overflow +"\n"+ low +"\n"+underflow); //System.out.println(overflow); //System.out.println(low); //System.out.println(underflow); } }
Can we use string in switch case in java?
What are thread local variables?
How to eliminate duplicates from an array?
6 Answers ABC, AdMod, Adobe, College School Exams Tests, Patni, Wipro,
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