How is it possible in java programming for two string objects with identical values not to be equal under the == operator?
No Answer is Posted For this Question
Be the First to Post Answer
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
What is a void return type?
What is skeleton and stub?
how can u apply shallow cloning and deep cloning to create object?
What is a char in java?
What do you mean by multithreaded program?
What does system.gc() and runtime.gc() methods do?
What is the difference between a switch statement and an if statement?
Given: 11. public static void main(String[] args) { 12. Integer i = uew Integer(1) + new Integer(2); 13. switch(i) { 14. case 3: System.out.println(”three”); break; 15. default: System.out.println(”other”); break; 16. } 17. } ‘What is the result? 1 three 2 other 3 An exception is thrown at runtime. 4 Compilation fails because of an error on line 12.
Can we override the static methods?
Explain Stream Tokenizer?
Do I need to import java.lang package any time? Why?