Upload Button Icon Add office photos

LinkedIn

Compare button icon Compare button icon Compare

Filter interviews by

LinkedIn Interview Questions and Answers for Freshers

Updated 7 May 2025
Popular Designations

18 Interview questions

A Software Engineer Intern was asked
Q. Given a stack, sort it using an additional stack.
Ans. 

Sort a stack using another stack

  • Create an empty temporary stack

  • Pop elements from the original stack and push them onto the temporary stack in sorted order

  • Pop elements from the temporary stack back to the original stack

View all Software Engineer Intern interview questions
A Software Engineer Intern was asked
Q. Given a binary tree, return the vertical order traversal of its nodes' values. (i.e, from top to bottom, column by column).
Ans. 

Vertical Level Order Traversal organizes tree nodes by vertical columns.

  • Use a hashmap to store nodes by their vertical distance from the root.

  • Perform a level order traversal using a queue to maintain the order.

  • For each node, calculate its vertical level and add it to the corresponding list in the hashmap.

  • Sort the hashmap keys to get the correct vertical order.

  • Example: For a tree with root 1, left child 2, right ch...

View all Software Engineer Intern interview questions
An Artificial Intelligence Intern was asked
Q. Given an integer array nums, find the contiguous subarray (containing at least one number) which has the largest sum and return its sum.
Ans. 

The maximum sum subarray problem finds the contiguous subarray with the highest sum in a given array.

  • Use Kadane's Algorithm for an efficient O(n) solution.

  • Initialize two variables: max_so_far and max_ending_here.

  • Iterate through the array, updating max_ending_here by adding the current element.

  • If max_ending_here exceeds max_so_far, update max_so_far.

  • Reset max_ending_here to 0 if it becomes negative.

  • Example: For arr...

View all Artificial Intelligence Intern interview questions
A Software Engineer was asked
Q. You are given a large array of n bits. Each bit is initially 0. You perform several operations of the type
Ans. 

Solution to performing operations on a large array of bits.

  • Use bitwise operators to perform operations on individual bits

  • Use a loop to iterate through the array and perform the operations

  • Ensure that the array is large enough to accommodate all the bits

  • Consider using a data structure like a bitset for efficient bit manipulation

View all Software Engineer interview questions
An Oil and Gas Engineer was asked
Q. Tell me about mud logging work? What is viscosity and density and porosity and permiablity? And related questions in drilling and geology
Ans. 

Mud logging involves monitoring drilling parameters to analyze rock formations. Viscosity, density, porosity, and permeability are key properties in drilling and geology.

  • Mud logging involves analyzing drilling cuttings and fluids to determine rock properties and detect hydrocarbons.

  • Viscosity refers to a fluid's resistance to flow, important for maintaining drilling mud circulation.

  • Density is the mass per unit volu...

View all Oil and Gas Engineer interview questions
A Software Developer was asked
Q. 

Shuffle Two Strings

You are provided with three strings: A, B, and C. Your task is to determine if C is formed by interleaving A and B. A string C is considered an interleaving of A and B if:

  • The length...
Ans. 

Determine if a string C is formed by interleaving two strings A and B.

  • Check if the length of C is equal to the sum of lengths of A and B.

  • Ensure all characters of A and B are present in C.

  • Verify that the order of characters in C matches the order in A and B.

View all Software Developer interview questions
A Software Developer was asked
Q. 

Palindrome Permutation - Problem Statement

Determine if a permutation of a given string S can form a palindrome.

Example:

Input:
string S = "aab"
Output:
"True"
Explanation:

The permutation "aba" of...

Ans. 

Check if a permutation of a string can form a palindrome.

  • Create a frequency map of characters in the string.

  • Count the number of characters with odd frequencies.

  • If there is at most one character with an odd frequency, return true.

  • Otherwise, return false.

View all Software Developer interview questions
Are these interview questions helpful?
A Software Developer was asked
Q. 

Binary Tree to Doubly Linked List

Transform a given Binary Tree into a Doubly Linked List.

Ensure that the nodes in the Doubly Linked List follow the Inorder Traversal of the Binary Tree.

Input:

The fir...
Ans. 

Convert a Binary Tree into a Doubly Linked List following Inorder Traversal.

  • Perform Inorder Traversal of the Binary Tree to get the nodes in order.

  • Create a Doubly Linked List by linking the nodes in the order obtained from Inorder Traversal.

  • Return the head of the Doubly Linked List as the output.

View all Software Developer interview questions
A Software Developer was asked
Q. 

