Are IFrames (HTML) obsolete? [closed]

Support for <iframe> is still there in HTML 5, so I don’t think this will change in the near future. To answer your other questions: <iframe>s (as frames in general) are most of the time not user-friendly: They don’t allow easy access of the content in the frame via an URL (without losing the content … Read more

Why is Java Vector (and Stack) class considered obsolete or deprecated?

Vector synchronizes on each individual operation. That’s almost never what you want to do. Generally you want to synchronize a whole sequence of operations. Synchronizing individual operations is both less safe (if you iterate over a Vector, for instance, you still need to take out a lock to avoid anyone else changing the collection at … Read more