Answer:
As the x-values go to negative infinity, the function’s values go to positive infinity.
Explanation:
if the ans choices are:
As the x-values go to negative infinity, the function’s values go to negative infinity.
As the x-values go to negative infinity, the function’s values go to positive infinity.
As the x-values go to positive infinity, the function’s values go to negative infinity.
As the x-values go to positive infinity, the function’s values go to zero.
the ans is the 2nd choice
Answer:
Average heat transfer =42.448w/m^2k
Nud = 13.45978
Explanation:
See attachment for step by step guide
Answer:
8 for dual-op-amp package, and 14 for quad-op-amp
Explanation;
This is because every op-amp has 2 input terminal 4 pns
So one output terminal that is 2 pins which are required for power
and the same for a minumum number of pins required by quad op amp which is 14
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