Write a RECURSIVE method that receives 2 strings as parameters.The method will return true if the 2nd string is a subsequence ofthe 1st string. If not, the method will return false.
An empty string is a subsequence of every string. This isbecause all zero characters of the empty string will appear in thesame relative order in any string
This method must not contain any loops.
In java