Answer:
A. set_union
Explanation:
The algorithm set_union is used to find the elements in one range of elements that do not appear in another range of elements.
True a pdf is a file format that provides a electronic image of a document and it can be viewed, printed and electronically transmitted.
Answer:
// C++ program to demonstrate inheritance
#include <iostream>
using namespace std;
// base class
class Animal {
public:
void eat() {
cout << "I can eat!" << endl;
}
void sleep() {
cout << "I can sleep!" << endl;
}
};
// derived class
class Dog : public Animal {
public:
void bark() {
cout << "I can bark! Woof woof!!" << endl;
}
};
int main() {
// Create object of the Dog class
Dog dog1;
// Calling members of the base class
dog1.eat();
dog1.sleep();
// Calling member of the derived class
dog1.bark();
return 0;
}
When you're busy doing things and/or be too sick for over the phone communication
Answer:
Boolean Operators
Explanation:
When performing a boolean search, boolean operators allow users to combine keywords with operators (or modifiers) such as AND, NOT and OR to further produce more relevant results.
The boolean operators AND and OR are used to include certain words and phrases during the search while the boolean operator NOT is used to exclude certain words and phrases.