Answer: (C) Service-oriented
Explanation:
The service-oriented architecture is the one of the type of software design which provide various types of service and application over the network by using different type of communication protocols.
- The service oriented architecture is basically based on the distributed computing on the different types of platform.
This architecture design is mainly based upon the reply and request service from client to the server and vice versa. The service oriented architecture works on the basic principle is that the technology and the products should be independent.
Therefore, Option (C) is correct.
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
AACAdvanced Audio Coding Computing » Software -- and more..
She is communicating by using a gesture...
Please mark as brainliest...
Uninstall instagram and install it again. log in and go to settings and fix up the notifications maybe that’ll work??
if it doesn’t, go to your apple settings and see if the notifications for instagram are on.
also try shutting your phone off for a few seconds if you do either one.