Tip 1: For DSA preparation, start with basic-level questions, then move on to medium-level questions, and finally attempt a few hard-level questions. If you are unable to solve hard-level questions, don't worry too much. The most important thing is to use the pen and paper method to solve the question before writing code in an IDE.
Tip 2: Create some awesome projects to showcase during interviews.
Tip 3: Focus on improving your communication skills and participate in mock tests with friends.
Tip 1: Add at least 2 great projects on which you are confident. Ensure they are deployed on a server.
Tip 2: Try to keep your resume filled with genuine data, and ensure that you have every topic and information on your resume memorized. The resume should not exceed 1 page in size.
It was an online test.



Step 1: I applied the brute force technique (I took another array and traversed the first array, separating all zeros. Then, I traversed again and moved the remaining elements).
Step 2: The interviewer asked me about the time complexity and space complexity of the solution.
Step 3: Then, they asked me not to use extra space.
Step 4: I came up with the two-pointers method, and he was satisfied with my solution.



'S' = "{}()".
There is always an opening brace before a closing brace i.e. '{' before '}', '(' before ').
So the 'S' is Balanced.
Que 1: Explain the whole project, its tech stack, working process, and its main features. What was my role and responsibility in the project?
Que 2: Why did I choose this particular tech stack to create my project?
Que 3: What problems did I face during my project?
Tip 1: Be prepared for all types of questions about your project thoroughly, even if you have worked on the project in a team. You should have knowledge about every aspect and feature of the project.
Tip 2: Have your project ready before the interview and ensure that all its links are working fine.
Basic HR round questions. (Like Intro and salary negotiation)
I feel that they want to asses my communication skills and how adaptive I am.
Tell me about yourself
Why I am changing my career path from Electrical to Software Engineer?
How many projects I have done when I was working as Electrical engineer?
Tip 1 : Be prepared this question for almost every HR round.
Tip 2 : Don't lie about your self while introducing
Tip 3 : Be prepared with questions like (Weakness and Strength)

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is the correct syntax to inherit a class in Java?