Answer:
See explaination
Explanation:
int RED=10; int BLUE=11; int GREEN=12; int BUTTON1=8; int BUTTON2=9; void setup() { pinMode(RED, OUTPUT); pinMode(BLUE, OUTPUT); pinMode(GREEN, OUTPUT); pinMode(BUTTON1, INPUT); pinMode(BUTTON2, OUTPUT); } void loop() { int BTN1_STATE=digitalRead(BUTTON1); int BTN2_STATE=digitalRead(BUTTON2); if(BTN1_STATE==HIGH) { digitalWrite(BLUE, HIGH); delay(1000); // Wait for 1 second digitalWrite(BLUE, LOW); } if(BTN2_STATE==HIGH) { digitalWrite(RED, HIGH); delay(4000); // Wait for 4 seconds digitalWrite(RED, LOW); } if(BTN1_STATE==HIGH && BTN2_STATE==HIGH) { digitalWrite(GREEN, HIGH); delay(2000); // Wait for 2 second digitalWrite(GREEN, LOW); } }
Answer:
Correct option: B. 90%
Explanation:
The confidence interval is given by:
![CI = [\bar{x} - z\sigma_{\bar{x}} , \bar{x}+z\sigma_{\bar{x}} ]](https://tex.z-dn.net/?f=CI%20%3D%20%5B%5Cbar%7Bx%7D%20-%20z%5Csigma_%7B%5Cbar%7Bx%7D%7D%20%2C%20%5Cbar%7Bx%7D%2Bz%5Csigma_%7B%5Cbar%7Bx%7D%7D%20%5D)
If
is 190, we can find the value of
:
![\bar{x} - z\sigma_{\bar{x}} = 188.29](https://tex.z-dn.net/?f=%5Cbar%7Bx%7D%20-%20z%5Csigma_%7B%5Cbar%7Bx%7D%7D%20%20%3D%20188.29)
![190 - z\sigma_{\bar{x}} = 188.29](https://tex.z-dn.net/?f=190%20-%20z%5Csigma_%7B%5Cbar%7Bx%7D%7D%20%20%3D%20188.29)
![z\sigma_{\bar{x}} = 1.71](https://tex.z-dn.net/?f=z%5Csigma_%7B%5Cbar%7Bx%7D%7D%20%20%3D%201.71)
Now we need to find the value of
:
![\sigma_{\bar{x}} = 5/ \sqrt{25}](https://tex.z-dn.net/?f=%5Csigma_%7B%5Cbar%7Bx%7D%7D%20%3D%205%2F%20%5Csqrt%7B25%7D)
![\sigma_{\bar{x}} = 1](https://tex.z-dn.net/?f=%5Csigma_%7B%5Cbar%7Bx%7D%7D%20%3D%201)
So the value of z is 1.71.
Looking at the z-table, the z value that gives a z-score of 1.71 is 0.0436
This value will occur in both sides of the normal curve, so the confidence level is:
![CI = 1 - 2*0.0436 = 0.9128 = 91.28\%](https://tex.z-dn.net/?f=CI%20%3D%201%20-%202%2A0.0436%20%3D%200.9128%20%3D%2091.28%5C%25)
The nearest CI in the options is 90%, so the correct option is B.
The answer is number 2) Increase the resistance of the concrete to freeze-thaw damage.
Algorithm of the Nios II assembly program.
- Attain data for simulation from the SW11-0, on the DE2-115 Simulator
- The data will be read from the switches in loop.
- The decimal output is displayed using the seven-segment displays and done using the loop.
- The program is ended by the user operating the SW1 switch
and
The decimal equivalent on the seven-segment displays HEX3-0 is
- DE2-115
- DE2-115_SW11
- DE2-115_HEX3
- DE2-115_HEX4
- DE2-115_HEX5
- DE2-115_HEX6
- DE2-115_HEX7
<h3>The Algorithm and
decimal equivalent on the
seven-segment displays HEX3-0</h3>
Generally, the program will be written using a cpulator simulator in order to attain best result.
We are to
- Attain data for simulation from the SW11-0, on the DE2-115 Simulator
- The data will be read from the switches in loop.
- The decimal output is displayed using the seven-segment displays and done using the loop.
- The program is ended by the user operating the SW1 switch
This will be the Algorithm of the Nios II assembly program .
Hence, the decimal equivalent on the seven-segment displays HEX3-0 is
- DE2-115
- DE2-115_SW11
- DE2-115_HEX3
- DE2-115_HEX4
- DE2-115_HEX5
- DE2-115_HEX6
- DE2-115_HEX7
For more information on Algorithm
brainly.com/question/11623795