Answer:
IDE hard drives <em>(Integrated Drive Electronics)</em> aka <em>(PATA) </em>or <em>"Parallel ATA"</em> <em>(Advanced Technology Attachment)</em>, were the previous standard before SATA which are faster; IDE drives are disposed with 41 to 44 pins, and they normally use 5V; although to certain extent small laptop 2.5" drives need only 5V, some of them also need 12V; and 3.5" drives require 12V plus 5V for the motor and logic.
Thereby the most suitable answers are <em>B.)</em> &<em> E.)</em> ,
5V and 12V respectively.
Answer:
A
Explanation:
© is the symbol for copyright or Copr. for abbreviation.
Answer:
when you have a very large quantities of numeric data values
when efficiency is of great importance
when you will do a great deal of arithmetic calculations
Explanation:
got it right in edg 2021
Answer:
C 1,2,3,4
Explanation:
This means I want to count from 0-4 and set it o the current loop I am currently on.
for i in range(0, 5):
print("i currently equals: ", i)
The result will be
i currently equals: 0
i currently equals: 1
i currently equals: 2
i currently equals: 3
i currently equals: 4
Answer:
16
Explanation:
+= is an assignment operator that adds a value to the existing value.