Answer:
A.
The power generated by a wind farm is not constant because of irregular wind patterns.
Answer:
None of these
Explanation:
There are different types of amplifiers, and each has different characteristics.
- Voltage amplifier needs high input and low output resistance.
- Current amplifier needs Low Input and High Output resistance.
- Trans-conductance amplifier Low Input and High Output resistance.
- Trans-Resistance amplifier requires High Input and Low output resistance.
Therefore, the correct answer is "None of these "
Answer:
275 Kelvin
Explanation:
Coefficient of Performance=11
Answer:
// Program is written in C++
// Comments are used to explain some lines
// Only the required function is written. The main method is excluded.
#include<bits/stdc++.h>
#include<iostream>
using namespace std;
int divSum(int num)
{
// The next line declares the final result of summation of divisors. The variable declared is also
//initialised to 0
int result = 0;
// find all numbers which divide 'num'
for (int i=2; i<=(num/2); i++)
{
// if 'i' is divisor of 'num'
if (num%i==0)
{
if (i==(num/i))
result += i; //add divisor to result
else
result += (i + num/i); //add divisor to result
}
}
cout<<result+1;
}