For a series magnitude of nth term and sum of first n terms are equal for all values of n=1,
Answers
// CPP Program to find nth term of
// geometric progression
#include <bits/stdc++.h>
using namespace std;
int Nth_of_GP(int a, int r, int N)
{
// using formula to find
// the Nth term
// TN = a1 * r(N-1)
return( a * (int)(pow(r, N - 1)) );
}
// Driver code
int main()
{
// starting number
int a = 2;
// Common ratio
int r = 3;
// N th term to be find
int N = 5;
// Display the output
cout << "The "<< N <<"th term of the series is : "
<< Nth_of_GP(a, r, N);
return 0;
}
Step-by-step explanation:
Generally, it is agreed that there are five dimensions to the business environment that influence performance. These dimensions are: a) Economic b) Social c) Technological d) Political and e) Legal. Most obviously, the economic environment consists of the conditions under which any given business finds itself within the market that corresponds to the service provided. These economic conditions include economic policies, interest rates, inflation rates, and consumer incomes. However, as previously stated, the business environment is not limited purely to economic concerns, for businesses are also affected by social and technological influences. Put simply, the social environment is the underlying societal structure within which the business operates. This structure would include things like literacy rates, traditions, educational levels, etc. The technological environment, on the other hand, relates to the technological advances that arise at any given point in time. This includes innovations in medicine, bio tech, telecommunication, etc. But businesses aren't purely limited to these influences, for there are political and legal dimensions to the business environment as well. Political dimensions consist of factors like the current government's attitude toward various industries, and in America, political lobbies are a big example of the often intertwined relationship of politics and business. Other factors include major political parties and the beliefs and practices that correspond to those parties. Finally, the last dimension of the business environment is the legal environment, and this consists of the rules and regulations under which a business must operate. This dimension is somewhat related to the political dimension since it includes the laws drafted by the government in power, but more specifically, this dimension is largely controlled by the three levels of government that affect business: central, state, and local. The legal environment is largely geared toward protecting consumers' interests, such as the mandatory inclusion of health warnings on packaged cigarettes.