Upload Button Icon Add office photos

LinkedIn

Compare button icon Compare button icon Compare

Filter interviews by

LinkedIn Interview Questions, Process, and Tips

Updated 21 Jan 2025

Top LinkedIn Interview Questions and Answers

View all 72 questions

LinkedIn Interview Experiences

Popular Designations

65 interviews found

Consultant Interview Questions & Answers

user image Anonymous

posted on 26 Apr 2022

I applied via Recruitment Consulltant and was interviewed in Mar 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

I am pavani thank u for wonderful opportunity i prove my talent in ur company

Round 2 - Technical 

(1 Question)

  • Q1. Computer base questions

Interview Preparation Tips

Topics to prepare for LinkedIn Consultant interview:
  • Java
  • MS Office
  • Ms World
  • Javascript
Interview preparation tips for other job seekers - Please ask computer base questions because I am bsc student

Consultant Interview Questions asked at other Companies

Q1. How would you pass an entry for travel expenses incurred and paid by employee and was reimbursed? How would the end to end flow happens
View answer (8)

I applied via LinkedIn and was interviewed in Jul 2021. There were 3 interview rounds.

Round 1 - HR 

(3 Questions)

  • Q1. Share details of your previous job.
  • Ans. 

    I worked as a Software Engineer Front End at XYZ Company.

    • Developed and maintained front-end applications using HTML, CSS, and JavaScript.

    • Collaborated with designers and back-end developers to implement user-friendly interfaces.

    • Optimized website performance by implementing efficient coding practices.

    • Implemented responsive design principles to ensure compatibility across different devices.

    • Worked on integrating APIs and t...

  • Answered by AI
  • Q2. Why are you looking for a change?
  • Ans. 

    Seeking new challenges and growth opportunities in a different environment.

    • Looking for a change to expand my skill set and learn new technologies.

    • Seeking a more collaborative and innovative work culture.

    • Wanting to work on larger and more complex projects.

    • Desire to work with a diverse team and gain exposure to different perspectives.

    • Seeking better work-life balance or location-based reasons.

  • Answered by AI
  • Q3. Where do you see yourself in 5 years?
  • Ans. 

    In 5 years, I see myself as a senior software engineer leading a team, working on cutting-edge technologies and contributing to the success of the company.

    • Leading a team of software engineers

    • Working on cutting-edge technologies

    • Contributing to the success of the company

    • Continuing to learn and grow in my role

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. You have 4 algorithm questions: 1 easy, 1 medium, 2 hard
Round 3 - One-on-one 

(1 Question)

  • Q1. Questions about system design

Interview Preparation Tips

Interview preparation tips for other job seekers - Grind leetcode a lot, there is a topic on leetcode that have 75 common problems

Front Office and Accounts Executive Interview Questions asked at other Companies

Q1. Given the code to flat the array ex : Input - [2,3,[4,5,[6,7],8,9,[0]]] Output : [2,3,4,5,6,7,8,9,0]
View answer (3)
LinkedIn Interview Questions and Answers for Freshers
illustration image

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 65 minutes
Round difficulty - Hard

Timing (6pm - 8pm)
Environment was user friendly
As usual the online round had three coding questions and 20 MCQs. This was a pretty easy round and it’s duration was 65 minutes. The round consisted of questions from various domains like Algorithm, Data Structure, Operating System and Aptitude.

  • Q1. 

    Determine Count of Good Triplets

    You are given two arrays ARR1 and ARR2, containing N and M elements respectively. There are two types of 'good triplets' that need to be identified in these arrays.

    Type ...

  • Ans. 

    Calculate the total number of 'good triplets' in two arrays based on given conditions.

    • Iterate through all possible triplets in both arrays and check if they satisfy the conditions

    • Use nested loops to iterate through all combinations of indices in both arrays

    • Check the conditions for Type 1 and Type 2 'good triplets' separately

    • Increment a counter for each valid 'good triplet' found

    • Return the total count of 'good triplets'

  • Answered by AI
  • Q2. 

    Split the String Problem Statement

    You are given a string str consisting of N lowercase alphabets. Your task is to determine if it is possible to divide the string into three non-empty substrings such tha...

  • Ans. 

    Given a string, determine if it can be split into three non-empty substrings where one is a substring of the other two.

    • Check if any substring of the string is a substring of the other two substrings.

    • Iterate through all possible divisions of the string into three non-empty substrings.

    • Use two pointers to find all possible substrings efficiently.

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 40 minutes
Round difficulty - Medium

  • Q1. 

    Check if Two Trees are Mirror

    Given two arbitrary binary trees, your task is to determine whether these two trees are mirrors of each other.

    Explanation:

    Two trees are considered mirror of each other if...

  • Ans. 

    Check if two binary trees are mirrors of each other based on specific criteria.

    • Compare the roots of both trees.

    • Check if the left subtree of the first tree is the mirror of the right subtree of the second tree.

    • Verify if the right subtree of the first tree is the mirror of the left subtree of the second tree.

  • Answered by AI
  • Q2. 

    Snake and Ladder Problem Statement

    Given a 'Snake and Ladder' board with N rows and N columns, where positions are numbered from 1 to (N*N) starting from the bottom left, alternating direction each row, f...

  • Ans. 

    Find the minimum number of dice throws required to reach the last cell on a 'Snake and Ladder' board.

    • Use Breadth First Search (BFS) to find the shortest path from the starting cell to the last cell.

    • Maintain a queue to explore all possible moves from each cell.

    • Consider the effect of snakes and ladders on the movement of the player.

    • Handle the case where the last cell is unreachable by returning -1.

    • Optimize the solution b...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Malaviya National Institute of Technology Jaipur. I applied for the job as SDE - Intern in HyderabadEligibility criteriaAll students were allowedLinkedIn interview preparation:Topics to prepare for the interview - Arrays, recursion, DP, trees and graphs, stack, queueTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Must do questions from GFG.
