Answer:
The development of computers from the beginning to what we see now is called the computer generations. It is gradual advancement in the technology in the making of the computer.
Explanation:
The generation in computer technology can be defined as the development or the change in the technology in the computer as it was used. There were five generations of computer development. They were :
1. First Generation computers
In this generation, vacuum tubes was used in the circuits. It dated from 1946 to 1959.
2. Second Generation computers
These are transistors based computers. This generation ranges from 1959 to 1965.
3. Third Generation computers
This generation computers were Integrated circuit based. The generation stared in 1965 and ended in 1971.
4. Fourth Generation computers
The computers of this generation used VLSI microprocessor in the circuits. The period of the 4th generation computers are from 1971 to 1980.
5. Fifth Generation computers
The computers of this generation used ULSI microprocessor in the circuits. The 5th generation computers started from 1980s.
Answer:
B
Explanation:
took the test on egdenuity
Answer:
um i don't understand you do you speak English?
Explanation:
The function that replaces the values in an array is as follows:
def replace_elem(a, integer1, integer2):
for i in range(len(a)):
if a[i] == integer1:
a[i] = integer2
return a
print(replace_elem([7, 4, 10, 3, 7, 2, 4, 5], 4, 6))
<h3>Code explanation.</h3>
The code is written in python.
- We defined a function named "replace_elem". The function accepts an array a, and integers integer1 and integer2.
- Then, we used a loop to loop the index of the array.
- If any of the index value is equals to the integer1, we replace it with integer2.
- Then return the new values of the array a.
- Finally, we call the function with its parameters.
learn more on function here: brainly.com/question/15691123