Skip to main content

Interview Questions

Review this list of 4,477 interview questions and answers verified by hiring managers and candidates.
  • 1 answer

    "Understood the problem statement by confirming details with interviewer. Approached by listing down all the basic features being provided by the platform. Platform -> Organizations can register themselves. One org can have more than one recruiters. Recruiters create jobs on the org portal. Candidate can apply to the jobs. Recruiters can accept and reject the applications. Categorized 4 parent tables by taking hints in between. The tables were USER -> ID, Name, Phone No, mail ID, Profile Des.("

    Jaya S. - "Understood the problem statement by confirming details with interviewer. Approached by listing down all the basic features being provided by the platform. Platform -> Organizations can register themselves. One org can have more than one recruiters. Recruiters create jobs on the org portal. Candidate can apply to the jobs. Recruiters can accept and reject the applications. Categorized 4 parent tables by taking hints in between. The tables were USER -> ID, Name, Phone No, mail ID, Profile Des.("See full answer

    Software Engineer
    System Design
  • Coinbase logoAsked at Coinbase 
    1 answer

    "From chatGPT: If Coinbase's net income is 10% less than it was last month, several actions can be considered to address the decrease in profitability. Here are some steps that might be taken: Conduct a Detailed Analysis:Investigate the reasons behind the decrease in net income. Analyze key financial metrics, transaction volumes, fee structures, market conditions, and any external factors impacting revenue. Expense Review:Review and analyze operating expenses. Identify areas where"

    Greg L. - "From chatGPT: If Coinbase's net income is 10% less than it was last month, several actions can be considered to address the decrease in profitability. Here are some steps that might be taken: Conduct a Detailed Analysis:Investigate the reasons behind the decrease in net income. Analyze key financial metrics, transaction volumes, fee structures, market conditions, and any external factors impacting revenue. Expense Review:Review and analyze operating expenses. Identify areas where"See full answer

    Product Manager
    Analytical
  • Amazon logoAsked at Amazon 
    9 answers
    +6

    "DFS with check of an already seen node in the graph would work from collections import deque, defaultdict from typing import List def iscourseloopdfs(idcourse: int, graph: defaultdict[list]) -> bool: stack = deque([(id_course)]) seen_courses = set() while stack: print(stack) curr_course = stack.pop() if currcourse in seencourses: return True seencourses.add(currcourse) for dependency in graph[curr_course]: "

    Gabriele G. - "DFS with check of an already seen node in the graph would work from collections import deque, defaultdict from typing import List def iscourseloopdfs(idcourse: int, graph: defaultdict[list]) -> bool: stack = deque([(id_course)]) seen_courses = set() while stack: print(stack) curr_course = stack.pop() if currcourse in seencourses: return True seencourses.add(currcourse) for dependency in graph[curr_course]: "See full answer

    Software Engineer
    Data Structures & Algorithms
    +4 more
  • Flipkart logoAsked at Flipkart 
    Add answer
    Product Manager
    Product Strategy
  • Google logoAsked at Google 
    11 answers
    +8

    "Clarifying questions: What city/ country are we talking about? Indian metro. What all counts as a grocery store? Do have to cover dark stores as well which are not open to public? Only consider all grocery stores where public pick up is allowed. Do we have to include hyper markets/ super markets as well or only smaller stores? Include both. Okay, so I would be considering the Indian metro of Bangalore here. The overall equation is , **total number of grocery stores = Number of small grocer"

    Kartikeya N. - "Clarifying questions: What city/ country are we talking about? Indian metro. What all counts as a grocery store? Do have to cover dark stores as well which are not open to public? Only consider all grocery stores where public pick up is allowed. Do we have to include hyper markets/ super markets as well or only smaller stores? Include both. Okay, so I would be considering the Indian metro of Bangalore here. The overall equation is , **total number of grocery stores = Number of small grocer"See full answer

    Product Manager
    Estimation
  • 🧠 Want an expert answer to a question? Saving questions lets us know what content to make next.

  • DoorDash logoAsked at DoorDash 
    1 answer

    "Step 1 - clarifying question: Are we just focusing on the customer who rented a car or both who has given a car? (Assumed only a customer who rented a car) Are we just focusing on the mobile or web apps? (Assumed only the mobile app) Step 2 -Define users: customer who rented a car. Step 3 - pain points: unclear communication between both parties. lack of support if needed. hassle-full car drop experience. No survey or complaint channel about how the experienc"

    Jatan P. - "Step 1 - clarifying question: Are we just focusing on the customer who rented a car or both who has given a car? (Assumed only a customer who rented a car) Are we just focusing on the mobile or web apps? (Assumed only the mobile app) Step 2 -Define users: customer who rented a car. Step 3 - pain points: unclear communication between both parties. lack of support if needed. hassle-full car drop experience. No survey or complaint channel about how the experienc"See full answer

    Product Manager
    Product Design
  • "Product Bugs can be categorised by severity associated with them. Product Roadmap prioritization happens by MuSCoW technique, or WSJF for big ticket items. Suggestions from Leadership normally fall in expedited bucket. Overall, if there's a Scrum way of executing all priorities, then the PO and Team get together to decide the scope of the sprints for execution."

    Anonymous Salmon - "Product Bugs can be categorised by severity associated with them. Product Roadmap prioritization happens by MuSCoW technique, or WSJF for big ticket items. Suggestions from Leadership normally fall in expedited bucket. Overall, if there's a Scrum way of executing all priorities, then the PO and Team get together to decide the scope of the sprints for execution."See full answer

    Product Manager
    Analytical
    +1 more
  • Meta logoAsked at Meta 
    6 answers
    +2

    "I think i would start by asking what's driving the strategy for testing new ad formats? Possible options could be Increase monetization? Improve ad effectiveness? Any other objectives? Assuming that its both 1&2 - we want to test new ad formats to gauge if these are more effective and lead to higher monetization Ground the conversation into current scenario Instagram Reels is aa short form video platform that users use to showoff their creativity Reels is a relatively new addition to"

    EssGee - "I think i would start by asking what's driving the strategy for testing new ad formats? Possible options could be Increase monetization? Improve ad effectiveness? Any other objectives? Assuming that its both 1&2 - we want to test new ad formats to gauge if these are more effective and lead to higher monetization Ground the conversation into current scenario Instagram Reels is aa short form video platform that users use to showoff their creativity Reels is a relatively new addition to"See full answer

    Product Manager
    Analytical
    +1 more
  • "Classes are represented in memory as areas where code and class shared objects are. The JVM use class loader to load classes and unload them if no more required at runtime as specified at https://docs.oracle.com/javase/specs/jls/se8/html/jls-12.html#jls-12.7, to name a very consolidated version of JVM. The interviewers supposed memory was freed without being subject to GC. I asked to discuss to clarify which hypothesis is right, the interviewers dismissed me. I'm very happy they didn't select m"

    Luca D. - "Classes are represented in memory as areas where code and class shared objects are. The JVM use class loader to load classes and unload them if no more required at runtime as specified at https://docs.oracle.com/javase/specs/jls/se8/html/jls-12.html#jls-12.7, to name a very consolidated version of JVM. The interviewers supposed memory was freed without being subject to GC. I asked to discuss to clarify which hypothesis is right, the interviewers dismissed me. I'm very happy they didn't select m"See full answer

    Software Engineer
    Technical
  • Amazon logoAsked at Amazon 
    5 answers
    +2

    "I would try to understand their perspective, focus on the issue, find common ground, brainstorm solutions, and agree on a course of action."

    Alemayehu m G. - "I would try to understand their perspective, focus on the issue, find common ground, brainstorm solutions, and agree on a course of action."See full answer

    Product Manager
    Behavioral
    +1 more
  • Microsoft logoAsked at Microsoft 
    Add answer
    Product Manager
    Product Strategy
  • 1 answer

    "I was a student Worker at Gordon's Food Service, Schaumburg. The tasks were to pull in the shopping carts from the lot, cleaning the break room, restocking products, checking expiration dates, garbage and recycling, vacuuming onion peels, cleaning bathroom mirrors and refilling the bottles with cleaning supplies."

    Amparo L. - "I was a student Worker at Gordon's Food Service, Schaumburg. The tasks were to pull in the shopping carts from the lot, cleaning the break room, restocking products, checking expiration dates, garbage and recycling, vacuuming onion peels, cleaning bathroom mirrors and refilling the bottles with cleaning supplies."See full answer

    Technical Program Manager
    Behavioral
  • 1 answer

    "The Reason I want to work as a project manager at Rivian is because I've worked as a team at GFS to throw the garbage and recycling out in the garbage and we were able to dump all the garbage as a team and we got the job done."

    Amparo L. - "The Reason I want to work as a project manager at Rivian is because I've worked as a team at GFS to throw the garbage and recycling out in the garbage and we were able to dump all the garbage as a team and we got the job done."See full answer

    Technical Program Manager
    Behavioral
  • System Design
  • Add answer
    System Design
  • "Predicting user behavior generally is hard, unless you incorporate in all your product changes some kind of psychology based trigger or make behavior science-driven changes. For example creating scarcity like Booking.com who tell you that the rooms are about to be booked by someone else, or that others are looking at the property or booking actively today. Otherwise you'd have to rely on A/B testing and feature flags to release and measure the impact of product updates. A/B testing is a statis"

    Georgi S. - "Predicting user behavior generally is hard, unless you incorporate in all your product changes some kind of psychology based trigger or make behavior science-driven changes. For example creating scarcity like Booking.com who tell you that the rooms are about to be booked by someone else, or that others are looking at the property or booking actively today. Otherwise you'd have to rely on A/B testing and feature flags to release and measure the impact of product updates. A/B testing is a statis"See full answer

    System Design
  • 1 answer

    "There are several factors that I can employ to come up with a dynamic pricing system that has capability and capacity to adjust product or service prices based on the various parameters or factors that affect market prices such as demand and supply. This will be built on customer behaviours, competitors, demographics, and other relevant variables at my disposal. First, I will define the Requirements and Goals of the system. what is the business needs that this dynamic system will cater. Here fa"

    John N. - "There are several factors that I can employ to come up with a dynamic pricing system that has capability and capacity to adjust product or service prices based on the various parameters or factors that affect market prices such as demand and supply. This will be built on customer behaviours, competitors, demographics, and other relevant variables at my disposal. First, I will define the Requirements and Goals of the system. what is the business needs that this dynamic system will cater. Here fa"See full answer

    System Design
  • Meta logoAsked at Meta 
    Add answer
    Engineering Manager
    System Design
    +1 more
  • Meta logoAsked at Meta 
    Add answer
    Engineering Manager
    System Design
  • Add answer
    System Design
Showing 1941-1960 of 4477