Answer:
First one is INHERITANCE. Second one is AGGREGATION.
Answer:
Font properties
Paragraph properties
Section properties
Explanation:
The Reveal formatting pane allows you to reveal and review the font and paragraph formatting in Word documents. To use this feature, you can select the text you wish to view the formatting for and press Shift + F1. This feature also gives you an option to compare the formatting of the selected text with another selection.
I believe the answer is role.
I'm not entirely sure, but I hope this helps:)
If a class contains more than one constructor, computer determines the appropriate constructor by matching all the attributes, like the number, data type and position. Here's the example where the row public AirConditioner(){} is the default constructor that can use <span>default settings or initialize manually (sorry for tabulation, not my fault)</span>:
<span>class AirConditioner{ enum ConditionerMode{ Automatic, } public ConditionerMode Mode; public int MinTemperature = 18; public int MaxTemperature = 20;
public AirConditioner(){ }
public AirConditioner(ConditionerMode mode){ Mode = mode; } public AirConditioner(ConditionerMode mode, int MinTemp, int MaxTemp){ Mode = mode; MinTemperature = MinTemp; MaxTemperature = MaxTemp; }}</span>