OOP-based question: Object-Oriented Programming (OOP) focuses on concepts like classes, objects, inheritance, and polymorphism. Questions may involve designing systems using these principles to model real-world problems and improve code reuse.
Operating system: An operating system manages hardware resources and provides services for applications. Key topics include memory management, process scheduling, file systems, and handling concurrency through threads and processes.
Project-based discussion: In project discussions, candidates are expected to explain technical challenges, decisions, and tools used, demonstrating their problem-solving, collaboration, and technical skills through practical experience and hands-on projects.
LCA of LinkedList: Finding the Lowest Common Ancestor (LCA) in a LinkedList involves determining the lowest common node between two nodes in the structure, whi
Interview questions [1]
Question 1
OOP-based question: Object-Oriented Programming (OOP) focuses on concepts like classes, objects, inheritance, and polymorphism. Questions may involve designing systems using these principles to model real-world problems and improve code reuse.
I applied through college or university. The process took 2 days. I interviewed at Microsoft (Manipal) in Aug 2023
Interview
I recently participated in an interview process that included two distinct rounds: a technical round and a managerial round. The technical round primarily focused on evaluating my knowledge and skills related to computer science, especially in areas such as programming, algorithms, and problem-solving. The questions were challenging but not overly difficult, allowing me to showcase my understanding of key concepts.
The managerial round, on the other hand, was more about assessing my soft skills, such as communication, teamwork, and how I handle different situations. This round involved discussions about how I approach problem-solving in a team setting, and how I manage tasks and responsibilities. The interviewer was interested in understanding my leadership abilities, decision-making process, and how I adapt to various challenges.
Interview questions [1]
Question 1
You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order, and each of their nodes contains a single digit. Add the two numbers and return the sum as a linked list.
You may assume the two numbers do not contain any leading zero, except the number 0 itself.
there was two interviews, 1st one was data science, 2nd one was problem solving.
failed 1st one and passed the 2nd one.
got rejected at the end. that is it.
Interview questions [1]
Question 1
/* Given a string S, get its reduced form. Where a series of operations are performed to remove pairs of adjacent characters that match.
* Input-> "bbckku" Output -> "cu"
* Input -> "bbkvhmcabbac" Output -> "kvhm" */