class Base{ } class Agg extends Base{ public String getFields(){ String name = “Agg”; return name; } } public class Avf{ public static void main(String[] args){ Base a = new Agg(); //Here } } What code placed after the comment //Here will result in calling the getFields method resulting in the output of the string “Agg”?