Tip 2 : SDE sheet of striver can be helpful.

Application resume tips for other job seekers

Tip 1 : Do at least 3 major web dev project
Tip 2 : should be precise and descriptive
Tip 3 : also add your past experiences in the resume

Final outcome of the interviewSelected

Skills evaluated in this interview

Top LinkedIn Software Developer Intern Interview Questions and Answers

Q1. Determine Count of Good Triplets You are given two arrays ARR1 and ARR2, containing N and M elements respectively. There are two types of 'good triplets' that need to be identified in these arrays. Type 1: A triplet (i, j, k) where the squa... read more
View answer (1)

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)

I applied via Naukri.com and was interviewed before Mar 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude regarding only previous experience

Round 2 - Technical 

(3 Questions)

  • Q1. Technical questions related to previous experience, strength and weakness, top 10 updates of linkedIn
  • Q2. How to Improve production, quality
  • Ans. 

    Improving production and quality requires a focus on process optimization, employee training, and continuous improvement initiatives.

    • Implement lean manufacturing principles to streamline processes and reduce waste

    • Invest in employee training and development to improve skills and knowledge

    • Establish quality control measures and regularly monitor performance

    • Encourage employee feedback and suggestions for improvement

    • Regular...

  • Answered by AI
  • Q3. Self introduction, previous experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Product knowledge and little elaborated answers

Senior Content Reviewer Interview Questions asked at other Companies

Q1. How to Improve production, quality
View answer (1)

LinkedIn interview questions for popular designations

 Software Developer

 (10)

 Software Engineer

 (6)

 Software Developer Intern

 (3)

 Softwaretest Engineer

 (2)

 Senior Software Developer

 (2)

 Senior Business Analyst

 (2)

 Senior Engineer

 (1)

 Sales

 (1)

Interview Questions & Answers

user image wineyturtle

posted on 28 Apr 2022

I applied via LinkedIn and was interviewed in Nov 2021. There was 1 interview round.

Round 1 - Job post apply 

(1 Question)

  • Q1. Easy apply by LinkedIn profile. The shared opening with Tata Consultancy Services (tcs)
  • Ans. Badge score missed not taken test again
  • Answered by Sowmitri S H (Som)

Interview Preparation Tips

Interview preparation tips for other job seekers - Show your .net skill to recruiter by qualifying skill test your impression on recruiter makes good.

Get interview-ready with Top LinkedIn Interview Questions

Administrator Interview Questions & Answers

user image Anonymous

posted on 24 Nov 2021

I applied via LinkedIn and was interviewed in Oct 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. What skills do you have related to this role

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't panic, they are really lovely in this company and the interview was a good experience

Administrator Interview Questions asked at other Companies

Q1. Which technic implementation to the save expenditures of company ?
View answer (1)

I applied via Campus Placement and was interviewed in Jun 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Tell me about yourself.
  • Q2. Situation based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm, be prepared and be honest.

Customer Service Executive Interview Questions asked at other Companies

Q1. How u deal to the customer if he get non veg food instead of veg food ?
View answer (36)

Interview Questionnaire 

1 Question

  • Q1. Profile summary, work experience, journey, key projects in round 1. Market entry case study in round 2. Sales strategy case study in round 3

Business Development Associate Interview Questions asked at other Companies

Q1. You are going to the office and you saw a 6 years old poor guy selling pencils. Out of kindness you bought all the pencils(100 pcs) at Rs. 50 and gave him extra Rs. 50 to support his family. Since you don't require those pencils at all. Wha... read more
View answer (40)

I applied via Recruitment Consulltant and was interviewed before May 2021. There were 2 interview rounds.

Round 1 - Assignment 

They had a general round for some scenarios as to what action one would take if the job is given to them. They had a mcq questionnaire, it roughly took about 40 minutes to finish it.

Round 2 - HR 

(3 Questions)

  • Q1. Tell me about yourself
  • Q2. Where do you see yourself in 5 years
  • Q3. Why did you have a career gap (I had about 3 years)

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through the job description thoroughly. Learn a little about the company history. These two would surely make you get the job in this organization

Content Reviewer Interview Questions asked at other Companies

