Answer:
Check the explanation
Explanation:
# Step 1
the first thing to execute will be......
f = open("states.txt")
# Step 2
the second step is......
states = []
for line in f:
    states.append(line.strip())
# Step 3:
the third step is to......
for state in sorted(states):
    print(state)
f.close()
 
        
             
        
        
        
Answer:
evaluation of decision effectiveness
Explanation:
Based on the information provided within the question it can be said that in this scenario she is in the stage of evaluation of decision effectiveness. This is the stage after the decision has been made in which the individual begins to analyze the decision and determine whether the decision was as effective as originally anticipated , and whether or not it was the correct decision.
 
        
             
        
        
        
Probes and Drones
Hope this helps and please give brainliest!
        
             
        
        
        
Answer:
Explanation:
<u>Application Differences:</u>
<u>SRAM</u>
SRAM stands for Static Random Access Memory  DRAM stands for Dynamic Random Access Memory
Faster access is due to the usage of transistors to store single bit of data  
SRAMs are used for cache memories due to faster access time  
<u>DRAM</u>
DRAM stands for Dynamic Random Access Memory
DRAMs are used for main memories due to comparatively slower access time.
DRAMs use capacitor to store bits where each capacitor holds a single bit
<u>Parameter differences</u>  
<u>Speed:</u> SRAMs are faster due to presence of transistors. DRAMs are slower due to presence of capacitors
<u>Size:</u> Due to complexity involved in the internal circuits, SRAMs are smaller in capacity for same size of the chip. DRAMs are larger as compared to SRAMs since their capacity for a given physical size is more.
<u>Cost:</u> SRAMs are costlier and the per bit storage cost is more than that of the DRAMs. DRAMs are cheaper and the per bit storage cost is less than that of the SRAMs