Question: Which of the following can replace the CODE SNIPPET to make the code below print "Hello World"?

  1. `super1.print(); super2.print();`
  2. `this.print();`
  3. `super.print();`
  4. `Interface1.print(); Interface2.print();`

Answer: The correct answer of the above question is Option D:`Interface1.print(); Interface2.print();`