Answer:it forms a molten mold that makes it hard to be able to smash something into it then make something like a key
Explanation:
Answer:
Temperature on the inside ofthe box
Explanation:
The power of the light bulb is the rate of heat conduction of the bulb,
The thickness of the wall, L = 1.2 cm = 0.012m
Length of the cube's side, x = 20cm = 0.2 m
The area of the cubical box, A = 6x²
A = 6 * 0.2² = 6 * 0.04
A = 0.24 m²
Temperature of the surrounding,
Temperature of the inside of the box,
Coefficient of thermal conductivity, k = 0.8 W/m-K
The formula for the rate of heat conduction is given by:
Answer:
#include <iostream>
#include <iomanip>
using namespace std;
class pointType
{
public:
pointType()
{
x=0;
y=0;
}
pointType::pointType(double x,double y)
{
this->x = x;
this->y = y;
}
void pointType::setPoint(double x,double y)
{
this->x=x;
this->y=y;
}
void pointType::print()
{
cout<<"("<<x<<","<<y<<")\n";
}
double pointType::getX()
{return x;
}
double pointType::getY()
{return y;
}
private:
double x,y;
};
int main()
{
pointType p2;
double x,y;
cout<<"Enter an x Coordinate for point ";
cin>>x;
cout<<"Enter an y Coordinate for point ";
cin>>y;
p2.setPoint(x,y);
p2.print();
system("pause");
return 0;
}