18.what is an advantage of a sequational allocation
19. How many iterations using a binary search are done until the element is found in an array
arr = {5,6,77,85,99} and key = 85
20.what does this function do if the pseudocode takes a queue as an argument and uses a stack S to do the processing
21. given the c/c++ code: Which identifier is used to access the newly allocated memory when allocation is successful ?
Char, null, buffer, Buffer_size
22. What is a feature of dictionary data type ?
23. which operation removed a key-value pair from a dictionary?
Rem, len, Cmp, del
18. Memory may be allocated as the need arises 19. 2 20. Function not provided 21. buffer 22. Immutable Keys 23. del
18.what is an advantage of a sequational allocation Memory may be allocated as the need arises...