Hi, Please tell me the ISI specification for the duration of concrete to achieve full strength of concrete. Is it 28days?
7 11915is there any simple field method to ascertained the bearing capacity of soil (with least arrangement/ Wedge penetration etc...).
1 5620i want to know details about group exams...am intrested in socilogoy sub...i want to prepair telugu language...pls ans to my ques..give me details abt exam..my id:minu_shailu@yahoo.com
2982Could anyone please let me know IAS coaching institutes providing Weekend classes for Working professionals in Hyderabad? Kindly reply.
1 4323who said "the muslims were fools to ask for safeguards, and the hindus were greater fools to refuse them"?
3 16345Post New UPSC Interview Questions
List out the built in support in go?
What are examples of font styles?
How is Spark SQL not the same as HQL and SQL?
Explain the performance tuning in jvm, jdbc, jms?
TELL US ABOUT A TIME WHEN YOU FAILED TO MEET A DEAD LINE. WHAT WERE THE REPERCUSSIONS?
wat system call?
What is control room?
What are external Ids? Does external ids are unique in salesforce? : salesforce objects & fields
Explain how to use linked server?
We know python is all the rage these days. But to be truly accepting of a great technology, you must know its pitfalls as well. Would you like to talk about this?
Which is better sata or hdd?
What is called dimensional modelling?
What are the primary security issues of web service?
What is the method to content optimization?
Question In a class, there is a reference or pointer of an object of another class embedded, and the memory is either allocated or assigned to the new object created for this class. In the constructor, parameters are passed to initialize the data members and the embedded object reference to get inialized. What measures or design change should be advised for proper destruction and avioding memory leaks, getting pointers dangling for the embedded object memory allocation? Please suggest. Question Submitted By :: Sunil Kumar I also faced this Question!! Rank Answer Posted By Re: In a class, there is a reference or pointer of an object of another class embedded, and the memory is either allocated or assigned to the new object created for this class. In the constructor, parameters are passed to initialize the data members and the embedded object reference to get inialized. What measures or design change should be advised for proper destruction and avioding memory leaks, getting pointers dangling for the embedded object memory allocation? Please suggest. Answer # 1 use copy constructors 0 Shanthila There is something to be taken care in destructor, in copy constructor, suppose the memory is assigned to the embedded member object pointer with the parameter passed value, but if some other objects of different class also are pointing to this memory, then if some one deletes the object then this class member pointer object will become dangling, or if the object is not deleted properly then there will be memory leak. Please suggest the design change required to handle or avoid this situation