What will be the output of following function when invoked ? public void print() { char ans='a'; int x=0; do { x++; System.out.print(x+"\t"+ans); ans+=2; } while(x>7) System.out.println ("Loop Terminates"); }