What is difference in installing angular and angular cli does they mean the same?
Does installing angular cli mean installing angular are they bundled.
How to identify angular version based on angular cli version
Angular-CLI a command line interface and it is a TOOL to create your angular application. It provides commands to generate code such as components, services and directives to make angular application development easier to the developer. It also allows you to build your application and serve your application as you are developing.
angular cli can report its version when you run
ng --version
As we hear about different versions, angular 2, 4, 6..., is a platform, a framework and an MVC architecture that is used to build client side single page applications that can run in a web browser.The architecture consists of HTML, CSS and JavaScript. Most common language used in developing angular application is Typescript which gives an OOP like structure to angular and is a wrapper on JavaScript.