Write a Java program to receive user input of a sentence str…
Write a Java program to receive user input of a sentence string of characters and capitalize the first letter of each word in the sentence string shown in the sample output below:Sample Output:Input Sentence: the quick brown fox jumps over the lazy dog.Capitalized Sentence: The Quick Brown Fox Jumps Over The Lazy Dog.Save the program file and class with the name Test2P2.java (Remember: File name and class name MUST match exactly).