LinkedIn Interview Questions

Review this list of 126 LinkedIn interview questions and answers verified by hiring managers and candidates.
  • Product Manager
    Product Design
  • LinkedIn logoAsked at LinkedIn 

    "Although there is no fixed or predefined framework that I follow to prioritize, I do have a methodical criterion that is suitable to my organization and practices. The business outcome/value proposition of each project/request - try to quantitative every metric below Number of customers going to be impacted in that product vertical - item with more customers gets more weight Is this an existing feature or a new feature - existing features get more weightage especially if thi"

    Naresh A. - "Although there is no fixed or predefined framework that I follow to prioritize, I do have a methodical criterion that is suitable to my organization and practices. The business outcome/value proposition of each project/request - try to quantitative every metric below Number of customers going to be impacted in that product vertical - item with more customers gets more weight Is this an existing feature or a new feature - existing features get more weightage especially if thi"See full answer

    Product Manager
    Product Strategy
    +1 more
  • LinkedIn logoAsked at LinkedIn 
    Video answer for 'Merge k sorted linked lists.'
    +6

    "A much better solution than the one in the article, below: It looks like the ones writing articles here in Javascript do not understand the time/space complexity of javascript methods. shift, splice, sort, etc... In the solution article you have a shift and a sort being done inside a while, that is, the multiplication of Ns. My solution, below, iterates through the list once and then sorts it, separately. It´s O(N+Log(N)) class ListNode { constructor(val = 0, next = null) { th"

    Guilherme F. - "A much better solution than the one in the article, below: It looks like the ones writing articles here in Javascript do not understand the time/space complexity of javascript methods. shift, splice, sort, etc... In the solution article you have a shift and a sort being done inside a while, that is, the multiplication of Ns. My solution, below, iterates through the list once and then sorts it, separately. It´s O(N+Log(N)) class ListNode { constructor(val = 0, next = null) { th"See full answer

    Software Engineer
    Data Structures & Algorithms
    +4 more
  • LinkedIn logoAsked at LinkedIn 
    Software Engineer
    Data Structures & Algorithms
    +4 more
  • LinkedIn logoAsked at LinkedIn 

    "1) Start by clarifying your constraints - which side of the marketplace am I focusing on and what are they solving for? (e.g., minimize cost for hoster, maximize comfort for renter indoor etc.). Assuming this is a "dealer's choice" type response then proceed to step 2 2) Where to focus: which customer segment, which job-to-be-done, and why I'd start by laying out segments on 2 dimensions: urban (think big cities, downtowns) and suburban (think suburbs, beach towns, mountains) areas focused on e"

    Anonymous Spider - "1) Start by clarifying your constraints - which side of the marketplace am I focusing on and what are they solving for? (e.g., minimize cost for hoster, maximize comfort for renter indoor etc.). Assuming this is a "dealer's choice" type response then proceed to step 2 2) Where to focus: which customer segment, which job-to-be-done, and why I'd start by laying out segments on 2 dimensions: urban (think big cities, downtowns) and suburban (think suburbs, beach towns, mountains) areas focused on e"See full answer

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

  • LinkedIn logoAsked at LinkedIn 
    Machine Learning Engineer
    Behavioral
    +1 more
  • LinkedIn logoAsked at LinkedIn 
    Product Manager
    Product Design
  • "Attempted the answer. Feedback appreciated. Thanks! Mission: LinkedIn mission statement is to “connect the world's professionals to make them more productive and successful.” LinkedIn Feed: People You Know, Talking About Things You Care About. One of things can be done is look for Existing engagement metrics that LinkedIn news feed may have. Look for data where engagement is low and understand why and come up with a hypothesis for that. For this exercise will assume there is no pro"

    Madhumita M. - "Attempted the answer. Feedback appreciated. Thanks! Mission: LinkedIn mission statement is to “connect the world's professionals to make them more productive and successful.” LinkedIn Feed: People You Know, Talking About Things You Care About. One of things can be done is look for Existing engagement metrics that LinkedIn news feed may have. Look for data where engagement is low and understand why and come up with a hypothesis for that. For this exercise will assume there is no pro"See full answer

    Product Design
  • +1

    "Clarification LinkedIn Premium is a premium offering for LinkedIn members through which they get access to some additional features that are not available in the free version. Members can use these features to meet their goals When we talk about LinkedIn premium we are focused on the career product and not the sales / recruiter products? —> Yes, focused on individual members. Sales needs are solved through sales navigator and recuriter lite which are specialized premium tools *Goals"

    stash - "Clarification LinkedIn Premium is a premium offering for LinkedIn members through which they get access to some additional features that are not available in the free version. Members can use these features to meet their goals When we talk about LinkedIn premium we are focused on the career product and not the sales / recruiter products? —> Yes, focused on individual members. Sales needs are solved through sales navigator and recuriter lite which are specialized premium tools *Goals"See full answer

    Product Strategy
    Product Design
  • LinkedIn logoAsked at LinkedIn 

    "Clarifying Qs: Question: Would this be a standalone platform, or be integrated into the existing LinkedIn web application and mobile applications? Answer: Integrated into the existing LinkedIn web application and mobile applications. Question: What are the goals of a video conferencing platform for LinkedIn? Answer: You decide. Let's think about LinkedIn's mission statement, which is to connect the world's professionals to make them more productive and successful. LinkedIn's co"

    Jessica A. - "Clarifying Qs: Question: Would this be a standalone platform, or be integrated into the existing LinkedIn web application and mobile applications? Answer: Integrated into the existing LinkedIn web application and mobile applications. Question: What are the goals of a video conferencing platform for LinkedIn? Answer: You decide. Let's think about LinkedIn's mission statement, which is to connect the world's professionals to make them more productive and successful. LinkedIn's co"See full answer

    Program Sense
    Product Strategy
  • LinkedIn logoAsked at LinkedIn 

    "Clarify the ask/ goal and scope Talk about the general need for travel in a Covid/post covid world + how it aligns with Meta's mission and business (the Why) Audience /Behavior segmentation with needs/pain points Prioritize Suggested 3 Solution territories Dived deep into 1 and mentioned tradeoffs/ risks for that one Summarized with a few GTM considerations/ideas Please note: Although the interview was scoped for 30 mins, the interviewer spent the first 15 diving into past work e"

    Raina M. - "Clarify the ask/ goal and scope Talk about the general need for travel in a Covid/post covid world + how it aligns with Meta's mission and business (the Why) Audience /Behavior segmentation with needs/pain points Prioritize Suggested 3 Solution territories Dived deep into 1 and mentioned tradeoffs/ risks for that one Summarized with a few GTM considerations/ideas Please note: Although the interview was scoped for 30 mins, the interviewer spent the first 15 diving into past work e"See full answer

    Product Manager
    Product Design
    +1 more
  • LinkedIn logoAsked at LinkedIn 
    +2

    "This could be done using two-pointer approach assuming array is sorted: left and right pointers. We need track two sums (left and right) as we move pointers. For moving pointers we will move left to right by 1 (increment) when right sum is greater. We will move right pointer to left by 1 (decrement) when left sum is greater. at some point we will either get the sum same and that's when we exit from the loop. 0-left will be one array and right-(n-1) will be another array. We are not going to mo"

    Bhaskar B. - "This could be done using two-pointer approach assuming array is sorted: left and right pointers. We need track two sums (left and right) as we move pointers. For moving pointers we will move left to right by 1 (increment) when right sum is greater. We will move right pointer to left by 1 (decrement) when left sum is greater. at some point we will either get the sum same and that's when we exit from the loop. 0-left will be one array and right-(n-1) will be another array. We are not going to mo"See full answer

    Software Engineer
    Data Structures & Algorithms
    +2 more
  • LinkedIn logoAsked at LinkedIn 
    +2

    "int main() { int a1[7]={1,2,3,4,5,6,7}; int a2[7]={1,9,10,11,12,13,14}; vectorv; v.insert(v.begin(),begin(a1),end(a1)); v.insert(v.begin(),begin(a2),end(a2)); int a3[v.size()]; sort(v.begin(),v.end()); for(int i=0;i<v.size();i++) { a3[i]=v[i]; } } `"

    Aryan D. - "int main() { int a1[7]={1,2,3,4,5,6,7}; int a2[7]={1,9,10,11,12,13,14}; vectorv; v.insert(v.begin(),begin(a1),end(a1)); v.insert(v.begin(),begin(a2),end(a2)); int a3[v.size()]; sort(v.begin(),v.end()); for(int i=0;i<v.size();i++) { a3[i]=v[i]; } } `"See full answer

    Software Engineer
    Data Structures & Algorithms
    +4 more
  • "A very interesting question. Please find below my approach: Understand VP's line of thought and goals trying to achieve Understand the assumptions/ Validate the hypothesis Impact on Brand, revenue, engineering cost, customers, and existing products SWOT Approve or Provide alternative Question to the VP: What is the objective? - higher engagement? easy to interact, peer-to-peer communication? Why the need for a separate platform? - to increase the no.of interactions? to"

    P K. - "A very interesting question. Please find below my approach: Understand VP's line of thought and goals trying to achieve Understand the assumptions/ Validate the hypothesis Impact on Brand, revenue, engineering cost, customers, and existing products SWOT Approve or Provide alternative Question to the VP: What is the objective? - higher engagement? easy to interact, peer-to-peer communication? Why the need for a separate platform? - to increase the no.of interactions? to"See full answer

    Product Strategy
    Behavioral
  • "Clarifying Questions: What currently defines profile completion? Does it have to be 100% completion or something like 80% of all available profile attributes. Or is it some specific set of must-have profile attributes like bio, current job, previous experience, etc. May I know some successful things that are helping users complete their profiles today and some unsuccessful ones as well that we tried but did not show lift in profile completion metrics? Goal: Engagement from free u"

    Jacob C. - "Clarifying Questions: What currently defines profile completion? Does it have to be 100% completion or something like 80% of all available profile attributes. Or is it some specific set of must-have profile attributes like bio, current job, previous experience, etc. May I know some successful things that are helping users complete their profiles today and some unsuccessful ones as well that we tried but did not show lift in profile completion metrics? Goal: Engagement from free u"See full answer

    Product Manager
    Product Strategy
  • LinkedIn logoAsked at LinkedIn 
    Product Manager
    Behavioral
  • LinkedIn logoAsked at LinkedIn 

    "I will teach the user to use the application in a simple and objective way"

    Hamilton D. - "I will teach the user to use the application in a simple and objective way"See full answer

    System Design
    Product Design
  • LinkedIn logoAsked at LinkedIn 
    +17

    " O(n) time, O(1) space from typing import List def maxsubarraysum(nums: List[int]) -> int: if len(nums) == 0: return 0 maxsum = currsum = nums[0] for i in range(1, len(nums)): currsum = max(currsum + nums[i], nums[i]) maxsum = max(currsum, max_sum) return max_sum debug your code below print(maxsubarraysum([-1, 2, -3, 4])) `"

    Rick E. - " O(n) time, O(1) space from typing import List def maxsubarraysum(nums: List[int]) -> int: if len(nums) == 0: return 0 maxsum = currsum = nums[0] for i in range(1, len(nums)): currsum = max(currsum + nums[i], nums[i]) maxsum = max(currsum, max_sum) return max_sum debug your code below print(maxsubarraysum([-1, 2, -3, 4])) `"See full answer

    Software Engineer
    Data Structures & Algorithms
    +4 more
  • Machine Learning Engineer
    System Design
  • "Ask if the quality aspect is negotiable? Clearly hoping it is not. Then move on to explain nicely about the iron triangle - scope, time, resources. With scope and resources fixed, the time would need to be variable unless the project is considered cookie cutter, the exact project has been done many times in the past. (which is unlikely). If time cannot be relaxed, then the scope should be variable."

    Adib M. - "Ask if the quality aspect is negotiable? Clearly hoping it is not. Then move on to explain nicely about the iron triangle - scope, time, resources. With scope and resources fixed, the time would need to be variable unless the project is considered cookie cutter, the exact project has been done many times in the past. (which is unlikely). If time cannot be relaxed, then the scope should be variable."See full answer

    Technical Program Manager
    Program Sense
    +2 more
Showing 41-60 of 126