Answer:
output.write("Hello, World")
Step-by-step explanation:
A printWriter object (An instance of a class) is contained in a variable called output, to access the write method we use the dot (.) operator to access the write method of the output object and hence, output.write() outputs any string it takes as argument. this is a very interesting OOP (Object oriented programming concept).