What will be the output of following code?
```
import java.util.Hashtable;
public class Test{
public static void main(String args[]){
Hashtable<String, Integer> obj = new Hashtable<>(
obj.put("A", 3);
obj.put("B", 2);
obj.put("C", 8);
obj.remove("A");
System.out.print(obj);
}
}
{C=8, B=2}
```
- \( [C=8, B=2] \)
\( \{A=3, C=8, B=2\} \)
\( [A=3, C=8, B=2] \).