Stack with getMin Operation

Create a stack data structure that supports not only the usual push and pop operations but also getMin(), which retrieves the minimum element, all in O(1) time complexity withou...

Ans. 

Implement a stack with push, pop, top, isEmpty, and getMin operations in O(1) time complexity without using extra space for storing additional stack data structures.

  • Use two stacks - one to store the actual elements and another to store the minimum element at each level of the main stack.

  • When pushing an element, compare it with the current minimum and update the minimum stack accordingly.

  • For getMin operation, simpl...

View all Software Developer interview questions
A Software Developer was asked
Q. 

Serialize and Deserialize Binary Tree Problem Statement

Given a binary tree of integers, your task is to implement serialization and deserialization methods. You can choose any algorithm for serialization ...

Ans. 

Implement serialization and deserialization methods for a binary tree of integers.

  • Use any algorithm for serialization and deserialization.

  • Ensure the serialized string can be correctly decoded back to form the original binary tree.

  • Nodes are separated by spaces, and -1 is used to depict a null node.

  • Output the level order traversal of the deserialized binary tree with nodes separated by single spaces.

View all Software Developer interview questions

LinkedIn Interview Experiences for Freshers

14 interviews found

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Fair and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Coding Test 

More focus on dp,graphs.

Round 2 - Technical 

(2 Questions)

  • Q1. Focus on backend concepts,routing.
  • Q2. Question on flood fill algo,backtracking.

Freelancer Interview Questions & Answers

user image Shubhanshi Gupta

posted on 28 Jun 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. How did you take your clients?
  • Ans. 

    I acquired clients through networking, referrals, and online platforms.

    • Networking at industry events and conferences

    • Asking for referrals from satisfied clients

    • Creating a strong online presence on platforms like Upwork and LinkedIn

  • Answered by AI
  • Q2. DM or direct outreach on LinkedIn
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

They are asking work related questions like a mud logging section questions and geology background and oil &gas field and aptitude test questions.

Round 2 - Technical 

(3 Questions)

  • Q1. Tell me about mud logging work? What is viscosity and density and porosity and permiablity? And related questions in drilling and geology
  • Ans. 

    Mud logging involves monitoring drilling parameters to analyze rock formations. Viscosity, density, porosity, and permeability are key properties in drilling and geology.

    • Mud logging involves analyzing drilling cuttings and fluids to determine rock properties and detect hydrocarbons.

    • Viscosity refers to a fluid's resistance to flow, important for maintaining drilling mud circulation.

    • Density is the mass per unit volume of...

  • Answered by AI
  • Q2. Mud logging is a crucial aspect of drilling operations in the oil and gas industry. Mud loggers analyze rock cuttings brought to the surface by drilling mud to evaluate the geology of the formation being d...
  • Q3. Viscosity refers to a fluid's resistance to flow. Density is the mass per unit volume of a substance. Porosity is the measure of empty spaces, or voids, in a material, while permeability is the ability of ...
Round 3 - HR 

(1 Question)

  • Q1. Tell me about your self? Why do you join this company? How much salary you expected? Related about mud logging section?

Interview Preparation Tips

Interview preparation tips for other job seekers - Learning communication skills and learning about work related and competitive skills like aptitude and reasoning and general knowledge.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Coding Test 

Simple 2hr long coding test with 2 Coding problems and some CS Fundamental MCQ type questions

Round 3 - Technical 

(3 Questions)

  • Q1. Simple just asked two questions
  • Q2. Vertical Level Order traversal
  • Ans. 

    Vertical Level Order Traversal organizes tree nodes by vertical columns.

    • Use a hashmap to store nodes by their vertical distance from the root.

    • Perform a level order traversal using a queue to maintain the order.

    • For each node, calculate its vertical level and add it to the corresponding list in the hashmap.

    • Sort the hashmap keys to get the correct vertical order.

    • Example: For a tree with root 1, left child 2, right child 3...

  • Answered by AI
  • Q3. Sort a stack using a stack
  • Ans. 

    Sort a stack using another stack

    • Create an empty temporary stack

    • Pop elements from the original stack and push them onto the temporary stack in sorted order

    • Pop elements from the temporary stack back to the original stack

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Nothing just about ny interests in STEM and My projects
  • Q2. Also asked me about some difficult situations i have during my hackathons

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed before Dec 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

It consisted of good questions

Round 2 - Aptitude Test 

Coding questions- sorting,binary tree, arrays, strings

Round 3 - Coding Test 

