Answer:
Option D
All the above
Explanation:
Depending with the number of occupants in a building, the number of air conditioners required can either be increased or reduced. For instance, if the building is to be a classroom of over 50 students, 1 air-conditioner can't serve effectively. Similarly, the activity of occupants also dictate the amount of air conditioners required since if it's a gym room where occupants exercise often then the air conditioners required is different from if the room was to serve as a lounge. The appliances that also operate in a room require that air conditioners be installed as per the heat that may be generated by the appliances.
Answer:D. Gunter's Chain
Explanation:I know this because a gunter's chain is used for plots of land to be accurately surveyed and plotted, for legal and commercial purposes.
Answer:
The following program is in C++.
#include <bits/stdc++.h>
using namespace std;
void lastChars(string s)
{
int l=s.length();
if(l!=0)
{
cout<<"The last character of the string is: "<<s[l-1];
}
}
int main() {
string s;//declaring a string..
getline(cin,s);//taking input of the string..
lastChars(s);//calling the function..
return 0;
}
Input:-
Alex is going home
Output:-
The last character of the string is: e
Explanation:
In the function lastChars() there is one argument that is a string.I have declared a integer variable l that stores the length of the string.If the length of the string is not 0.Then printing the last character of the string.In the main function I have called the function lastChars() with the string s that is prompted from the user.
Answer:
Constellations
Explanation:
Constellations describes a group of stars that appear to form a pattern or a picture. Example of common patterns are : Leo the Lion or Orion the Great Hunter. It is easy to recognize constellations and most people will tend to orient with these patterns. There are 88 patterns currently known.