hari


{ City } bangalore
< Country > india
* Profession * software engineer
User No # 104289
Total Questions Posted # 0
Total Answers Posted # 2

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 28
Users Marked my Answers as Wrong # 2
Questions / { hari }
Questions Answers Category Views Company eMail




Answers / { hari }

Question { TCS, 9111 }

1).Is Object class abstract or not?
2).Is main method(public static void main(String args[])low
priority thread or high priority thread?


Answer

1) Object class is not an abstract class.The default
implementation is provided by javasoft.If we want we can
override the methods of Object class.
Ex class Top extends Object{
public String toString()
{
return "Java is ruling the WEB";
}
}

2)main() method is having the normal priority.To see how
it is :

class MainPriority{
public static void main(String main[]){
System.out.println("Main priority is
:"+Thread.currentThread().getPriority());
}
}

Is This Answer Correct ?    2 Yes 0 No

Question { IBM, 25370 }

what is mutability?which one is mutable String or StringBuffer?and why?give
examples of each which shows the mutability of each String or StringBuffer


Answer

The following programe of mine simply gives ans.

class Sample5{
public static void main(String ask[]){

String s1=new String("Harinath");
System.out.println("s1 : "+s1);
System.out.println("s1 address : "+s1.hashCode());
String s2=new String("Simple");
s1=s1.concat(s2);
System.out.println("s1 : "+s1);
System.out.println("s1 address : "+s1.hashCode());


System.out.println("--------------------------------------------------");

StringBuffer s3=new StringBuffer("Harinath");
System.out.println("s3 : "+s3);
System.out.println("s3 address : "+s3.hashCode());
StringBuffer s4=new StringBuffer("Simple");
s3=s3.append(s4);
System.out.println("s3 : "+s3);
System.out.println("s3 address : "+s3.hashCode());
}
}

output:-
D:\>javac Sample5.java

D:\>java Sample5
s1 : Harinath
s1 address : 185903223
s1 : HarinathSimple
s1 address : -1382461175
--------------------------------------------------
s3 : Harinath
s3 address : 17523401
s3 : HarinathSimple
s3 address : 17523401


means whenever we go for String class ,String allows
to add new String object.But JVM creates new String object
and stores old and new String objects in it,assigns new
address for it.See the above address if you doubt,
s1 : Harinath
s1 address : 185903223
This is s1 address before adding
s1 : HarinathSimple
s1 address : -1382461175
This is the s1 address after adding .
Means new object is created with s1 & s2 , This new
object address is assigned to s1 variable . Now s1 is
reffering to the new object.


Whereas in StringBuffer class this not happens.Because
StringBuffer allows to add new contents in old object
only.It modifies only the old object, it doesn't create new
Object.That is why address is not modified.

Note:-
String allows concat() method.
StringBuffer allows append() method.
If change either of this sequence it will be error.

The above answer is wrong.Because if u use append() on
StringBuffer,concat() on String objects definitly the actual
object is modified.No matter about heap.Our programe is
showing clearly the modifiwd content.

Is This Answer Correct ?    26 Yes 2 No