Answer:
6 address lines
Explanation:
The computation of the number of address lines needed is shown below:
Given that
Total memory = 64MB
=
=
Also we know that in 1MB RAM the number of chips is 6
So, the number of address lines is i..e 26 address lines
And, the size of one chip is equivalent to 1 MB i.e.
For a single 1MB chips of RAM, the number of address lines is
Therefore 6 address lines needed
Answer:
A and D could work
Explanation:
they do basically does the same thing!!
Answer:
The code is given below
hours = int(input("Enter time in hour: "))
minutes = int(input("Enter time in minute: "))
total time = (hours * 60) + (minutes + 15
)
total hours = int(total minutes / 60)
minutes = total hours/ 60
print("Hours: " + str(hours))
print("Minutes: " + str(minutes))