Answer:
Reduce manufacturing costs.
Explanation:
Hope This Helps
Have A Great Day
Answer:
Java program explained below
Explanation:
FindSpecialNumber.java
import java.util.Scanner;
public class FindSpecialNumber {
public static void main(String[] args) {
//Declaring variable
int number;
/*
* Creating an Scanner class object which is used to get the inputs
* entered by the user
*/
Scanner sc = new Scanner(System.in);
//getting the input entered by the user
System.out.print("Enter a number :");
number = sc.nextInt();
/* Based on user entered number
* check whether it is special number or not
*/
if (number == -99 || number == 0 || number == 44) {
System.out.println("Special Number");
} else {
System.out.println("Not Special Number");
}
}
}
_______________
Output#1:
Enter a number :-99
Special Number
Output#2:
Enter a number :49
Not Special Number
Answer:
ur answer friend
Explanation:
answer
<em>S</em><em>o</em><em>l</em><em>i</em><em>d</em><em>-</em><em>F</em><em>u</em><em>e</em><em>l</em><em> </em><em>R</em><em>o</em><em>c</em><em>k</em><em>e</em><em>t</em><em> </em><em>-</em><em> </em>a solid-propellant rocket or solid rocket is a rocket with a rocket engine that uses solid propellants. The earliest rockets were solid-fuel rockets powered by gunpowder; they were used in warfare by the Chinese, Indians, Mongols and Persians, as early as 13th century.
<em>L</em><em>i</em><em>q</em><em>u</em><em>i</em><em>d</em><em>-</em><em>F</em><em>u</em><em>e</em><em>l</em><em> </em><em>R</em><em>o</em><em>c</em><em>k</em><em>e</em><em>t</em><em> </em><em>-</em><em> </em>a liquid-propellant rocket or liquid rocket utilizes a rocket engine that use liqiud propellants. An inert gas stored in a tank at a high pressure is sometimes used instead of pumps in simpler small engines to force the propellants into the combustion chamber.
<em>I</em><em>o</em><em>n</em><em> </em><em>R</em><em>o</em><em>c</em><em>k</em><em>e</em><em>t</em><em> </em><em>-</em><em> </em>an ion thruster or ion drive is a form of electric propulsion used for spacecraft propulsion. It creates thrust by accelerating ions using electricity. The Deep Space 1 spacecraft, powered by an ion thruster, changed velocity by 4.3 km/s ( 9600 mph ) while consuming less than 74 kg ( 163 lb ) of xenon.
<em>P</em><em>l</em><em>a</em><em>s</em><em>m</em><em>a</em><em> </em><em>R</em><em>o</em><em>c</em><em>k</em><em>e</em><em>t</em><em> </em><em>-</em><em> </em>in this type of rocket, a combination of electric and magnetic fields are used to break down the atoms and molecules of a propellant gas into a collection of particles that have either a positive charge (ions) or a negative charge (electrons). In other words, the propellant gas becomes a plasma.
I think its helpful to you
Please mark as brainliest answer
Answer:
Hello, I'm good. Thank you for asking