1. What improvements would you suggest for Swiggy, and what metrics would you use to measure and evaluate them?
2. Subsequences of String Problem Statement You are provided with a string 'STR' that consists of lowercase English letters ranging from 'a' to 'z'. Your task is to determine all non-empty possible subsequences of the string 'STR'. Explanation: A subsequence of a string is derived by deleting zero or more characters from the string while maintaining the order of the remaining characters. Input: The first line of input consists of an integer 'T' representing the number of test cases. Each test case contains one line, which holds the string 'STR'. Output: For each test case, print the subsequences of the string 'STR' separated by space. Each test case's output must be printed on a separate line. The order of output subsequences can vary. Example: Input:2abcabOutput:a ab ac abc b bc ca ab b Constraints: 1 ≤ T ≤ 10 1 ≤ |STR| ≤ 16 Where |STR| denotes the length of the string 'STR'. Note: You do not need to print anything; the output functionality is already handled. Only implement the function to generate the required subsequences.
3. Please provide a brief introduction about yourself.
4. What is the Root Cause Analysis (RCA) of the 5% drop in Google Docs usage?
5. How would you address employee dissatisfaction resulting from wage reductions?