Answer:
I'm going to make a list of everything you need to consider for the supervision and design of the bridge.
1. the materials with which you are going to build it.
2. the length of the bridge.
3. The dynamic and static load to which the bridge will be subjected.
4. How corrosive is the environment where it will be built.
5.wind forces
6. The force due to possible earthquakes.
7. If it is going to be built in an environment where snow falls.
8. The bridge is unique,so the shape has a geometry that resists loads?.
9. bridge costs.
10. Personal and necessary machines.
11. how much the river grows
Answer:
1. Equatorial Evergreen or Rainforest
2. Tropical forest
3. Mediterranean forest
4. Temperate broad-leaved forest
5. Warm temperate forest
Explanation:
Answer:
Half-wave rectifier converts an AC signal into a DC signal. It's called a half-wave because it only rectify the positive part of an AC signal.
AC Signal = An electrical signal that alternates between positive and negative voltage.
DC Signal = An electrical signal that only has positive voltage.
Rectify = A fancy word for converting something.
Adding a capacitor helps the positive part of the signal stay on longer. This work because the capacitor stores energy kinda like a battery. During the negative part of the AC signal, the energy stored in the capacitor will be drained and used, then the cycle repeats.
The load resistor is just there to prevent a short circuit from happening.
Full Question
1. Correct the following code and
2. Convert the do while loop the following code to a while loop
declare integer product
declare integer number
product = 0
do while product < 100
display ""Type your number""
input number
product = number * 10
loop
display product
End While
Answer:
1. Code Correction
The errors in the code segment are:
a. The use of do while on line 4
You either use do or while product < 100
b. The use of double "" as open and end quotes for the string literal on line 5
c. The use of "loop" statement on line 7
The correction of the code segment is as follows:
declare integer product
declare integer number
product = 0
while product < 100
display "Type your number"
input number
product = number * 10
display product
End While
2. The same code segment using a do-while statement
declare integer product
declare integer number
product = 0
Do
display "Type your number"
input number
product = number * 10
display product
while product < 100