Place the code into class so that it complies and generates the output answer=42.

DRAG DROP
Place the code into class so that it complies and generates the output answer=42.

DRAG DROP
Place the code into class so that it complies and generates the output answer=42.



Leave a Reply 1

Your email address will not be published. Required fields are marked *


fjbo221

fjbo221

public class Gen {
private T object;
public Gen (T object) {
this.object = object;
}
public T getObject() {
return object;
}