Object Oriented Programming (OOPs)

© examsiri.com
Question : 38 of 72
 
Marks: +1, -0
Given:
1. interface TestA { String toString(); }
2. public class Test {
3.   public static void main(String[] args) {
4.    System.out.println(new TestA() {
5.     public String toString() { return "test"; }
6.    });
7.   }
8. }

what is the result?
Go to Question: