Jump to content

adisharma

Members
  • Posts

    4
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Hello Everyone, I'm currently doing an assignment for one of my classes, and in it, I have to give examples, using Java syntax, of *static* and *dynamic binding*. I am lost while understanding the work process. I understand the basic concept, that static binding happens at compile time and dynamic binding happens at runtime, but I can't figure out how they actually work specifically. I found an example of static binding online that gives this example and running the program on interviewbit. public static void callEat(Animal animal) { System.out.println("Animal is eating"); } public static void callEat(Dog dog) { System.out.println("Dog is eating"); } public static void main(String args[]) { Animal a = new Dog(); callEat(a); } And that this would print "animal is eating" because *the call to `callEat` uses static binding* , but I'm unsure as to *why* this is considered static binding. So far none of the sources I've seen have managed to explain this in a way that I can follow. Can anyone suggest me?
  2. Hello All, I am working on a freelance testing project and I want to know which model is better for testing in the process and concept point of view between agile and waterfall. Yesterday when i search for difference between them I found this reference and as I know Agile method uses an incremental development approach, the phases of design, production, testing, and other project management may appear several times as well as testing is frequently done in conjunction with the development phase in Agile model to maintain consistent quality. but not an idea about waterfall. Can anyone know which model is useful in testing? and what technique the waterfall model used?
  3. Hello Everyone, I want to build my career as a software tester and I am looking to online tutorial which helps me to build my career. Can any know any free resource where i can start learning?
×
×
  • Create New...

Important Information

Terms of Use - Privacy Policy - Guidelines