Tip 1: Solve lots of problems on different platforms that are available this helps you to improve your problem-solving skills.
Tip 2: Brush up on your technical skills, and review the fundamental concepts and technologies before your interview.
Tip 3: Demonstrate Confidence and Enthusiasm, and have a great knowledge of the projects you have done.
Tip 1: Make sure it's simple to read and understand your resume. When presenting your content, make sure to use clear headings, bullet points, and short sentences.
Tip 2: Instead of just stating your duties at work, concentrate on measurable results and accomplishments. Highlight particular successes and the effect they have on the organization.
There were just two coding questions, in which one is easy and the other is medium and there were also 80 MCQs from Verbal, Aptitude, Reasoning, Programming concepts.
Do not allocate extra space for another array. You need to do this by modifying the given input array in place with O(1) extra memory.
'n' = 5, 'arr' = [1 2 2 2 3].
The new array will be [1 2 3].
So our answer is 3.
There are two gates, one to hell and the other to heaven. Two gatekeepers, one for each gate. One of them always speaks the truth and the other lies but you don’t know which one guards which gate. You are allowed only one question and you need to find out the gate to heaven.
What is the question?
Ask any guard “What would the other guard say if I ask which way is to the hell ?” And whatever answer he give is the way to the heaven. Explanation: If you end up asking the question to the truthful one, he will speak the truth and he knows that other guard is going to lie so he will show the way to the heaven. If you end up asking the question to the liar, he will lie about the other and the answer will be the way to the heaven.
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
Suppose list1 is [2, 133, 12, 12], what is max(list1) in Python?
Interested