Answer:
#include <iostream>
using namespace std;
void PrintPopcornTime(int bagOunces) {
if(bagOunces < 3){
cout << "Too small";
cout << endl;
}
else if(bagOunces > 10){
cout << "Too large";
cout << endl;
}
else{
cout << (6 * bagOunces) << " seconds" << endl;
}
}
int main() {
PrintPopcornTime(7);
return 0;
}
Explanation:
Using C++ to write the program. In line 1 we define the header "#include <iostream>" that defines the standard input/output stream objects. In line 2 "using namespace std" gives me the ability to use classes or functions, From lines 5 to 17 we define the function "PrintPopcornTime(), with int parameter bagOunces" Line 19 we can then call the function using 7 as the argument "PrintPopcornTime(7);" to get the expected output.
Answer:
hello your question is incomplete attached below is the missing part of the question
Consider an inverter operating a power supply voltage VDD. Assume that matched condition for this inverter. Make the necessary assumptions to get to an answer for the following questions.
answer : Nd ∝ rt
Explanation:
Determine how the delay and active power per device will change as the doping density of N- and P-MOSFET increases
Pactive ( active power ) = Efs * F
Pactive =
also note that ; Pactive ∝ Nd2 (
tD = K .
since K = constant
Hence : Nd ∝ rt
Answer:
combining scientific knowledge, careful reasoning, and artistic invention in a flexible approach to problem-solving
Explanation:
Answer:
The shaft work generated per kilogram is 
Explanation:
Given:
Temperature
K
Initial Pressure
MPa
Final pressure
MPa
From the table superheated,
and

Work done by shaft is,



But here efficiency is 0.56,
So work generated per kg is,
Work = 
Work =

Therefore, the shaft work generated per kilogram is 
Answer:
The bulb will be
times as bright as it is in Europe.
Explanation:
Data provided in the question:
Power of bulb in Europe = 75 W
Voltage provided in Europe = 240 V
Voltage provided in United Stated = 120 V
Now,
We know,
Power = Voltage² ÷ Resistance
Therefore,
75 = 240² ÷ Resistance
or
Resistance = 240² ÷ 75
or
Resistance = 768 Ω
Therefore,
Power in United States = Voltage² ÷ Resistance
= 120² ÷ 768
= 18.75 W
Therefore,
Ratio of powers

= 
Hence,
The bulb will be
times as bright as it is in Europe.