Answer:
1. Tokyo skytree tower is the tallest tower in the world, measuring 2080 feet. That's almost twice the size of the Eiffel Tower!
2.The process of building the tower began in 2008. The project was completed on 29 February 2012.
3. Pairing form with function, Skytree will serve as a TV and radio broadcast tower.
Answer:
The rate of entropy change of the air is -0.10067kW/K
Explanation:
We'll assume the following
1. It is a steady-flow process;
2. The changes in the kinetic energy and the potential energy are negligible;
3. Lastly, the air is an ideal gas
Energy balance will be required to calculate heat loss;
mh1 + W = mh2 + Q where W = Q.
Also note that the rate of entropy change of the air is calculated by calculating the rate of heat transfer and temperature of the air, as follows;
Rate of Entropy Change = -Q/T
Where Q = 30Kw
T = Temperature of air = 25°C = 298K
Rate = -30/298
Rate = -0.100671140939597 KW/K
Rate = -0.10067kW/K
Hence, the rate of entropy change of the air is -0.10067kW/K
Pooping problems is not an affect
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
D sounds more formal than the rest.