Answer:
I would say Henry Ford's invention; the Ford car company, since we still have Ford cars running nowadays.
Explanation:
please mark me as the brainlest answer please
if you do it then I will answer your all questions.
Answer:
a transducer
Explanation:
A transducer happens to be a device that is being used for converting one form of energy into another generally when converting the input energy to the output energy. And for the transduction to take place, the change of one form of energy also occurs, like the conversion of mechanical energy to the electrical energy and also from electrical energy to mechanical energy, and which is what is required here. Hence, the correct option here is the transducer.
Answer:
Correct answer is option B (The reason for using supertypes is to minimize the number of nulls and to minimize the likelihood of redundant relationships)
Explanation:
Entity supertype
A entity supertype is a generic entity type which is related with one or more subtypes.
Use of entity supertype:
The reason for using entity supertype is to reduce redundant relationships and it is also used to minimize the number of nulls.
Answer:
#include <iostream>
using namespace std;
int main()
{
int side1=0;
int side2=0;;
int side3=0;
cout <<"Enter side one measurement";
cin >> side1;
cout <<"Enter side two measurement";
cin >> side2;
cout <<"Enter side three measurement";
cin >> side3;
if(side1+side2>side3||side1+side3>side2||side2+side3>side1){
if (side1==side2 && side2==side3)
{
cout <<"equilateral triangle"<<endl;
}
else if(side1==side2||side2==side3||side1==side3){
cout <<"Isosceles triangle"<<endl;
}
else{
cout <<"scalene triangle"<<endl;
}
}else{
cout<<"No triangle";
}
return 0;
}
Explanation:
The code is written in c++. It takes measurements of each side from users as input and check the types of triangle based on the following formula.
1. Equilateral Triangle
If all sides of a triangle are equal than it's an equilateral triangle.
2. Isosceles Triangle
If any two sides of a triangle are equal than it's an Isosceles triangle.
3. Scalene Triangle
If all the sides of a triangle are of different length than it's an Scalene triangle.
In a triangle the sum of two sides is greater than third side otherwise it's not a triangle.