Answer:
scope
Explanation:
Destructor is a member function and it call automatically when the class object goes out of scope.
Out of scope means, the program exit, function end etc.
Destructor name must be same as class name and it has no return type.
syntax:
~class_name() { };
For example:
class xyz{
xyz(){
print(constructor);
}
~xyz(){
print(destructor);
}
}
int main(){
xyz num;
}//end program
when the object is create the constructor will called and when the program end destructor will call automatically.
Answer:
"It is media that is distributed in paper form, such as magazines and newspapers."
Answer:
Explanation:
Go and ask a teacher or search
Answer:
Mainframes
Explanation:
Mainframes are utilized by many major corporations and government agencies. They are also used in banking, accounting, and healthcare to name a few.
The answer is C, ROM often stores the basic instructions a computer needs when powering on, part if the BIOS.