Answer:
Friction (drag)
Explanation:
The force resisting motion through a fluid is a type of friction, that is called drag.
Answer:
"It is 80 cents"
Explanation:
In order to calculate how much this actually is, we would need to multiply this fraction by the value of a whole dollar which is 1. We can divide the fraction 4/5 and turn it into the decimal 0.80 which would make this much easier. Now we simply multiply...
0.80 * 1 = $0.80
Finally, we can see that 4/5 of a dollar would be 0.80 or 80 cents. Therefore Pradeep would answer "It is 80 cents"
Answer:
type of phishing attacks that<em> targets specific individuals </em>or organizations <u>typically through malicious emails</u>. 12345
Answer:
// Program in C to calculate sum of 1+1.2+.....+1.2.3...n
// include header
#include <stdio.h>
// main function
int main()
{
// variable Declaration and initialization
int n,a,prod=1,sum=0;
// ask to enter the value of n
printf("enter the value of n:");
// read the value of n
scanf("%d",&n);
for(a=1;a<=n;a++)
{
// calculate product
prod=prod*a;
// calculate sum of the series
sum=sum+prod;
}
// print the sum
printf("sum of the series is:%d",sum);
return 0;
}
Explanation:
Read the value of n from user.initialize variables "prod=1" and
"sum=0".Iterate over a for loop to calculate product term as "prod=prod*a".Here prod will have product of all till "a-1" for each "a".Then "a" is multiplied with "prod" and then add to sum.After the loop ends, "sum" will have the total of all the terms.
Output:
enter the value of n:5
sum of the series is:153
Answer:
A. Treaties
Explanation:
Based on the information provided within the question it can be said that in this type of situation where both countries are affected they usually enter into a treaty. This treaty represents an agreement between both countries on how they are going to handle the situation so that both countries get the justice that they want and therefore mutually benefit.