The correct answer is centrifugal force.
The force that pulls out from the center on a body that is in a circular motion is called centrifugal force. This force increases as the speed of motion increases. It is centrifugal force that results in a strong outward pull on your vehicle traveling around a corner.
<u>Answer:</u>
<u>Correct</u>
<u>Explanation:</u>
Indeed, the world application is a word processing software used by many professionals and students alike.
Read a document: To do this, the user should go to the document area found at the top left corner of the tool bar.
Find the name of the document: By looking at the Title bar.
Change the way a document is viewed: The Ribbon area is located at the top right section of the screen near the minimize icon.
Find help to do a certain activity on word: Close to the Ribbon area there is a dialog box having the image of a bulb.
Go up and down to different parts of a document: By going to the scroll bar which found at the extreme right hand side (margin) of the page.
Determine the page number of the document: By going to the Status bar found at the bottom right of the page.
Answer:
The program to this question can be describes as follows:
Program:
#include <stdio.h> //defining header file
int main() //defining main method
{
int n,i,x=0; //defining integer variable
printf("Enter a number: "); //print message
scanf("%d",&n); //input value from the user
printf("%d\n",n); //print input value
for(i=1;i<n;i++) //loop to count reverse number
{
x=n-i; //calculate value
printf("%d\n",x); //print value
}
return 0;
}
Output:
Enter a number: 3
3
2
1
Explanation:
- In the above program, three integer variable "n,i and x" is declared, in which variable n we take input from the user end and the variable i and x is used in the loop to calculate the value in the reverse order.
- In the next step, a loop is declared, in which the variable x calculates the value in reverse order and uses a print method to print its value.
Answer:
WANs have a large capacity, connecting a large number of computers over a large area, and are inherently scalable. They facilitate the sharing of regional resources. They provide uplinks for connecting LANs and MANs to the Internet.13 Jul 2018