Answer:
Time =t2=58.4 h
Explanation:
Since temperature is the same hence using condition
x^2/Dt=constant
where t is the time as temperature so D also remains constant
hence
x^2/t=constant
2.3^2/11=5.3^2/t2
time=t^2=58.4 h
Less, if it’s too big: hard to control and maneuverability for shooting wouldn’t be that good. a smaller wheelchair allows for faster movement and control, along with easier shooting and upper body movement
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.
The two ways you can use to make an informal survey are:
- make field observations
- interview people using informal unstructured techniques
<h3>What are informal surveys?</h3>
In informal surveys can be regarded as a type of survey that can be made by the researcher by going to the field themselves and this can be done by using different methods or ways.
For instance, the researcher can go out to interview people that can give the data that is needed about the research such as informally asking them questions, unstructured techniques can also be used to solve critical issues.
learn more about survey at: brainly.com/question/6947486
#SPJ9