suppose we have two object;obj1 and obj2
can we assign obj2 to one1;
and if yes; then after assigning suppose we delete obj2
then obj1 will retain obj2 value or not.
Answer Posted / mahesh kotekar
Very tricky question, perhaps i would like to answer this
one with small coding.
Employee e1 = new Employee('mahesh','Software');
Employee e2 = e1;
e1 = null;
console.writeline(e2.FirstName);
Answer: We can assign the reference of the object to other
object. since both e1 and e2 refers to the same memory
location for the empllyee object. If we change the e1 then
refernce to memory of e1 will get deleted but e2 stil refers
to the same memory location Certainly it will work. and
retain the value.
Thanks And Regards
Mahesh KOtekar
| Is This Answer Correct ? | 7 Yes | 0 No |
Post New Answer View All Answers
What are the authentication types in asp.net?
What is the mvc model?
What are the advantages and limitations of query string?
What is the web.config file in asp?
Describe the Server Control Events of ASP.NET?
If I am developing an application that must accomodate multiple security levels though secure login and my asp.net web application is spanned across three web-servers (using round-robin load balancing). What would be the best approach to maintain login-in state for the users?
What is difference between asp.net and asp?
Explain what are delegates?
Is global asax mandatory?
What is cross page posting? How is it done?
What is Web API Routing?
What are themes and skins in 2.0, explain usage scenario?
What is cookieless session id explain in brief?
What will happen if the server confugration file and the application confugration file have different values for sassion state ASP.NET?
How can you handle unmanaged code exceptions in asp.net?