MHMariam Hameedinmariamchaudhary.hashnode.dev路Apr 25, 2022 路 5 min readConstructor In JAVAConstructor Constructors are used to initialize the object. Constructors have the same name as the class name and do not have a return type. We can use the access modifiers with a constructor. Access modifiers define the visibility of constructors to...00
MHMariam Hameedinmariamchaudhary.hashnode.dev路Apr 7, 2022 路 6 min read4 Major Types of InnovationDisruptive Innovation Clayton M. Christensen is an American economist. He coined the term disruptive innovation in 1995. He defined it in a paper for the Harvard Business School. Disruptive innovation means transforming the product or a solution in a...00
MHMariam Hameedinmariamchaudhary.hashnode.dev路Apr 6, 2022 路 3 min readWhy do Interviewers ask Stupid Questions?Today I want to talk about one of the worst interviews that happen. I am looking for an internship related to coding. So I apply for all these internships that require coding even if the company is not a Software House. I applied for one through emai...01P
MHMariam Hameedinmariamchaudhary.hashnode.dev路Apr 5, 2022 路 2 min readInheritanceIntroduction In an inheritance, we create the class from the existing class. The existing class knows as the parent/superclass. The class that is derived is known as the subclass/child class. The subclass inherits are the properties and methods of th...00
MHMariam Hameedinmariamchaudhary.hashnode.dev路Apr 5, 2022 路 2 min readEncapsulationIntroduction Encapsulation means wrapping code and data together into a single unit. Encapsulation is also used for data hiding. But the main purpose of encapsulation is to bind the data together in a single unit. class Area { // fields to calcul...00