<span>The social commerce feature that includes a stream of events to create a history for friends to view is called a <u>timeline</u>.
You can see it on Facebook, or any other social media you use - timeline is where you can see what other people are doing, or where they can see what is happening in your life, if you choose to share that with your friends on a social media network of your choice.</span>
You can click the ctrl and minus button at the same time
The tools that would be used to make header 1 appear and look like header 2 is the alignment tool icon and the Bold tool icon.
To understand this question, we must understand the interface of the Microsoft Excel.
<h3>What is Microsoft Excel?</h3>
Microsoft Excel is a spreadsheet that can be used for a variety of features such as:
- Computation of Data sets and variables
- Calculation of Business Data
- Arrangement and Analysis of Data into Tables etc.
As a Microsoft software, Microsoft Excel can also be used to edit sheets. In the image attached, the required tool icons needed to change the header 1 into header 2 is the alignment tool icon and the Bold tool icon.
The two tools can be seen in the image as the two lower left icons.
Learn more about Microsoft Excel here:
brainly.com/question/25863198
Answer:
The constructor signature is defined as the constructor name followed by the parameter list.
Explanation:
In object oriented programming, a class constructor is a special method that will run automatically whenever a new object is created from the class. The constructor name is same with the class name. Besides, the class constructor is often used to initialize the attributes with initial values. Those initial values are held by the parameter list of the constructor.
One example of the constructor defined in a Java class is as follows:
// class name
public class BankAccount {
// attribute names
private String holder;
private double amount;
// constructor name
public BankAccount(String holder, double amount) // parameter list
{
this.holder = holder;
this.amount = amount
}
}