Hacking is correcttttttttt
The lightning efficiency based on the scenario depicted will be C. 56 lumens/Watt, more efficient.
<h3>How to calculate the lightning efficiency</h3>
The efficiency of the incandescent bulb will be:
= 450/40 = 11.25 lumens per watt.
The efficiency of the LED bulb will be:
= 450/8 = 56 lumens per watt.
In this case, the LED bulb is more efficient than the incandescent bulb.
Therefore, the lighting efficiency will be 56 lumens/Watt, more efficient
Learn more lightning efficiency on:
brainly.com/question/25927632
Answer:
a
Explanation:
digital identity is the answer
Answer:
(C) 29°
Explanation:
ACME THREAD ANGLE : it is the angle measured between the thread axis and thread the thread flanks, with the help of thread angle we calculate the shape of screw thread it is the mean of v thread and square thread the acme thread angle is denoted by β every thread has its own charactersistics which depends on the pitch and diameter of the thread
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;
}