Does java trim remove newline?
No Answer is Posted For this Question
Be the First to Post Answer
Can a class extend more than one class?
What is array sorting in java?
Brief the life cycle of an applet.
how many design pattern r there? and wht design pattern u use and why ?
How do you create immutable object in java?
Can we sort a map in java?
what us Dyna action form?
4 Answers Aithent Technologies,
How to create a custom exception?
This is my code i have a doubt class ab implements a,b { public void add() { System.out.println("Hi") } } interface a { public void add(); } interface b { public void add(); } in this code i have two interface implemented in the class has same method.just i want to know which method of interface implemented in the class. interface a or interface b? confused me .
What is static block?
What is identifier with example?
byte a=5; byte b=5; byte c=a+b; System.out.println(c); whats the o/p?