ADF means 'automatic document feeder'
CLO means 'collateralized loan obligation'
Answer:
BPO Role in India's Economic Growth
The role played by BPOs in boosting India's economy shows that the IT and ITeS sector have been contributing largely to the economic growth of India. The growth in the contribution of BPOs to Gross Domestic Product has shown a steady rise from 1.2% to 5.4%.
By the way i undersood the question it is most probably a fuse because as soon as a current above the one that is meant to pass passes it melts thus breaking the circuit
Answer:
// here is code in C++.
#include <bits/stdc++.h>
using namespace std;
//main function
int main()
{
// variable
int n;
cout<<"enter a number:";
// read the input
cin>>n;
// find the square root of the absolute value
float square_root=sqrt(abs(n));
// print the square_root
cout<<"square root of "<<n<<" is: "<<square_root<<endl;
return 0;
}
Explanation:
Read a number from user and assign it to "n".Then find its absolute value with abs() function.Then calculate the square root of the absolute value with sqrt() function.Print the square root of the number.
Output:
enter a number:-17
square root of -17 is: 4.12311