Name two libraries that don’t require explicit linking and four that do.
What will be an ideal response?
Libraries that do not require explicit linking:
libc.a (The C language library)
libsocket.a (The Socket library)
Libraries that do require explicit linking:
libm.a (The math library)
libpthread.a (The Pthread library)
libg++.a (The C++ library)
libpcap.a (The packet capture library)
You might also like to view...
A template is a partially completed document that can only contain preformatted text
Indicate whether the statement is true or false
Alice has a picture-based password system, where she has each user pick a set of their 20 favorite pictures, say, of cats, dogs, cars, etc. To login, a user is shown a series of pictures in pairs—one on the left and one on the right. In each pair, the user has to pick the one that is in his set of favorites. If the user picks the correct 20 out of the 40 he is shown (as 20 pairs), then the
system logs him in. Analyze the security of this system, including the size of the search space. Is it more secure than a standard password system? What will be an ideal response?