1,558 views
1 1 vote
The process of organizing the memory into two banks to allow 8 and 16 bit data operation is called

a)Bank switching

b)Indexed mapping

c)Two-way memory interleaving

d)Memory segmentation

1 Answer

Position:
Show:

Related questions

2 2 votes
3 3 answers
2.2k
2.2k views
Laahithyaa VS asked Sep 9, 2023
2,172 views
. What will be the value returned by the following function, when it is called with 11?recur (int num){if ((num / 2)! = 0 ) return (recur (num/2) *10+num%2);else return 1...