kapil


{ City } bangalore
< Country > usa
* Profession *
User No # 12460
Total Questions Posted # 2
Total Answers Posted # 4

Total Answers Posted for My Questions # 8
Total Views for My Questions # 13443

Users Marked my Answers as Correct # 72
Users Marked my Answers as Wrong # 16
Questions / { kapil }
Questions Answers Category Views Company eMail

String is a immutable objects . it means that string does not change........... But it will be chang......... { String s="kapil"; String s1="raj"; String s=s1; then print(.......) The String has been changed .. how it is possible and why its called immutable objects

7 Core Java 9884

Hey I am using asp.net mvc architecture. I creating one dropdownlist using this is dynamic list.Its displaying properly. But in time of Edit.If i load a page dropdownlist is not displaying the item which is stored in table.

1 ASP.NET 3559




Answers / { kapil }

Question { Microsoft, 64109 }

Is string reference type / value type?


Answer

string is reference type . dont confuse yar..........
because String is immutable objects..........
means does not change the values(string).......

Is This Answer Correct ?    14 Yes 2 No

Question { IBM, 45156 }

can we create object for static class in java


Answer

yes you can create an object of a static class.........
but there is no meaning ..........
because we used an static class when we dont want to create
an object.........
you can used these data members and methods without create
an object...........
otherwise u directly create an object without used the
static class ok
........
Thank You

Is This Answer Correct ?    51 Yes 11 No


Question { TCS, 7331 }

what is an anonymous class?


Answer

anonymous class means its does not have a tag name.
as you know that...
when u declare the class
class Tcs
{
......
....
}
But its not anonymous class because it has class name(tag);
if u declare like that
class
{
............
.........
}
then its called aonymous class

Is This Answer Correct ?    7 Yes 3 No

Question { 9884 }

String is a immutable objects . it means that string does
not change...........
But it will be chang.........
{
String s="kapil";
String s1="raj";
String s=s1;
then print(.......)
The String has been changed ..
how it is possible and why its called immutable objects


Answer

Thank You ramaraju....

Is This Answer Correct ?    0 Yes 0 No