Tips for Future Product Engineers in MNCs
Keep It Concise: Limit your resume to one page, especially if you're just starting your career. Focus on highlighting the most relevant and impactful information.
Choose a Clear Format: Use a clean and professional resume format that is easy to read. Use headings, bullet points, and proper spacing to organize your information.
Include Contact Information: Provide your full name, phone number, email address, and LinkedIn profile (if applicable) at the top of your resume. Make sure your contact details are up to date.
Showcase Your Education: Include your educational background, including the name of your degree, the institution you attended, and the graduation date. Add any relevant coursework, projects, or academic achievements.
Highlight Relevant Skills: Identify the key skills required for the job you're applying for and highlight them in a dedicated skills section. Include both hard skills (technical skills specific to the job) and soft skills (such as communication, problem-solving, or teamwork).
Showcase Experience and Achievements: If you have any relevant work experience, internships, or volunteer positions, include them in reverse chronological order. Focus on quantifiable achievements and specific responsibilities that demonstrate your skills and contributions.
Include Extracurricular Activities and Projects: If you have participated in any relevant extracurricular activities, clubs, or personal projects, include them to demonstrate your passion and dedication to the field. Highlight any leadership roles or significant accomplishments.
Proofread and Edit: Review your resume carefully for any errors or typos. Ensure consistency in formatting, grammar, and punctuation. Consider having someone else review it as well to catch any mistakes you might have missed.



You can’t sell without buying first.
For the given array [ 2, 100, 150, 120],
The maximum profit can be achieved by buying the stock at minute 0 when its price is Rs. 2 and selling it at minute 2 when its price is Rs. 150.
So, the output will be 148.






1. Both STR and PTR consist of English uppercase letters.
2. Length of string 'STR' will always be greater than or equal to the length of string ‘PTR’.
3. In case, there is no anagram substring, then return an empty sequence.
4. In case of more than one anagrams, return the indices in increasing order.



‘?’ – matches any single character
‘*’ – Matches any sequence of characters(sequence can be of length 0 or more)

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?