Tip 1 : Stay focused, listen to the question thoroughly and then try to answer
Tip 2 : Stay confident, I believe very few could answer all the questions correctly
Tip 1 : Make sure to write only the correct skillset
Tip 2 : Try to write down the work that you had done in previous years.
Basic questions.




As taught in the video, you just have to modify the code so that instead of printing numbers, it should output stars ('*').
Supereasy pattern only one csn use a loop and solve that.



For 'N' : 4
Pattern :
4 3 2 1 2 3 4
3 3 2 1 2 3 3
2 2 2 1 2 2 2
1 1 1 1 1 1 1
2 2 2 1 2 2 2
3 3 2 1 2 3 3
4 3 2 1 2 3 4
Although might looked easy but at the real time was a hard nut to crack for me. Took multiple variable to print.



Here are some examples of balanced BRACKETS "(())", "()()", "(())()".
Use stack to solve this type of questions
Asked few elementary data structure topics



If the given array is [4, 2, 9] then you should print "3 5 6 7 8". As all these elements lie in the range but not present in the array.
Use maths and It's damn easy

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?