Answer:
//Convert any decimal number to binary number
//Program is written in C++ Programming Language
// Comments are used for explanatory purpose
// Program starts here
#include <iostream>
using namespace std;
// Main Method declared here
int main()
{
int x;
cout<<"Enter any integer number: ";
cin>>x;
DecBin(x);
return 0;
}
// Here a function named DecBin is declared along with an integer variable, x
void DecBin(int x)
{
// Declare an array to store the resulting binary digits
int bindigit[32];
// counter for binary array
int kount = 0;
while (x > 0) {
// Store the remainder of each division in the declared array
bindigit[kount] = x % 2;
x = x / 2;
kount++;
}
// Loop to print the binary digits in reverse order
for (int j = i - 1; j >= 0; j--)
{
cout << bindigit[j];
}
}
// End of Program
Answer:
. Heat transfer can be higher if themal efficiency is lower.
Explanation:
The heat transfer rate to the river water is calculated by this expression:


The actual heat transfer can be higher if the steam power plant reports an thermal efficiency lower than expected.
Answer:
Recycling prevents the emissions of many greenhouse gases and water pollutants.
Explanation:
Answer: A, B and D.
Explanation:
A) If a leaf is iridescent and reflects light or colors from other objects, it helps to stand out from the rest in a low-light environment.
B) The anthocyanin pigments give the leaf a different coloration, so it has a different impact in a darker o flat colored space.
D) Having a large surface area will help to stand out from plants with small leaves.
Graduate from an ABET-accredited engineering program.
Pass the Fundamentals of Engineering (FE) exam.
Work as an engineer for four years.
Pass the Professional Engineering (PE) exam (you cannot take the PE exam without first passing the FE exam).