Which of the following FILE tab options can be used to attach a document to an e-mail message?
A. Mail Message
B. Send Using E-mail
C. Share
D. Send as Attachment
Answer: C
You might also like to view...
Given the following classes and code, what is the output of the last statement shown?
class Pet { public: virtual void print(); string name; private: }; class Dog: public Pet { public: void print(); string breed; }; void Pet::print() { cout << "My name is " << name; } void Dog::print() { Pet::print(); cout << ", and my breed is a "<< breed << endl; } Pet* pPtr; Dog* dPtr=new Dog; dPtr->name= "Rover"; dPtr->breed="Weiner"; pPtr= dPtr; pPtr->print(); a. My name is Rover, and my breed is a Weiner b. My name is Rover c. , and my breed is a Weiner d. nothing
XML has its roots in Standard Generalized Markup Language (SGML), a language introduced in the 1980s that describes the structure and content of any machine-dependent information.
Answer the following statement true (T) or false (F)
Windows Defender protects your computer from all of the following EXCEPT ________
A) unexpected software updates B) pop-ups C) hacking agents D) malware
What is the most likely problem if the Windows Firewall is turned off (disabled) every time the computer restarts?
A) There is a virus. B) Another firewall is installed. C) The firewall has received an update that has not been installed. D) The firewall application needs to be updated.