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
Answer:
The answer is "Option a".
Explanation:
The B.I. is a method, methodology, software, and development set that makes raw data usable and relevant, which facilitates improved decision-making and competitive opportunities, and certain choices were wrong, which can be described as follows:
- In option b, The A.I is uses in the machines, that's why it is not correct.
- In option c, It is used to analyze the data, which used in business. that's why it is not correct.
- In option d, It is wrong, because it a part of A.I.
Although a user directory is treated as a file, it is flagged to indicate to the file manager that this file is really a subdirectory whose records are filenames that point to files.
Answer:
M1 is equal to $ 4 trillion
Explanation:
M1 money supplies are liquid money supplies like cash, checkable deposits, traveler's check etc. It is equal to;
M1= coins and currency in circulation + checkable (demand) deposit + traveler's check.
M2 money supply are less liquid and is equated as;
M2 = M1 + savings deposit + money market fund + certificates of deposit + other time deposits.
Savings = $7 trillion
Checkable deposit = $3 trillion
Money market fund = $1 trillion
Currency = $1 trillion
Certificates of deposit = $1 trillion
M1 = currency + checkable deposit
= $1 + $ 3
= $4 trillion.