Answer:
True
Explanation:
Dual home host - it is referred to as the firewall that is incorporated with two or more networks. out of these two networks, one is assigned to the internal network and the other is for the network. The main purpose of the dual-homed host is to ensure that no Internet protocol traffic is induced between both the network.
The most simple example of a dual-homed host is a computing motherboard that is provided with two network interfaces.
Answer:
1. cout << "Num: " << songNum << endl;
2. cout << songNum << endl;
3. cout << songNum <<" songs" << endl;
Explanation:
//Full Code
#include <iostream>
using namespace std;
int main ()
{
int songNum;
songNum = 5;
cout << "Num: " << songNum << endl;
cout << songNum << endl;
cout << songNum <<" songs" << endl;
return 0;
}
1. The error in the first cout statement is that variable songnum is not declared.
C++ is a case sensitive programme language; it treats upper case and lower case characters differently.
Variable songNum was declared; not songnum.
2. Cout us used to print a Variable that has already been declared.
The error arises in int songNum in the second cout statement.
3. When printing more than one variables or values, they must be separated with <<
Answer:2058.992KJ
Explanation:
Given data
Mass of object
=521kg
initial velocity
=90m/s
Final velocity
=14m/s
kinetic energy of body is given by=


change in kinectic energy is given by substracting final kinetic energy from initial kinetic energy of body.
Change in kinetic energy=

Change in kinetic energy=

Change in kinetic energy=2058.992KJ
Answer:
401.3 kg/s
Explanation:
The power plant has an efficiency of 36%. This means 64% of the heat form the source (q1) will become waste heat. Of the waste heat, 85% will be taken away by water (qw).
qw = 0.85 * q2
q2 = 0.64 * q1
p = 0.36 * q1
q1 = p /0.36
q2 = 0.64/0.36 * p
qw = 0.85 *0.64/0.36 * p
qw = 0.85 *0.64/0.36 * 600 = 907 MW
In evaporation water becomes vapor absorbing heat without going to the boiling point (similar to how sweating takes heat from the human body)
The latent heat for the vaporization of water is:
SLH = 2.26 MJ/kg
So, to dissipate 907 MW
G = qw * SLH = 907 / 2.26 = 401.3 kg/s
Answer:
Who would pay for my product or service?
Who has already bought from me?
Am I overestimating my reach?.
What does my network think?.
Am I making assumptions based on my personal knowledge and experience?
What's my revenue model
How will I sell my product or service?
How did my competitors get started?
How will I find my customers?
Is there room to expand my target market?