Mash-up, I believe, is the correct answer.
Answer:
Option A i.e., software package.
Explanation:
Prewritten, available on the market the software packages, which not necessitate a company's desire to actually compose its software for certain functionalities, will be applied to as software packages.
A software package is essentially a finite number of programs or software components that function together so that they achieve different tasks and objectives.
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.
It is actually podcast! i took the quiz as well :)
HDLC is a synchronous Data Link layer bit-oriented protocol developed by the International Organization for Standardization (ISO).