Interview Questions

Review this list of 4,317 interview questions and answers verified by hiring managers and candidates.
  • "Feel free to download the full assignment (with screens) here: https://www.varunja.in/blog/assignment, cheers! Expected Outcome: Users: What do you know about the users of WhatsApp? What do they want? Features: What features will you build? Prioritization: What will be in your MVP and what will be in your 2.0 version? After you have decided on the MVP: Engineering: How hard is this to build? How long might it take? Are there ways to build a solution more quicker? Design: How does your new fea"

    Varun J. - "Feel free to download the full assignment (with screens) here: https://www.varunja.in/blog/assignment, cheers! Expected Outcome: Users: What do you know about the users of WhatsApp? What do they want? Features: What features will you build? Prioritization: What will be in your MVP and what will be in your 2.0 version? After you have decided on the MVP: Engineering: How hard is this to build? How long might it take? Are there ways to build a solution more quicker? Design: How does your new fea"See full answer

    Product Manager
    Product Strategy
    +2 more
  • "boolean isMatch(String s, String p) { int i=0; int j=0; int sID=-1; int prevM=-1; while(i<s.length()){ if(j<p.length() && (s.charAt(i)==p.charAt(j) || p.charAt(j)=='?')){ i++; j++; }else if(j<p.length() && p.charAt(j)=='*'){ sID=j; prevM=i; j++; }else if(sID!=-1){ j=sID+1; prevM++; i=prevM; }else{ return false; } } while(j<p.length() && p.charAt(j)=='*') j++; if(i!=s.length() || j!=p.leng"

    Ravi C. - "boolean isMatch(String s, String p) { int i=0; int j=0; int sID=-1; int prevM=-1; while(i<s.length()){ if(j<p.length() && (s.charAt(i)==p.charAt(j) || p.charAt(j)=='?')){ i++; j++; }else if(j<p.length() && p.charAt(j)=='*'){ sID=j; prevM=i; j++; }else if(sID!=-1){ j=sID+1; prevM++; i=prevM; }else{ return false; } } while(j<p.length() && p.charAt(j)=='*') j++; if(i!=s.length() || j!=p.leng"See full answer

    Software Engineer
    Data Structures & Algorithms
    +1 more
  • "Feel free to download the full assignment (with screens) here: https://www.varunja.in/blog/assignment, cheers! Expected Outcome: Users: What do you know about the users of WhatsApp? What do they want? Features: What features will you build? Prioritization: What will be in your MVP and what will be in your 2.0 version? After you have decided on the MVP: Engineering: How hard is this to build? How long might it take? Are there ways to build a solution more"

    Varun J. - "Feel free to download the full assignment (with screens) here: https://www.varunja.in/blog/assignment, cheers! Expected Outcome: Users: What do you know about the users of WhatsApp? What do they want? Features: What features will you build? Prioritization: What will be in your MVP and what will be in your 2.0 version? After you have decided on the MVP: Engineering: How hard is this to build? How long might it take? Are there ways to build a solution more"See full answer

    Product Manager
    Product Strategy
    +2 more
  • "Group the data by product, and then sort by time."

    Andrew B. - "Group the data by product, and then sort by time."See full answer

    Product Manager
    Product Strategy
    +2 more
  • Shopify logoAsked at Shopify 

    "Product marketing is representing product in a room with marketers and sales execs (roadmap, launch plans, milestones, benefits etc.) and representing marketing in a room with product and engineering (positioning, messaging, channels etc.)"

    Hadrien M. - "Product marketing is representing product in a room with marketers and sales execs (roadmap, launch plans, milestones, benefits etc.) and representing marketing in a room with product and engineering (positioning, messaging, channels etc.)"See full answer

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

  • Qualtrics logoAsked at Qualtrics 

    "• Leadership and Team Management: • Lead, mentor, and develop a team of software engineers, fostering a collaborative and high-performance work environment. • Conduct regular one-on-one meetings, performance reviews, and career development sessions with team members. • Facilitate effective communication and collaboration within the team and with other departments. • Project Management: • Oversee the planning, execution, and delivery of engineering projects, ensuring they are completed on time, w"

    Scott S. - "• Leadership and Team Management: • Lead, mentor, and develop a team of software engineers, fostering a collaborative and high-performance work environment. • Conduct regular one-on-one meetings, performance reviews, and career development sessions with team members. • Facilitate effective communication and collaboration within the team and with other departments. • Project Management: • Oversee the planning, execution, and delivery of engineering projects, ensuring they are completed on time, w"See full answer

    Engineering Manager
    Behavioral
  • "Used the below framework: Assumptions Vision Goal User Persona Use Cases Product Roadmap with prioritization Metrics References"

    Anonymous Partridge - "Used the below framework: Assumptions Vision Goal User Persona Use Cases Product Roadmap with prioritization Metrics References"See full answer

    Product Manager
    Execution
    +2 more
  • "Submitted before deadline and described the creativity behind the new website"

    Promise S. - "Submitted before deadline and described the creativity behind the new website"See full answer

    Frontend Engineer
    Technical
    +1 more
  • Zendesk logoAsked at Zendesk 
    +1

    "\>> Amazon Mission & Strategy \>> Where does Amazon Prime fit into Amazon’s mission? \>> Analyze Amazon’s positioning thru \Porter’s 5 forces \ \>> Available Options \\Amazon Mission & Strategy\\ \>> Vision // To be everything store \>> Jeff Bezos // Your margin is my opportunity \\Amazon Prime\\ \>> Loyalty program to help increase customer loyalty // CLTV \>> Fuels Bezos philosophy of \“your margin is my opportunity”\ \>> Amazon Services\: E-Commerce, OTT, Mus"

    Sourabh M. - "\>> Amazon Mission & Strategy \>> Where does Amazon Prime fit into Amazon’s mission? \>> Analyze Amazon’s positioning thru \Porter’s 5 forces \ \>> Available Options \\Amazon Mission & Strategy\\ \>> Vision // To be everything store \>> Jeff Bezos // Your margin is my opportunity \\Amazon Prime\\ \>> Loyalty program to help increase customer loyalty // CLTV \>> Fuels Bezos philosophy of \“your margin is my opportunity”\ \>> Amazon Services\: E-Commerce, OTT, Mus"See full answer

    Product Manager
    Product Strategy
  • Google logoAsked at Google 
    +2

    "WITH RECURSIVE fibonacci_series AS ( SELECT 1 AS n, 0 AS fib1, 1 AS fib2 UNION ALL SELECT n + 1 AS n, fib2 AS fib1, fib1 + fib2 AS fib2 FROM fibonacci_series WHERE n < 20 -- Limit the series to 20 numbers ) SELECT n, fib1 AS fib FROM fibonacci_series ORDER BY n; `"

    Yashasvi V. - "WITH RECURSIVE fibonacci_series AS ( SELECT 1 AS n, 0 AS fib1, 1 AS fib2 UNION ALL SELECT n + 1 AS n, fib2 AS fib1, fib1 + fib2 AS fib2 FROM fibonacci_series WHERE n < 20 -- Limit the series to 20 numbers ) SELECT n, fib1 AS fib FROM fibonacci_series ORDER BY n; `"See full answer

    Data Analyst
    Coding
    +4 more
  • Toptal logoAsked at Toptal 

    "Clarifying question - Who are we? Any constraints - time/money? What region are we going to focus on? Do we have a goal in mind? I'm assuming a product like this does not exist in today's world. How do you define kids - any specific age range? User Segments - 1) Beginner - don't know what an ATM is/don't understand money that well 2) Intermediate - have a basic understanding of ATMs 3) Advanced - have a really good understanding - maybe are on the older side Segment chosen is the Intermediate"

    Mrinalini A. - "Clarifying question - Who are we? Any constraints - time/money? What region are we going to focus on? Do we have a goal in mind? I'm assuming a product like this does not exist in today's world. How do you define kids - any specific age range? User Segments - 1) Beginner - don't know what an ATM is/don't understand money that well 2) Intermediate - have a basic understanding of ATMs 3) Advanced - have a really good understanding - maybe are on the older side Segment chosen is the Intermediate"See full answer

    Product Manager
    Product Design
  • Amazon logoAsked at Amazon 

    "1) select avg(session) from table where session> 180 2) select round(sessiontime/300)*300 as sessionbin, count() as sessioncount from table group by round(sessiontime/300)300 order by session_bin 3) SELECT t1.country AS country_a, t2.country AS country_b FROM ( SELECT country, COUNT(*) AS session_count FROM yourtablename GROUP BY country ) AS t1 JOIN ( SELECT country, COUNT(*) AS session_count FROM yourtablename `GROUP BY countr"

    Erjan G. - "1) select avg(session) from table where session> 180 2) select round(sessiontime/300)*300 as sessionbin, count() as sessioncount from table group by round(sessiontime/300)300 order by session_bin 3) SELECT t1.country AS country_a, t2.country AS country_b FROM ( SELECT country, COUNT(*) AS session_count FROM yourtablename GROUP BY country ) AS t1 JOIN ( SELECT country, COUNT(*) AS session_count FROM yourtablename `GROUP BY countr"See full answer

    Data Analyst
    Coding
    +4 more
  • "I’ve named Netflix, Acloset, Youtube music. Focused of YouTube music, increasing social interaction of existing users."

    Irina L. - "I’ve named Netflix, Acloset, Youtube music. Focused of YouTube music, increasing social interaction of existing users."See full answer

    Product Manager
    Program Sense
    +3 more
  • Software Engineer
    Product Design
  • Technical Program Manager
    Behavioral
  • Technical Program Manager
    Technical
  • +1

    "Clarifying question Why? Does booking.com have data on demand for this new feature? Let's say no Does booking.com have any specific goal with this new feature? Improve revenue or Improve user experience ( provide flexibility in payments or expand user base dealing with crypto, etc.) Let's say targetting new users who want to deal with crypto (I don't know if this is to be approached as a product design question) I would approach the introduction of cryptocurrency as a new payment method i"

    Mudit B. - "Clarifying question Why? Does booking.com have data on demand for this new feature? Let's say no Does booking.com have any specific goal with this new feature? Improve revenue or Improve user experience ( provide flexibility in payments or expand user base dealing with crypto, etc.) Let's say targetting new users who want to deal with crypto (I don't know if this is to be approached as a product design question) I would approach the introduction of cryptocurrency as a new payment method i"See full answer

    Product Manager
    Product Design
    +1 more
  • Booking.com logoAsked at Booking.com 

    "Optimizing Booking.com to improve conversion rates involves a strategic and holistic approach that considers various aspects of the user experience, website functionality, and marketing. Here are several strategies that could be employed: \\User-Centric Design:\\ \\Mobile Optimization:\\ Ensure the website is fully optimized for mobile devices, given the increasing number of users booking on smartphones. \\Intuitive Navigation:\\ Streamline the booking process with a cl"

    Rishi P. - "Optimizing Booking.com to improve conversion rates involves a strategic and holistic approach that considers various aspects of the user experience, website functionality, and marketing. Here are several strategies that could be employed: \\User-Centric Design:\\ \\Mobile Optimization:\\ Ensure the website is fully optimized for mobile devices, given the increasing number of users booking on smartphones. \\Intuitive Navigation:\\ Streamline the booking process with a cl"See full answer

    Product Manager
    Product Design
    +2 more
Showing 2081-2100 of 4317