Posts

Showing posts from November, 2018

Object Oriented Programming Glimpse

Image
An approach to building applications by focusing on objects that interact with one another Features of objected oriented programming 1.        Flexible 2.        Natural 3.        Reuse of code 4.        Testable In this course, we will be using C# as our object-oriented programming language. C#  is a simple, modern, general-purpose, object-oriented programming language developed by Microsoft Now we talk about some main topics/concepts or building blocks of object-oriented programming   Classes and object Classes are the blueprint for objects Objects are an instance of a class  Now that sounds like definitions, good to say during interviews 😜 Well to make more sense and to get the real essence of this definition we will do some object-oriented programming. Consider you got a new project or client request is to build an automation framework for web application. For now, we focus on the Driver module which is responsible for managing your br