B/ Divide the viewpoint into three equal vertical divisions
MARK ME BRAINLIEST
1. Sometimes referred to as a run around, word wrap is a feature in text editors and word processors that moves to the next line when reaching the end without requiring you to press Enter. For example, in the picture below you can see as each section is shrunk the sentence is wrapped, so it does not extend past the border. You can see a live example of how text wraps by resizing the browser window on this page.
2. word proc·ess·ing
the production, storage, and manipulation of text on a computer or word processor.
Answer:
// here is code in C++.
#include <bits/stdc++.h>
using namespace std;
// main function
int main()
{
// variables Declaration and initialization
int no_gallon=16;
int dis=312;
// find the miles per gallon
double mile_gallon=dis/double(no_gallon);
// print the results
cout<<"number of gallons: "<<no_gallon<<endl;
cout<<"distance travel before refueling: "<<dis<<endl;
cout<<"miles per gallon is: "<<mile_gallon<<endl;
return 0;
}
Explanation:
Declare and initialize the number of gallon and distance travel without refueling. Calculate the miles per gallon by dividing distance with number of gallons.Then print the results.
Output:
number of gallons: 16
distance travel before refueling: 312
miles per gallon is: 19.5
Two different Operating Systems are
Windows 7
LINUX
Explanation:
- Windows is an Operating System which was released by Microsoft to be used on Personal Computers.
- They are used to manage software and perform various tasks.
- LINUX is another type of operating system that is used on Super computers
- Linux has been used in homes and organisation desktops in a great number.
- It is used for great number of computing embedded tasks.