Answer:
The answer is "Home cells Or Home Tab".
Explanation:
The Excel Home Tab is also known as the home cell, it also is used to execute the standard commands like bold, highlight, copy/paste. It also uses templates in a worksheet for cells, which is used to Insert and Delete Cells, and the wrong cell can be defined as follows:
- In choice Formulas cell or Tab it is used to add the formula, that's why it is wrong.
- On the choice page cell or Tab is used to view the data, that's why it is wrong.
The gradual and cumulative accomplishment of endeavors required by a company to finish a project is a <em>"Workstream"</em>.
<em>"Workstream Collaboration"</em> is a way of working adopted by companies to achieve efficiency.
And within the types of projects that require collaboration, we could name: proposals, instructional manuals, and/or long reports, which are tasks hardly produced by just 1 person.
So, project collaboration converges resources and people from different backgrounds to accomplish a project throughout different boundaries such as corporate, departmental and national wide depending on the complexity of the project.
System software is the answer.
Answer:
#include<iostream>
using namespace std;
int main(){
int x1,x2,x3;
int y1,y2,y3;
cout<<"Enter the value of first point(x1,y1): ";
cin>>x1>>y1;
cout<<"\nEnter the value of second point(x2,y2): ";
cin>>x2>>y2;
cout<<"\nEnter the value of third point(x3,y3): ";
cin>>x3>>y3;
}
Explanation:
first include the library iostream for use the input/output commands
then, write the main function. within the main function declare the variable which store the value of points.
after that, use the 'cout' for output. It has the function which print the value or message on the screen.
and 'cin' is used to store the value in the variable.
So, in the above code cout ask for enter the value of point and after enter value by user, cin store in the variables.
Note: you have to enter two value with space or by enter.