Which option will be placed in 'Write code here' then, produce the output 'Hello World'?
public class Computer {
class HardDisk {
//Write code here.
}
public static void main(String args[]) {
new Computer().display();
}
void display() {
new HardDisk();
}
void memory() {
System.out.println("Hello World");
}
}