Coding questions- sorting, binary tree, arrays, strings

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in Jul 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Aptitude Test 

General mathematics

Round 3 - HR 

(2 Questions)

  • Q1. Salary negotiation how much
  • Q2. What is salary expectations
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Maximum sum subarray
  • Ans. 

    The maximum sum subarray problem finds the contiguous subarray with the highest sum in a given array.

    • Use Kadane's Algorithm for an efficient O(n) solution.

    • Initialize two variables: max_so_far and max_ending_here.

    • Iterate through the array, updating max_ending_here by adding the current element.

    • If max_ending_here exceeds max_so_far, update max_so_far.

    • Reset max_ending_here to 0 if it becomes negative.

    • Example: For array [-...

  • Answered by AI
  • Q2. Machine Learning Concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Data Structures and Data Mining thoroughly

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

I appeared for an interview 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

I appeared for an interview 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 trending discussions

View All
Indian Startups
2w
a senior executive
One of the best sources for Startup investment: DAHEJ(DOWRY)
You won't believe my senior has a good corporate job with over 10 years of experience. But suddenly resigned just a few days after his wedding. We all thought maybe he got married and wants to spend his time with his wife, and decided to go to his place to give him a proper farewell. All of us got shocked after knowing that he left because his father-in-law gifted him a fat cash amount and a car in the name of "blessings." He’s using the money to fund his startup and the car for "business movement." I mean seriously? People are now using dowry as startup capital and walking around acting like CEOs, playing boss with someone else’s money. Bas, shaadi karo aur apne sapne chalu karo, courtesy sasural. I don't know feeling inspired? Or disgusted?
Got a question about LinkedIn ?
Ask anonymously on communities.

LinkedIn Interview FAQs

How many rounds are there in LinkedIn interview for freshers?
LinkedIn interview process for freshers usually has 2-3 rounds. The most common rounds in the LinkedIn interview process for freshers are Aptitude Test, Technical and Resume Shortlist.
What are the top questions asked in LinkedIn interview for freshers?

Some of the top questions asked at the LinkedIn interview for freshers -

  1. You are given a large array of n bits. Each bit is initially 0. You perform sev...read more
  2. Tell me about mud logging work? What is viscosity and density and porosity and ...read more
  3. Sort a stack using a st...read more
What are the most common questions asked in LinkedIn HR round for freshers?

The most common HR questions asked in LinkedIn interview are for freshers -

  1. Where do you see yourself in 5 yea...read more
  2. Why are you looking for a chan...read more
  3. Share details of your previous j...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.

Tell us how to improve this page.

Overall Interview Experience Rating

4.3/5

based on 6 interview experiences

Difficulty level

Easy 50%
Moderate 50%

Duration

Less than 2 weeks 75%
4-6 weeks 25%
View more

Interview Questions from Similar Companies

Amazon Interview Questions
4.0
 • 5.4k Interviews
Flipkart Interview Questions
3.9
 • 1.5k Interviews
Swiggy Interview Questions
3.8
 • 473 Interviews
BigBasket Interview Questions
3.9
 • 399 Interviews
Meesho Interview Questions
3.7
 • 368 Interviews
JustDial Interview Questions
3.5
 • 358 Interviews
Udaan Interview Questions
3.9
 • 347 Interviews
Eternal Limited Interview Questions
3.7
 • 327 Interviews
Oyo Rooms Interview Questions
3.2
 • 230 Interviews
Myntra Interview Questions
3.9
 • 228 Interviews
View all

LinkedIn Reviews and Ratings

based on 200 reviews

4.2/5

Rating in categories

4.0

Skill development

4.2

Work-life balance

4.1

Salary

3.2

Job security

4.2

Company culture

3.4

Promotions

4.0

Work satisfaction

Explore 200 Reviews and Ratings
Software Engineer
102 salaries
unlock blur

₹29.8 L/yr - ₹50 L/yr

Senior Software Engineer
96 salaries
unlock blur

₹41.2 L/yr - ₹67.3 L/yr

Trust and Safety Specialist
75 salaries
unlock blur

₹5.5 L/yr - ₹10.1 L/yr

Software Developer
64 salaries
unlock blur

₹21.4 L/yr - ₹33.5 L/yr

Account Director
30 salaries
unlock blur

₹15 L/yr - ₹39 L/yr

Explore more salaries
Compare LinkedIn with

Amazon

4.0
Compare

Flipkart

3.9
Compare

Udaan

3.9
Compare

BigBasket

3.9
Compare
write
Share an Interview