Posts

What is data binding

It is a process that creates a connection between the data and UI. When data changes the UI elements that are bound to the data will change.

What is a Typescript

Typescript is a superset of Javascript It adds additional features to the Javascript It is strictly typed. It throws an error during compile time where as Javascript won't It improves the productivity

What are Multi page Applications

 Multi-Page applications are created using traditional approaches. It requires a page reload. Advantages: More Secure SEO Scalable

What are Single Page Application

 Single-page applications are the modern method of app creation. These apps are accessed from the browser and don't require a page load while using. Advantages Faster Development code reusability performance easy maintenance

What is a Framework

 The framework makes developers easy by generating boilerplate code and providing the required tools(libraries) for development. Developers can put more focus on logic and framework takes care of skeleton Example : SPFx

What is a Library

 The library provides a set of functions for the program and it can be used at multiple places. The new features can be added to the programs easily example: Jquery

What is an API

 APIs are mechanisms that are unable multiple software components to communicate with each other using a set of definitions and protocols