Answer:
Open a form in Google Forms.
In the top right, click More .
Click Add collaborators.
Under "Invite people," type the names or email addresses of the people you want to work with.
Click Send.
DNS server because that can be changed manually to googles( or many others) aswell as the default
Answer:





Explanation:
Required
Evaluate each expression
The simple rules to follow are:
(1) All expressions in bracket will be evaluated based on its data type
(2) Divisions will return only integer values
(3) Integers immediately after string values will be concatenated (not added)
So, the results are as follows:

Evaluate till a string is encountered

Followed by "."
Then:

-- because expressions after string operations are concatenated.
So, we have:


Evaluate till a string is encountered


So, we have:


Evaluate till a string is encountered


So, we have:
Evaluate till a string is encountered

--- multiply 2 and 3, then concatenate
So, we have:


Since a string starts the expression, the whole expression will be concatenated except the multiplication and the expressions in bracket.
So, we have:

Productivity programs improved the professional lives of people because:
- made it easier and faster to communicate with others
- made it easier to manipulate numbers in a spreadsheet
- made it easier and less expensive to present information
<h3>What is productivity?</h3>
Productivity is known to be the level of efficiency in regards to the production of goods or services and it is one that is rated by some measure.
Hence, Productivity programs improved the professional lives of people because:
- made it easier and faster to communicate with others
- made it easier to manipulate numbers in a spreadsheet
- made it easier and less expensive to present information
Learn more about productivity from
brainly.com/question/14262252
#SPJ1
Answer:
weight_pounds=float(input("Enter the weight in pounds:\n"))#taking input of weight.
height_inches=float(input("Enter the height in inches:\n"))#taking input of thye height.
bmi=(weight_pounds/(height_inches**2))*703#calculating the bmi.
print('The body mass index is '+str(bmi))#printing the result.
Ouput:-
Enter the weight in pounds:
207.8
Enter the height in inches
:
72
The body mass index is 28.163395061728398
Explanation:
The above written program is in python.First I have taken input from the user of the weight in pounds then taking input of the height in inches.Then calculating the bmi and storing it in the variable bmi.Then printing the bmi in the end.