Posts

Showing posts from February, 2020

Use Of Javascript With OOP Concepts

Image
Javascript With OOP Concepts What is OOP? Basically OOP is the abbreviation for object-oriented-programming.  Object-oriented-programming is a programming language modal for software design revolves around objects or data instead of functions and logics . That means it is a modal which is wrapped around objects that uses in the computer programming . In the other word it focuses on what developers want to be manipulate rather than how they want to manipulate  them. There are only 4 object-oriented concepts in computer programming . Those are, Inheritance  :   This is a special feature of OOP which helps to use the same type of behaviors of one class for another class . This feature holds a behavior like what the parent and child have. EX: Assume that there are some classes called parrots , owls , and bats . All of them are having some same behaviors . So that all the similar functionalities can be included in one class called birds and then the other cla

Application Framework

Image
Application Framework What is Application Framework? Application framework is used to reduce the general issues which has to be faced when developing applications. Basically this is a library component which is  used to develop the fundamental structure of an application.Otherwise it can be introduced as the skeletal of an application.So that the developer can understand the scope which has to be covered when developing the application. Ex: You have given to make a cup of tea.You have all the ingredients , tea cup and knowledge to make a tea.Even if you are the very best person in the world you have to make that tea according to the cup size. This is what the developer also do.Developer has the knowledge to develop an application but he\she has to develop the application according to the scope. In the example you are the developer and the tea cup is the framework. Mostly this is used in graphical user interfaces (GUI) and web-based applications.