Q11. What is the difference between interfaces and type aliases in TypeScript? When would you use one over the other?
Interfaces in TypeScript define how an object should look or what a class should implement. They can be extended or implemented by other interfaces and classes. Type alia...