FOR EXAMPLE : CLASS Dotnet { } creating object: Dotnet dn=new
Dotnet(); NOW THE QUESTION IS WHICH IS CALLED AS OBJECT ?
EITHER dn OR new Dotnet() and CAN YOU PROVE YOUR ANSWER?????
PLEASE REPLY...

Answers were Sorted based on User's Feedback



FOR EXAMPLE : CLASS Dotnet { } creating object: Dotnet dn=new Dotnet(); NOW THE QUESTION IS WHICH ..

Answer / bakku pavan kumar

new Dotnet(); is the object,and dn is the reference to that
object.Because,
i)
you know that REFERENCE TYPES are stored in MANAGED HEAP SO
new Dotnet(); is stored in MANAGED HEAP BUT dn is stored on
STACK MEMORY AREA.
ii)
AND,until and unless we use new keyword there is no any memory
allocation.so anything that associated with new keyword is
called as an OBJECT

WHAT WILL YOU SAY???????????
PLEASE COMMENT...........

Is This Answer Correct ?    20 Yes 0 No

FOR EXAMPLE : CLASS Dotnet { } creating object: Dotnet dn=new Dotnet(); NOW THE QUESTION IS WHICH ..

Answer / satya

in Dotnet dn=new Dotnet(); here Dotnet dn creates a
reference variable(LHS) and new Dotnet(); creates an object.

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More C Sharp Interview Questions

What does Dispose method do with the connection object?

3 Answers  


What is console readkey in vb net?

0 Answers  


What is out int in c#?

0 Answers  


How do you escape c#?

0 Answers  


Classes and structs can be declared as static, is this statement true or false?

0 Answers  






Please write a program to display “welcome to bestinterviewquestion.com” in c#?

0 Answers  


What is hierarchical inheritance in c#?

0 Answers  


What is the role of the datareader class in ado.net connections?

0 Answers  


Is there any way to access private memebers of an object from another object?

4 Answers   TCS,


How can i Spawn a Thread

0 Answers   HCL,


what is the purpose of interface in c#.net

6 Answers  


Explain “static” keyword in c#?

0 Answers  


Categories