Tip 1 : Practice DSA first, as it is the first round, and you have to clear it, So make it strong.
Tip 2 : Make atleast one good project in any technology.
Tip 3 : While solving questions in interview, do not mute yourself, speak what you are thinking.
Tip 1 : make it one page only
Tip 2 : atleast one good project
They provided the test link and a duration in which after that link will expire.



Infix notation is a method of writing mathematical expressions in which operators are placed between operands. For example, "a + b" represents the addition of a and b.
Prefix notation is a method of writing mathematical expressions in which operators are placed before the operands. For example, "+ a b" represents the addition of a and b.
Expression contains lowercase English letters, ‘+’, ‘-’, ‘*’, and ‘/’.
Input: /-ab+-cde
Output: ((a-b)/((c-d)+e))
Explanation:
In this test case, there are four operators ‘/’, ‘-’, ‘+’, ‘-’.
Prefix expression: /-ab+-cde.
The operator between ‘a’ and ‘b’ is ‘-’. Resulting expression: /(a-b)+-cde.
The operator between ‘c’ and ‘d’ is ‘-’. Resulting expression: /(a-b)+(c-d)e.
The operator between ‘c-d’ and ‘e’ is +. Resulting expression: /(a-b)((c-d)+e).
The operator between ‘a-b’ and ‘((c-d)+e)’ is ‘/’. Resulting expression: ((a-b)/((c-d)+e)).



The width of each bar is the same and is equal to 1.
Input: ‘n’ = 6, ‘arr’ = [3, 0, 0, 2, 0, 4].
Output: 10
Explanation: Refer to the image for better comprehension:

You don't need to print anything. It has already been taken care of. Just implement the given function.



What is abstraction?
What is Virtual function?
Exception Handling
What is deadlock
What is time complexity of quick sort, merge sort?
Multiprocessing vs multi tasking
Introduction
What do you know about company
Why do you want to join
Do you join immediately?
Given location is good for you?
Describe yourself in 5 words

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?