A comper??><>?????????????????????????????????????
Answer:
Select the worksheet and click Delete All Filters.
Explanation:
Answer:
Check Explanation.
Explanation:
Task: (1). Apply Underline to cell B5 and Double Underline to cell B6.
(2). Ungroup the worksheets.
(3).use the Format Cells dialog box to ensure that the Underline styles Single and Double are applied, rather than Single Accounting or Double Accounting.
Steps to follow;
Step one: On the Excel document that you are working on, make sure you highlight from B6 cell to F6 cell.
Step two: Then, press CTRL+SHIFT+F.
Step three: from action in step two above, the "format cells dailogue box" will come up, click underline > (underline type) dropdown list > ok.
Step four: next, highlight from B7 to F7.
Step five: press CTRL+SHIFT+F. As in step two above.
Step Six: do the same thing as in Step three above.
Please note that to apply the SINGLE UNDERLINE, you need to type the data in the cell for cells of B6 to F6 ONLY.
Also, for DOUBLE UNDERLINE for B7 to F7; just type the data in the cell and it will apply.
Answer:
Encapsulation:-It is the binding of the data and functions so that they works as one unit.
Inheritance:-When one class acquires the property of another class it is called inheritance.
Polymorphism :-It generally means more than one form
Explanation:
Encapsulation:- class is an example of encapsulation it can hold different data types and functions in a single container called class.
class Name{
public:
string first_name;
string last_name;
void Display()
{
cout<<first_name<<" "<<last_name<<endl;
}
};
Inheritance:-The property of a class acquiring the properties of another class is called inheritance.
Now we will inherit the above defined class.
class person: public Name
{
public:
char gender;
int age;
void Display()
{
cout<<first_name<<" "<<last_name<<gender<<age<<endl;
}
};
int main()
{
Name n;
person p;
n.Display();
p.Display();
}
Polymorphism- There are two types of polymorphism:-
1.Run time polymorphism=The values are decided at run time.
2.Compile time polymorphism=The values are decided at compile time.
Example:-In the above example we have function Display() in both the classes.This is an example of compile-time polymorphism. We are deciding at the time of compilation which display to use.
Answer:
The correct answer to the following question will be "Remove".
Explanation:
A report consists of information taken from tables or queries and information stored in the design of the report such as names, heading, and graphics. Also known as the source of the report are tables or queries that provide the underlying data.
The majority of reporting tools provide only a standard report layout where the report developer may not construct a custom layout with elements positioned in certain areas.
And, If we want to remove any field while working in Design view on a report then we have to click on the remove button for such tasks,
Therefore, the Remove button is the correct answer.