Filter interviews by
Coding test contains two graph problems
I applied via Campus Placement and was interviewed before Jan 2024. There were 3 interview rounds.
DSA Coding interview on arrays and strings
I applied via Walk-in and was interviewed before Oct 2022. There were 4 interview rounds.
Easy round a hackerrank test with easy to medium problems
I applied via Approached by Company and was interviewed before Apr 2023. There was 1 interview round.
Live coding with interviewer
Freshworks interview questions for designations
I was interviewed before Mar 2021.
Round duration - 60 Minutes
Round difficulty - Medium
three coding questions , no mcq, 1 hr limit
Given a singly linked list of integers, return the head of the reversed linked list.
Initial linked list: 1 -> 2 -> 3 -> 4 -> NULL
Reversed link...
The brute force approach is to use recursion. First, we reach the end of the Linked List recursively and at last node, we return the last node, which becomes the new head of the partially reversed Linked List. While coming back from each recursion call we add the current node in the current recursion call to the last node of the partially reversed Linked List and assign the current node to null.
Steps:
&...
Given an array or list ARR
consisting of N
integers, your task is to identify all distinct triplets within the array that sum up to a specified number K
.
A t...
sort the list in ascending order then find the complement after that do a two pointer approach with a front and rear pointer to find the target value and add the numbers result vector and ensure there are no duplicates by: check if the the number is already in our list, if so move the pointers
You are provided with two singly linked lists containing integers, where both lists converge at some node belonging to a third linked list.
Your task is to determine t...
O(1)
Since we only use constant space.
Time Complexity: O(m*n) - For 2d arraysExplanation:O(N * M), where N and M are the lengths of the first and second linked lists respectively.&n...
Round duration - 45 Minutes
Round difficulty - Medium
1st they asked area of interest like frontend or backend. I said backend
Then thy asked a array based question followed by a linked list.
Then he asked some computer fundametals.
Given an array ARR
of size 'N', where each integer is in the range from 0 to N - 1, identify all elements that appear more than once.
Return the duplicate elements in any orde...
If the number is visited it is turned negative
If the visited number is negative that means it has been already visited(duplicate) and hence added to the list.
Since the array values are from 1 to n therefore the 1 is subtracted from the array values at the time of indexing.
You are provided with a singly linked list consisting of integer values and an integer 'K'. Your task is to eliminate all nodes from the linked list that ...
basic idea is to have two pointers, one for previous node and one for current, if current node.val == val
we want to set our previous.next to current.next.
Round duration - 60 Minutes
Round difficulty - Medium
mainly focused on dsa , dbms and working of an API
Given a Singly Linked List of integers that are sorted based on their absolute values, the task is to sort the linked list based on the actual values.
The absolute...
Use 2 pointers: fast and slow to divide the list into 2 sublist: list1 and list2 and make sure list1 is equal to or is longer than list2.
The key is the condition of while loop while(fast.next!=null && fast.next.next!=null). After this while loop slow will be at the position of the end of list1.
sort list1 and list2
merge list1 and list2
Tip 1 : Having a prior internship with a dev role will definitely help in interviews.
Tip 2 : If you are not good in frontend then prepare DSA and computer fundamentals very well
Tip 3 : Apart from Leetcode medium questions Have hands on DMBS queries
Tip 4 : Having an API based project will be very helpful for backend roles
Tip 1 : They will mostly ask in first round if you interested in frontend or backend roles and then the follow up interviews will happen in that direction.
Tip 2 : so make your resume specific to the role you are interested in.
Tip 3 : Write what you have worked on in your prior internship.
Tip 4 : if this is your first internship write your strong points and only things which you are confident in because after selection interviewer will driil you on those topics.
Get interview-ready with Top Freshworks Interview Questions
I applied via LinkedIn and was interviewed in Jan 2021. There was 1 interview round.
The first round was a group discussion about online shopping.
posted on 8 Oct 2024
I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.
OOPS is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.
OOPS focuses on the concept of classes and objects
Encapsulation: bundling data and methods that operate on the data within a single unit
Inheritance: allows a class to inherit properties and behavior from another class
Polymorphism: ability to present the same interface for diffe...
Comparable is an interface used for natural ordering, Comparator is an interface used for custom ordering. Abstract class can have method implementations, Interface cannot.
Comparable interface is used to define the natural ordering of objects. Example: String class implements Comparable interface for natural ordering based on alphabetical order.
Comparator interface is used to define custom ordering of objects. Example:...
Count occurrences of each character in a given string
Create an array to store the count of each character
Iterate through the string and increment the count of each character in the array
Return the array with counts for each character
Remove duplicates from an array of strings
Iterate through the array and store each element in a set to keep track of unique values
Create a new array with the unique values from the set
posted on 9 Oct 2024
I applied via Job Portal and was interviewed in Oct 2024. There were 3 interview rounds.
based on 4 interviews
1 Interview rounds
based on 23 reviews
Rating in categories
Senior Software Engineer
294
salaries
| ₹10.6 L/yr - ₹36 L/yr |
fresher
263
salaries
| ₹1 L/yr - ₹5.5 L/yr |
Software Engineer
183
salaries
| ₹6.8 L/yr - ₹16 L/yr |
Lead Software Engineer
176
salaries
| ₹18.5 L/yr - ₹51 L/yr |
Product Specialist
113
salaries
| ₹5 L/yr - ₹10.4 L/yr |
Zoho
Salesforce
LTIMindtree
TCS