Tip 1 : Build a strong portfolio: It's essential to have a strong portfolio of coding projects and work experience that demonstrates your skills and knowledge in computer science. This can include personal coding projects, internships, part-time jobs, and open-source contributions. Having a portfolio that showcases your abilities will make you stand out to potential employers and increase your chances of landing a job.
Tip 2 : Practice coding: Practice coding regularly to keep your skills sharp and improve your problem-solving abilities. This can include participating in coding competitions, working on personal projects, or practicing coding problems on platforms such as HackerRank or LeetCode. Practice will help you become more comfortable with the coding interview process and improve your chances of success.
Tip 1 : Highlight relevant coursework and projects: In addition to listing your education and work experience, make sure to highlight relevant coursework and projects that demonstrate your skills and knowledge in computer science. This could include projects you completed for class, personal coding projects, or open-source contributions.
Tip 2 : Emphasize technical skills: Computer science is a technical field, so make sure to highlight your technical skills prominently on your resume. This could include programming languages, databases, operating systems, software applications, and other relevant technologies.
Tip 3 : Quantify achievements: Where possible, quantify your achievements on your resume. For example, if you worked on a project that improved efficiency by 50%, make sure to include that information. Quantifying your achievements can help make your resume more impactful and memorable.
Keep it concise: While it's important to include relevant information on your resume, make sure to keep it concise and focused. Stick to one or two pages, and use bullet points and clear headings to make it easy for recruiters to read.
Tip 4 : Customize for each application: Finally, make sure to customize your resume for each job application. Highlight the skills and experiences that are most relevant to the job, and make sure your resume matches the job description as closely as possible.
Timing: First half
How was the environment: Virtual meet
How the interviewer was: there was one interviewer ,looked very calm



1. INSERT(key, value): Inserts an integer value to the data structure against a string type key if not already present. If already present, it updates the value of the key with the new one. This function will not return anything.
2. DELETE(key): Removes the key from the data structure if present. It doesn't return anything.
3. SEARCH(key): It searches for the key in the data structure. In case it is present, return true. Otherwise, return false.
4. GET(key): It returns the integer value stored against the given key. If the key is not present, return -1.
5. GET_SIZE(): It returns an integer value denoting the size of the data structure.
6. IS_EMPTY(): It returns a boolean value, denoting whether the data structure is empty or not.
1. Key is always a string value.
2. Value can never be -1.
First(Denoted by integer value 1): Insertion to the Data Structure. It is done in a pair of (key, value).
Second(Denoted by integer value 2): Deletion of a key from the Data Structure.
Third(Denoted by integer value 3): Search a given key in the Data Structure.
Fourth(Denoted by integer value 4): Retrieve the value for a given key from the Data Structure.
Fifth(Denoted by integer value 5): Retrieve the size of the Data Structure.
Sixth(Denoted by integer value 6): Retrieve whether the Data Structure is empty or not.
What are semaphores?
What is virtual memory?
Tip 1 : Read Galvin for OS thoroughly.
Tip 2 : Do practice for SQL queries.
it was a virtual interview , two interviewers were there but only one was asking the questions



[1, 2, 3, 4] is a strictly increasing array, while [2, 1, 4, 3] is not.

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?