Tip 1 : Do not go behind numbers like doing 300 or 400 Leetcodes.
Tip 2 : Be Consistent
Tip 3 : First understand the topic well, do not mind if it takes more time, keep your base strong
Tip 1 : First go through JD of every company and modify resume according to requirements.
Tip 2 : Do not mention any technology that you are not 100% comfortable with.



1. There are no 2 adjacent elements having same value (as mentioned in the constraints).
2. Do not print anything, just return the index of the peak element (0 - indexed).
3. 'True'/'False' will be printed depending on whether your answer is correct or not.
Input: 'arr' = [1, 8, 1, 5, 3]
Output: 3
Explanation: There are two possible answers. Both 8 and 5 are peak elements, so the correct answers are their positions, 1 and 3.



Input:
‘N’ = 3
‘ARR’ = [ 2, 1, 1 ]
The shortest way to reach index 2 is
Index 0 => Index 2
that requires only 1 jump.
25 mcq question was asked



1. If ‘k’ is not present in 'arr', then print -1.
2. There are no duplicate elements present in 'arr'.
3. 'arr' can be rotated only in the right direction.
Input: 'arr' = [12, 15, 18, 2, 4] , 'k' = 2
Output: 3
Explanation:
If 'arr' = [12, 15, 18, 2, 4] and 'k' = 2, then the position at which 'k' is present in the array is 3 (0-indexed).
Two taps A and B can fill a cistern in 48 minutes and 64 minutes respectively. Tap C can empty the tank in 96 minutes. If all the taps are opened together, in how much time the cistern will get filled?
Tip 1 : you need to be familiar with tricks that can help you solve such questions fast and accurately
Tip 2 : be aware of time limit
Tip 3 : be aware of negative marking if any
This is main Interview round having panel of 3 interviewers: Technical, Managerial and HR
Questions related to CS topics like DBMS, OS, Computer Networks.
Tip 1 : you have to go through core CS concepts
Tip 2 : have basic understanding of OSI model in Computer Networks.
Tip 3 : if you do not remember solution to any question, you can simply tell, :sorry, I didn't exactly remember the solution for this"
Is NoSQl better or SQL?
Difference between DBMS, RDBMS.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
To make an AI less repetitive in a long paragraph, you should increase: