Answer:
Distillation, heat
Explanation:
Here in this question, we simply want to look at the best options that could fit in the gaps.
We have a mixture of liquids having boiling points which is far from each other.
Whenever we have a mixture of liquids with boiling points far away from each other, the best technique to use in separating them is to use distillation. That is why we have that as the best fit for the first missing gap.
Now, to get the liquids to separate from each other, we shall be needing the heating mantle for the application of heat. This ensures that the mixture is vaporized. After vaporization, the condensing tube will help to condense the vapor of each of the liquids once we reach the boiling point of either of the two.
Kindly note that the liquid with the lower temperature will evaporate first and will be first obtained. In fact after reaching a little above the boiling point of the lower boiling liquid, we can be sure that what we have left in the mixture pot is the second other liquid with the higher boiling point.
Answer:
18 pieces of furniture
Explanation:
Since you receive $120.93 per furniture piece and a the month's commission is $2,176.74 you divide the commission by the furniture price.
Answer:
= -0.303 KW
Explanation:
This is the case of unsteady flow process because properties are changing with time.
From first law of thermodynamics for unsteady flow process

Given that tank is insulated so
and no mass is leaving so

Mass conservation 
is the initial and final mass in the system respectively.
Initially tank is evacuated so 
We know that for air
,

So now putting values

= -0.303 KW
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