Skip to main content

Interview Questions

Review this list of 4,411 interview questions and answers verified by hiring managers and candidates.
  • Product Manager
    Behavioral
  • "Suppliers have an interest in the purchase of inputs by the company. They want companies to pay on time"

    Chelsey V. - "Suppliers have an interest in the purchase of inputs by the company. They want companies to pay on time"See full answer

    Technical Program Manager
    Behavioral
  • "I explained that I devoted my entire 21 year special education teaching career to helping others and that evolved me into the man I am today dedicated to helping others help others. It’s the #Karma Krush"

    Mision veterans ministry B. - "I explained that I devoted my entire 21 year special education teaching career to helping others and that evolved me into the man I am today dedicated to helping others help others. It’s the #Karma Krush"See full answer

    Chief of Staff
    Behavioral
  • "One of the most basic measures of how well a PMO is functioning is the percentage of projects that are completed as a ratio of all the projects in a portfolio. More illustrative is how many of the projects are completed within the timeframes budgeted for the projects."

    Janell O. - "One of the most basic measures of how well a PMO is functioning is the percentage of projects that are completed as a ratio of all the projects in a portfolio. More illustrative is how many of the projects are completed within the timeframes budgeted for the projects."See full answer

    Product Manager
    Behavioral
  • Asana logoAsked at Asana 
    Product Manager
    Product Design
  • 🧠 Want an expert answer to a question? Saving questions lets us know what content to make next.

  • Meta logoAsked at Meta 
    Video answer for 'Find the common ancestors in a tree.'
    Machine Learning Engineer
    Data Structures & Algorithms
    +1 more
  • Zomato logoAsked at Zomato 

    "Thankyou for asking me this answer. What makes me unique in data analytics is my ability to blend technical skills with a strong business mindset. I don’t just focus on building dashboards or running analyses-I always tie the insights back to real business impact. During my internship at Quantara Analytics, for example, I didn’t just track supplier KPI's. I redesigned the reporting process, which cut manual work by 60% and improved decision-making. I’m also proactive about learning tools like Po"

    Dhruv M. - "Thankyou for asking me this answer. What makes me unique in data analytics is my ability to blend technical skills with a strong business mindset. I don’t just focus on building dashboards or running analyses-I always tie the insights back to real business impact. During my internship at Quantara Analytics, for example, I didn’t just track supplier KPI's. I redesigned the reporting process, which cut manual work by 60% and improved decision-making. I’m also proactive about learning tools like Po"See full answer

    Data Analyst
    Behavioral
  • Data Scientist
    Data Analysis
  • Meta logoAsked at Meta 

    "[I'm working on answering questions more concisely, so to practice, I will type this answer in paragraph form] To clarify the question, I understand there are at least two entry points for Stories - one within Facebook (website, app) and one within Instagram. Would you like for me to focus on the Instagram experience of Instagram Stories? Would you like for me to focus on existing markets or emerging markets, or I could decide based off where I see the greatest opportunity? (Interviewer: focus"

    Alice Z. - "[I'm working on answering questions more concisely, so to practice, I will type this answer in paragraph form] To clarify the question, I understand there are at least two entry points for Stories - one within Facebook (website, app) and one within Instagram. Would you like for me to focus on the Instagram experience of Instagram Stories? Would you like for me to focus on existing markets or emerging markets, or I could decide based off where I see the greatest opportunity? (Interviewer: focus"See full answer

    Product Design
    Product Strategy
  • Pinterest logoAsked at Pinterest 

    "Relu = 0 if > some threshold else x sigmoid normalizes to 0-1 asymptotically"

    William M. - "Relu = 0 if > some threshold else x sigmoid normalizes to 0-1 asymptotically"See full answer

    Machine Learning Engineer
    Concept
  • Meta logoAsked at Meta 

    "sum of continuous subarray and keep checking if arr[i]==arr[j]. if true increase count;"

    Rishabh R. - "sum of continuous subarray and keep checking if arr[i]==arr[j]. if true increase count;"See full answer

    Data Structures & Algorithms
    Coding
    +1 more
  • "The first part is to design with either a linked list of IDs or an array of boolean values. The second part is to optimize both time and memory."

    Seamus L. - "The first part is to design with either a linked list of IDs or an array of boolean values. The second part is to optimize both time and memory."See full answer

    Software Engineer
    Technical
  • Lyft logoAsked at Lyft 

    "Estimation - Estimate Lyft revenue Modes of Income Revenue through Ads Revenue earned from drivers and ride bookings Premium Subscriptions (Lyft Pink) and Other + subscriptions. Considering US as Lyft's primary market and hence estimating revenue for this market for Lyft Total Population of US : 330 Million Among this 330M, there are Low income families - Families who earn just to make their ends meet. So they won’t be able to afford cabs since it is a bit expensive. Assuming"

    Sai ganapathy S. - "Estimation - Estimate Lyft revenue Modes of Income Revenue through Ads Revenue earned from drivers and ride bookings Premium Subscriptions (Lyft Pink) and Other + subscriptions. Considering US as Lyft's primary market and hence estimating revenue for this market for Lyft Total Population of US : 330 Million Among this 330M, there are Low income families - Families who earn just to make their ends meet. So they won’t be able to afford cabs since it is a bit expensive. Assuming"See full answer

    Estimation
  • Product Manager
    Analytical
    +2 more
  • "Would prioritize the feature that moves the needle the most on the KPI outlined as the initiative's primary goal. For example, if the overall initiative is aimed at moving the number of bookings, prioritize the feature that moves the number of bookings the most."

    Kunal S. - "Would prioritize the feature that moves the needle the most on the KPI outlined as the initiative's primary goal. For example, if the overall initiative is aimed at moving the number of bookings, prioritize the feature that moves the number of bookings the most."See full answer

    Behavioral
  • +7

    "Definitely nice to think of this without memorization, but there is a well known algorithm for this problem, which is the Levenshtein Distance. Lev(a,b) = len(a) if len(b) == 0 = len(b) if len(a) == 0 = lev(a[1:], b[1:] if a[0] == b[0] = 1 + min (lev(a, b[1:]), lev(a[1:], b), lev(a[1:], b[1:])) https://en.wikipedia.org/wiki/Levenshtein_distance I'm sure some optimizations could be made with heuristic."

    Nicholas S. - "Definitely nice to think of this without memorization, but there is a well known algorithm for this problem, which is the Levenshtein Distance. Lev(a,b) = len(a) if len(b) == 0 = len(b) if len(a) == 0 = lev(a[1:], b[1:] if a[0] == b[0] = 1 + min (lev(a, b[1:]), lev(a[1:], b), lev(a[1:], b[1:])) https://en.wikipedia.org/wiki/Levenshtein_distance I'm sure some optimizations could be made with heuristic."See full answer

    Software Engineer
    Data Structures & Algorithms
    +1 more
  • +1

    "a process can include many threads. good for concurrent and parallel task execution"

    Erjan G. - "a process can include many threads. good for concurrent and parallel task execution"See full answer

    Data Engineer
    Concept
  • Google logoAsked at Google 

    "goal : user experience CUJ for cinema : Part A : deciding to watch a movie read reviews for movies that have released check nearby cinemas that are showing that movie check with friends/family who want to go with you find tickets online at a nearby cinema (if its a hit movie, you better hurry) buy tickets online split price on an app like split wise Part B : physically arriving at the theatre arrive at cinema hall find parking show e-ticket to enter stand i"

    Ananya M. - "goal : user experience CUJ for cinema : Part A : deciding to watch a movie read reviews for movies that have released check nearby cinemas that are showing that movie check with friends/family who want to go with you find tickets online at a nearby cinema (if its a hit movie, you better hurry) buy tickets online split price on an app like split wise Part B : physically arriving at the theatre arrive at cinema hall find parking show e-ticket to enter stand i"See full answer

    Product Manager
    Product Design
  • Microsoft logoAsked at Microsoft 
    Machine Learning Engineer
    Concept
Showing 2681-2700 of 4411