Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


what is use to destroy an object? illustrate.

Answers were Sorted based on User's Feedback



what is use to destroy an object? illustrate...

Answer / rakhi

Object is distroyed when it goes out of the scope and it
can be distroy with its default destructor.

Is This Answer Correct ?    18 Yes 0 No

what is use to destroy an object? illustrate...

Answer / sujatha

object can be destroyed by using DESTRUCTORS

EX:

class A
{

int p;
public:
A(int x)
{
x=p;
cout<<"constructor is called memory is allocated to
variable x\n";

}
void show()
{
cout<<"x="<<x;
}

~A()
{

cout<<"destructor called and deaalocte memory occupied by
x\n";

}
};

void main()
{
A a1(10);
a1.show();
}

output

constructor called memory is allocated to variable x

x=10
destructor called and deaalocte memory occupied by x

Is This Answer Correct ?    9 Yes 0 No

what is use to destroy an object? illustrate...

Answer / sweety

An object is destroyed to make memory available for further
use by any other object. and this can bo done by using
destructors.

Is This Answer Correct ?    5 Yes 0 No

what is use to destroy an object? illustrate...

Answer / safe

an object is destroyed to make memory free which is
allocated by object. it can automatically done by destructor
(default destructor)if we dont call a destructor.

Is This Answer Correct ?    4 Yes 1 No

what is use to destroy an object? illustrate...

Answer / sumeet sharma

Simple a destructor function is used for it.
it takes the resources acquired by the object.
it is called when the object goes "out of scope"

Is This Answer Correct ?    1 Yes 2 No

Post New Answer

More OOPS Interview Questions

how to find the correct email address format by using the programe?

1 Answers   Accenture,


What are the important components of cohesion?

0 Answers  


Write an operator overloading program to Overload ‘>’ operator so as to find greater among two instances of the class.

1 Answers  


What is object in oops?

0 Answers  


What are the advantanges of modularity

2 Answers  


Can we have a private constructor ?

12 Answers   HSBC, Ness Technologies, TCS, Wipro,


what is function overloading..?

4 Answers  


The IT giant Tirnop has recently crossed a head count of 150000 and earnings of $7 billion. As one of the forerunners in the technology front, Tirnop continues to lead the way in products and services in India. At Tirnop, all programmers are equal in every respect. They receive identical salaries and also write code at the same rate. Suppose 14 such programmers take 14 minutes to write 14 lines of code in total. How long will in take 5 programmers to write 5 lines of code in total ?

6 Answers   TCS,


Get me an image implementation program.

0 Answers  


What is the advantage of oop over procedural language?

0 Answers  


How to execute business logic for only once ..?even though user clicks submit button multiple times by mistake..? (i disabled JavaScript)

1 Answers  


What do we mean by a hidden argument in C++?

1 Answers  


Categories