Answer:
<u>C program to find the sum of the series( 1/2 + 2/3 + ... + i/i+1)</u>
#include <stdio.h>
double m(int i);//function declaration
//driver function
int main() {
int i;
printf("Enter number of item in the series-\n");//Taking input from user
scanf("%d",&i);
double a= m(i);//Calling function
printf("sum=%lf",a);
return 0;
}
double m(int i)//Defining function
{
double j,k;
double sum=0;
for(j=1;j<i+1;j++)//Loop for the sum
{
k=j+1;
sum=sum+(j/k);
}
return sum;
}
<u>Output:</u>
Enter number of item in the series-5
sum=3.550000
You can return it for a refund, however with that money you will need to pay the difference, as they are different models and the 64gb will cost more.
Answer: Network layer
Explanation: Network layer the third layer of the OSI model architecture which is focused on the operation of making the logical paths for the data packets so that they can flow.
The packets carry the addresses of the sender port and the destination port which is added to the header of the packet and then the path is established accordingly so that the packet can travel.
Hey wsg tbh this is an educated guess and I think it’s A. If it’s wrong then it’s my bad
Answer:
r=15
Step-by-step explanation:
If I'm understanding this correctly, you would add 6 to the right side of the equation which would make it 3r = 45. Then you would divide 45 by 3, equaling 15. So that ends up with r = 15.