Tip 1: Do 150 easy-medium problems on Codestudio or similar sites. This helps you talk and write code in interviews, answer tricky math questions, and practice aptitude questions.
Tip 2: Use YouTube for ideas, but add your spin to make it unique. Think of it as customizing your code creation!
Tip 3: Master Object-Oriented Programming (OOP). It's like a secret language for building better code and shouldn't take long to learn.
Tip 1: Add proper skills and format your resume with well formatting, add hobbies, extra-circular activity which can align with your applied profile.
Tip 2: Add project and write 2-3 lines in description with what tech-stack you have used in that project and only add thing that you know in fact you have 30% knowledge of any topic you can add.
The first round was on matrix programming questions which we had to write in any programming language on plain paper with pen.
Aptitude Question
2-3 Problem solving question where asked that i have to write on paper and one was to find number of triangles from one figure and interviewer was friendly so the first face to face round was very smooth.
I have to count the number of triangles from a given figure which i was not able to count correctly but i was close to it after that they asked me to explain my project.



Prime Number


Input:
N = 4
Output:
1 2 Hello 4
Explanation: 1, 2, and 4 are not divisible by 3 and 5. 3 is divisible by 3, so we return ‘Hello’.
Hence, we return [‘1’, ‘2’, ‘Hello’, ‘4’].
It was a little tricky if-else problem in which if number is a multiple of 3 and 5 than program should print fizz-buzz or if multiple of 3 than fizz or multiple of 5 than buzz
In this 2 top official of company's management where interviewer and they asked me few programming question and also asked me oops concept based question.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?