Q1. What is my view on digital payment? Is it secure? India is ready to go cashless or not? *Note- This question was for the Group discussion round.
View answer (5)

I was interviewed before Sep 2020.

Round 1 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

6 students from the campus were selected for this round. The interviews were conducted simultaneously for all on BlueJeans along with a code sharing website. After the initial set up and introduction, a set of 2 questions from DSA were asked from all candidates. The results were announced the same day.

  • Q1. 

    DFS Traversal Problem Statement

    Given an undirected and disconnected graph G(V, E), where V is the number of vertices and E is the number of edges, the connections between vertices are provided in the 'GR...

  • Ans. 

    DFS traversal to find connected components in an undirected and disconnected graph.

    • Use Depth First Search (DFS) to traverse the graph and find connected components

    • Maintain a visited array to keep track of visited vertices

    • For each unvisited vertex, perform DFS to explore the connected component it belongs to

    • Print the vertices of each connected component in ascending order

  • Answered by AI
  • Q2. 

    Median of Two Sorted Arrays Problem Statement

    Given two sorted integer arrays A and B with sizes N and M respectively, find the median of the combined array that results from merging arrays A and B. If th...

  • Ans. 

    Find the median of two sorted arrays after merging them.

    • Merge the two sorted arrays into one sorted array.

    • Calculate the median based on the length of the combined array.

    • Handle cases where the total number of elements is even or odd.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Indira Gandhi Delhi Technical University for Women. Eligibility criteriaAbove 70%LinkedIn interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, Algorithms, Dynamic Programming, DBMSTime required to prepare for the interview - 2.5 monthsInterview preparation tips for other job seekers

Tip 1 : Practice an ample amount of questions from online sites like GeeksforGeeks and HackkerRank on all major topics. Once you are done with topicwise preparation, go on and try out some timed tests too.
Tip 2 : Don't forget to revise OOPS, OS, DBMS too.
Tip 3 : Try out mock interviews with friends, that's the best thing you can do for yourself other than practising questions!!
Tip 4 : During the interview, one thing that is asked for sure is the time complexity of your solution, so always know the complexity of your algorithms.

Application resume tips for other job seekers

Tip 1 : Have your projects clearly mentioned and well explained
Tip 2 : Make sure that there are no formatting errors
Tip 3 : Mention your LinkedIn profile ;)

Final outcome of the interviewSelected

Skills evaluated in this interview

Top LinkedIn Software Developer Intern Interview Questions and Answers

Q1. Determine Count of Good Triplets You are given two arrays ARR1 and ARR2, containing N and M elements respectively. There are two types of 'good triplets' that need to be identified in these arrays. Type 1: A triplet (i, j, k) where the squa... read more
View answer (1)

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)
Contribute & help others!
anonymous
You can choose to be anonymous

LinkedIn Interview FAQs

How many rounds are there in LinkedIn interview?
LinkedIn interview process usually has 2-3 rounds. The most common rounds in the LinkedIn interview process are Technical, One-on-one Round and Coding Test.
What are the top questions asked in LinkedIn interview?

Some of the top questions asked at the LinkedIn interview -

  1. Difference between TOP and PS commands? why TOP is called T...read more
  2. One liner command to kill all process in the system which were using JA...read more
  3. Explain XSS attacks and how to prevent it? and the same for sqli? Any experienc...read more
How long is the LinkedIn interview process?

The duration of LinkedIn interview process can vary, but typically it takes about less than 2 weeks to complete.

Recently Viewed

LIST OF COMPANIES

Asian Aerosol

Overview

LIST OF COMPANIES

People's Forum

Overview

SALARIES

People's Forum

INTERVIEWS

Verzeo Edutech

No Interviews

INTERVIEWS

Unique Coatings

No Interviews

INTERVIEWS

S J Developers

No Interviews

SALARIES

GlobusSoft

SALARIES

GlobusSoft

Tell us how to improve this page.

LinkedIn Interview Process

based on 40 interviews

Interview experience

4.3
  
Good
View more

Interview Questions from Similar Companies

Accenture Interview Questions
3.8
 • 8.1k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
IBM Interview Questions
4.0
 • 2.3k Interviews
Oracle Interview Questions
3.7
 • 847 Interviews
Google Interview Questions
4.4
 • 824 Interviews
Adobe Interview Questions
3.9
 • 234 Interviews
Salesforce Interview Questions
4.0
 • 222 Interviews
Facebook Interview Questions
4.3
 • 52 Interviews
View all

LinkedIn Reviews and Ratings

based on 183 reviews

4.3/5

Rating in categories

4.0

Skill development

4.3

Work-life balance

4.1

Salary

3.4

Job security

4.3

Company culture

3.6

Promotions

4.1

Work satisfaction

Explore 183 Reviews and Ratings
Trust and Safety Specialist
73 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
65 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
59 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Content Reviewer
37 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Account Director
31 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare LinkedIn with

Facebook

4.3
Compare

Google

4.4
Compare

Microsoft Corporation

4.0
Compare

Amazon

4.1
Compare
Did you find this page helpful?
Yes No
write
Share an Interview