Tip 1 - Practice atleast 100 questions of coding & aptitude
Tip 2 - Do atleast 1 projects
Tip 1 : Have some projects on resume.
Tip 2 : Do not put false things on resume.
- Morning time
- Environment was good.
- No
- Interviewer was good



1. Horizontally as 1x2 tile
2. Vertically as 2x1 tile
The number of ways might be large so output your answer modulo 10^9 + 7.

s1- I have done this problem earlier.
s2- so got the DP based approach during the test and this approach passed all the test cases.



Example: String "aabbbcdcdcd" will be encrypted as "a2b3cd3".
Input string will always be lowercase characters without any spaces.
If the count of a substring is 1 then also it will be followed by Integer '1'.
Example: "aabcdee" will be Encrypted as "a2bcd1e2"
This means it's guaranteed that each substring is followed by some Integer.
Also, the frequency of encrypted substring can be of more than one digit. For example, in "ab12c3", ab is repeated 12 times. No leading 0 is present in the frequency of substring.
The frequency of a repeated substring can also be in parts.
Example: "aaaabbbb" can also have "a2a2b3b1" as Encrypted String.
s1- I simply decrypt the string by reading substring and their frequency.
s2- Append current substring to the decrypted string and after the end of traversal of given string our answer will be kth element of the decrypted string.

If there are 3 stocks and the profit on them is [1,3,-2], and you are allowed to buy at most 1 stock, you can buy the second one and make a profit of 3.
s1- first line contains an integer 't' which denotes the number of test cases or queries to be run.
s2- first line of each test case or query contains an integer 'N' representing the total number of days for which you have stock prices.
s3- I follow merge sort and traverse the string at 1 sec.



Down: (row+1,col)
Right: (row, col+1)
Down right diagonal: (row+1, col+1)
s1- I had practiced enough of DP questions, so this one looked fairly easy. Since it was a standard DP question, the same approach worked here too.
s2- Apply 1-D matrix
s3- Traverse down the tree



Input: 'arr' = [1, 2, 7, -4, 3, 2, -10, 9, 1]
Output: 11
Explanation: The subarray yielding the maximum sum is [1, 2, 7, -4, 3, 2].
s1- I used Kadane algorithm here to find subarray with maximum sum. It is a standard question for interview.
s2- Find subarray with 1-D array
s3- compare the largest number and print it
Which of the following is generally used for performing tasks like creating the structure of the relations, deleting relation?
DML(Data Manipulation Language)
Query
Relational Schema
DDL(Data Definition Language)
Tip 1 : Read Galvin for OS thoroughly.
Tip 2: Practice on DML,DCL
- Morning time
- Environment was good.
- No
- Interviewer was good
What do you know about our company?
How would you improve our current product or service?
How would your current manager describe you?
Where do you see yourself in five years?
What questions do you have for me?
Tip 1: Communication is the key.
Tip 2: Practice by mock interviews

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?