Write a program that performs the following tasks:
- Initialise a StringBuffer with value "Hello" and append a space and "World" and print it
- Initialise a StringBuilder with value "Hello" and append a space and "World" and print it
Reading List:
1. Learn the difference between String, StringBuffer and StringBuilder.
2. Learn when StringBuffer and StringBuilder should be preferred over String.