WorksheetsMid2 Lab Internal PPS
Total questions: 10
Worksheet time: 6mins
A _____ is a variable whose value is the address of another variable
function
pointer
constant
structure
A function ______ provides the actual body of the function
call
prototype
definition
declaration
_____Allocates requested size of bytes and returns a pointer first byte of allocated space
malloc()
calloc()
free()
realloc()
_____allocates multiple blocks of requested memory
malloc()
calloc()
free()
realloc()
The (a) file mode creates an empty file for writing
_____gives current position in the file
ftell()
fseek()
rewind()
current()
_____set the position to the beginning point
ftell()
rewind()
home()
fseek()
_____Search is used with sorted array or list.
Linear
Binary
Bubble
none of these
(a) sort is called as exchange sort.
The strategy behind the _____ sort is similar to the process of sorting a pack of cards
Bubble
Selection
Insertion
Quick
