Answer:
<h3>Click the chart , and then click the Chart design tab . Click Add Chart Element > Legend. To change the position of the , legend, choose Right, Top, Left or Bottom. To change the format of the legend,click more Legend options, and then make the format changes that you want.</h3>
<h2>Hope this helps you</h2>
Answer:
uses binary code to store data!
Explanation:
Answer:
public: virtual void print()=0;
Explanation:
An abstract class contains a pure virtual function. Pure virtual class cannot be instantiated but it can be subclassed and the subclass can provide an implementation of the function.
A virtual function declaration in the class is preceded by the virtual keyword. For example, virtual void print();
A pure virtual function declaration is followed by '=0;'
public: virtual void print()=0;