Explain Angular Component and Application Startup.
Components is a way through which we build Custom HTML elements and specify Business logic in a page.
A component consist of Imports statement, @Component Decorator, and a Class containing Methods and Properties.
index.html loads and executes the ES6 module main, main bootstraps the application's Angular module AppModule which in turn bootstraps the root application component, AppComponent and the component's template appears in the browser.