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
Answer:
see attached
Vin -5V- +5V
Input current : 500 x 10^-6 A
V_r: 0V 5V
I_r: 1 mA
Explanation:
Step 1: Circuit Designing: you have to address the question what is your proposed circuit going to do (its function).
Step 2: Decide on circuit components that can address each such circuit functions.
Step 3: Decide on the operational specification for the circuit: voltages, currents, frequencies etc.
Step 4: Simulate your circuit to confirm if it works as expected with simulation software such as Multisim.
In python:
lst = ([])
largest = 0
while len(lst) != 6:
user_number = int(input("Enter a number: "))
lst.append(user_number)
for i in lst:
if i > largest:
largest = i
print(largest)
I hope this helps