Interview Questions

Review this list of 4,217 interview questions and answers verified by hiring managers and candidates.
  • "This is a Technical question. It tests your ability to understand high level technical concepts. Even though your job won't have any coding involved, you'll still need to understand these concepts. Being able to cover all these topics with clarity communicates confidence in your interviewer. Unfortunately, there's no formula for technical questions, but some general tips are: Use analogies when you can Break your solution into clear, bite-size steps Don't be afraid to use examples to b"

    Exponent - "This is a Technical question. It tests your ability to understand high level technical concepts. Even though your job won't have any coding involved, you'll still need to understand these concepts. Being able to cover all these topics with clarity communicates confidence in your interviewer. Unfortunately, there's no formula for technical questions, but some general tips are: Use analogies when you can Break your solution into clear, bite-size steps Don't be afraid to use examples to b"See full answer

    Product Manager
  • "AUC 0.5 equates to a random model, so when creating any machine learning model or statistical model, you ideally want your model to at least beat this random baseline."

    Harsh S. - "AUC 0.5 equates to a random model, so when creating any machine learning model or statistical model, you ideally want your model to at least beat this random baseline."See full answer

    Concept
    Machine Learning
  • "i did not know ,but the answer is parquet is column-oriented, avro is row-oriented"

    Erjan G. - "i did not know ,but the answer is parquet is column-oriented, avro is row-oriented"See full answer

    Data Engineer
    Technical
  • New York Times logoAsked at New York Times 

    "input = [ {"topic": 1, "chapter": 1, "section": 1}, {"topic": 2, "chapter": 2, "section": 1}, {"topic": 3, "chapter": 2, "section": 2}, {"topic": 4, "chapter": 1, "section": 1}, {"topic": 5, "chapter": 1, "section": 1}, {"topic": 6, "chapter": 2, "section": 2}, {"topic": 7, "chapter": 2, "section": 2}, {"topic": 8, "chapter": 2, "section": 3}, ] expected_output = [ {'chapter': 1, 'sections': [ {'section': 1, 'topics': [ {'top"

    Anonymous Unicorn - "input = [ {"topic": 1, "chapter": 1, "section": 1}, {"topic": 2, "chapter": 2, "section": 1}, {"topic": 3, "chapter": 2, "section": 2}, {"topic": 4, "chapter": 1, "section": 1}, {"topic": 5, "chapter": 1, "section": 1}, {"topic": 6, "chapter": 2, "section": 2}, {"topic": 7, "chapter": 2, "section": 2}, {"topic": 8, "chapter": 2, "section": 3}, ] expected_output = [ {'chapter': 1, 'sections': [ {'section': 1, 'topics': [ {'top"See full answer

    Software Engineer
    Coding
    +1 more
  • BizOps & Strategy
    Behavioral
    +1 more
  • 🧠 Want an expert answer to a question? Saving questions lets us know what content to make next.

  • Amazon logoAsked at Amazon 

    "Situation Action Result"

    Anonymous Salmon - "Situation Action Result"See full answer

    Software Engineer
    Behavioral
    +1 more
  • Anthropic logoAsked at Anthropic 
    Product Manager
    Concept
    +3 more
  • "Seamless user experience Consistent UI Data mapping Technical architecture of the 2 platforms and their compatibility API integrations Security and compliance factors to consider, impacting from the integration. Feature parity — to carry over features, enhance features, drop features etc Load testing, performance testing and end-to-end testing post integration"

    S S. - "Seamless user experience Consistent UI Data mapping Technical architecture of the 2 platforms and their compatibility API integrations Security and compliance factors to consider, impacting from the integration. Feature parity — to carry over features, enhance features, drop features etc Load testing, performance testing and end-to-end testing post integration"See full answer

    Product Manager
    Product Strategy
  • Technical Program Manager
    System Design
  • LinkedIn logoAsked at LinkedIn 

    " First, sort the array in ascending order. This ensures that we can easily check the triangle inequality condition. Use a loop to iterate through the array. For each triplet of consecutive elements, check if they satisfy the triangle inequality condition a+b>ca+b>c. As soon as you find a valid tuple, return it. If no valid tuple is found, return null. This approach is efficient with a time complexity of O(nlog⁡n)O(nlogn) due to the sorting step, followed by a linear scan of the array"

    Shivam P. - " First, sort the array in ascending order. This ensures that we can easily check the triangle inequality condition. Use a loop to iterate through the array. For each triplet of consecutive elements, check if they satisfy the triangle inequality condition a+b>ca+b>c. As soon as you find a valid tuple, return it. If no valid tuple is found, return null. This approach is efficient with a time complexity of O(nlog⁡n)O(nlogn) due to the sorting step, followed by a linear scan of the array"See full answer

    Machine Learning Engineer
    Data Structures & Algorithms
    +1 more
  • "You are working on a SaaS product that currently uses Basic Authentication (username/password) for API and application access. The security and compliance teams have mandated moving to a more secure, modern authentication mechanism — OIDC (OpenID Connect). Design the authentication system migration from Basic Authentication to OIDC. Discuss the architecture changes, the migration approach, and the rollout strategy. What are the technical challenges, impacts on customers, backward compatibility"

    Anonymous Stork - "You are working on a SaaS product that currently uses Basic Authentication (username/password) for API and application access. The security and compliance teams have mandated moving to a more secure, modern authentication mechanism — OIDC (OpenID Connect). Design the authentication system migration from Basic Authentication to OIDC. Discuss the architecture changes, the migration approach, and the rollout strategy. What are the technical challenges, impacts on customers, backward compatibility"See full answer

    Software Engineer
    System Design
  • MongoDB logoAsked at MongoDB 

    "After researching Glassdoor, I provided an in-depth answer that incorporated my interest in DB technologies, alignment with career objectives, and ability to make an impact from professional experience. "

    Dave F. - "After researching Glassdoor, I provided an in-depth answer that incorporated my interest in DB technologies, alignment with career objectives, and ability to make an impact from professional experience. "See full answer

    Technical Program Manager
    Behavioral
  • Technical Program Manager
    Product Strategy
    +2 more
  • Twitch logoAsked at Twitch 

    "This is an Improve a Product question with a slight twist. We have to both pick the product we're planning to improve, and offer at least three improvements. Let's first go over the Improve a Product formula: Ask clarifying questions Identify users, behaviors, and pain points State product goal Brainstorm small improvements Brainstorm bolder improvements Measure success Summarize Now, let's begin! Ask clarifying questions Before we beg"

    Exponent - "This is an Improve a Product question with a slight twist. We have to both pick the product we're planning to improve, and offer at least three improvements. Let's first go over the Improve a Product formula: Ask clarifying questions Identify users, behaviors, and pain points State product goal Brainstorm small improvements Brainstorm bolder improvements Measure success Summarize Now, let's begin! Ask clarifying questions Before we beg"See full answer

    Product Manager
    Product Design
  • Nvidia logoAsked at Nvidia 

    "def containSubString(mainString, SubString): s1 = "hello world" # main String s2 = "hello" s3 = "world" s4 = "Nothing" answer1 = containSubString(s1, s2) answer2 = containSubString(s1, s3) answer3 = containSubString(s1, s4) print(answer1 , answer2, answer) "

    Jalpa S. - "def containSubString(mainString, SubString): s1 = "hello world" # main String s2 = "hello" s3 = "world" s4 = "Nothing" answer1 = containSubString(s1, s2) answer2 = containSubString(s1, s3) answer3 = containSubString(s1, s4) print(answer1 , answer2, answer) "See full answer

    Software Engineer
    Coding
    +1 more
  • "Clarifying Questions Is my understanding correct when I say that pandemic is something which is a widespread of an infectious disease over a whole country or globally? (Interviewer confirms) what do you mean by simplifying here? Are we talking about interviewee going from location A to location B? or after reaching the building from the door to the interviewer? or the interview experience itself? or is it upto me to explore? (Interviewer mentions that it is upto you to explore) Are we"

    Pankhuri T. - "Clarifying Questions Is my understanding correct when I say that pandemic is something which is a widespread of an infectious disease over a whole country or globally? (Interviewer confirms) what do you mean by simplifying here? Are we talking about interviewee going from location A to location B? or after reaching the building from the door to the interviewer? or the interview experience itself? or is it upto me to explore? (Interviewer mentions that it is upto you to explore) Are we"See full answer

    Product Manager
    Product Design
  • Software Engineer
    Data Structures & Algorithms
    +1 more
  • Meta (Facebook) logoAsked at Meta (Facebook) 
    Engineering Manager
    System Design
Showing 3561-3580 of 4217