Answer:
<u>Parametric design</u> involves engineers building up a 3D geometry piece by piece. 2D sketches turn into 3D features, with constraints and relations duly applied to fit the designer's intent.
Explanation:
Hope this helps
Have parental controls on certain sites
Hi!
These programs which allow a peripheral device to interact with the rest of the computer system are going to be <em>device drivers.</em>
Hopefully, this helps! =)
Answer:
1. Read the End User License Agreement (EULA) for each software product you purchase.
2. Purchase CD software only from reputable resellers.
3. Purchase software downloads directly from the manufacturer's website.
4. Register your software to prevent others from attempting to install your software on their computers.
5. Report piracy if you discover that software you purchased is not authentic or if you suspect that an online reseller or retail establishment is selling counterfeit software.
Link: https://www.techwalla.com/articles/how-to-stop-software-piracy
-Please mark as brainliest!- Thanks!
Answer:
import java.util.Scanner;
public class num8 {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.println("Enter the mass");
double mass = in.nextDouble();
double weight = calWeight(mass);
System.out.println("The weigth is "+weight);
}
static double calWeight(double mass){
double weight = mass*9.80665; // assume a = accelation due to gravity = 9.80665N
if(weight>500){
System.out.println("Too Heavy");
}
else if(weight<100){
System.out.println("Too Light");
}
return weight;
}
}
Explanation:
- Using Java programming language
- The main method is created to request and store a variable, mass in kilogram. The main method call calWeight() and passes the value for mass
- A method calWeight() is created that calculates the weight in newtons (mass * 9.8).
- The method checks if the weight is greater than 500 (prints too heavy) if less than 100(prints to light)
- Returns the weight