Answer:
Option A
Chemical engineering
Explanation:
Chemical engineering mainly encompass the study of behavior of different particles such as petroleum, water, drugs and other products. When Anne is involved in a study with engineers who study flow of particles, the flow, viscosity and other properties are among the behavior that chemical engineers are involved in.
Answer:

Explanation:
Cold water in: 
Hot water in: 

Step 1: Determine the rate of heat transfer in the heat exchanger




Step 2: Determine outlet temperature of hot water



Step 3: Determine the Logarithmic Mean Temperature Difference (LMTD)










Step 4: Determine required surface area of heat exchanger



Step 5: Determine length of heat exchanger



Answer:
<em>Both Tech A and Tech B are correct.</em>
<em>Explanation:</em>
<em>The Hall effect sen sensor are used to control displacements and rotations of various body components of the vehicles, engine vibrations , and the ignition system</em>
<em>The optical-type sensor converts rays of light into electronic signals. It measures the quantity physically of which the translates to a form that is understandable or readable by an instrument. An optical sensor is larger part of a system that integrates light sources, a device for measuring and the optical sensor, which therefore is usually connected to an electrical trigger.</em>
Answer:
They are combination structures made up of solid, and shell structures.
Explanation:
Thinking of a lunch pack which is shaped as a solid bag made up of different compartments to hold food, what comes to mind are;
1. The solid structure: This is seen in the form of the bag which has solid makeup.
2. The shell structure: This is seen in the different compartments holding the different types of foods. Shell structures are usually in the form of containers made to hold something in.
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