Filter interviews by
1 hour , dsa, hackerearth, medim to hard
Coding test based on OOP and data structure
Coding test based on data structure and algorithm
Keep learning about salesforce 5 rules and coding
I applied via Campus Placement and was interviewed in May 2024. There were 2 interview rounds.
Logical reasoning aptitude english maths
Data structure algorithms
Salesforce interview questions for designations
I applied via Campus Placement and was interviewed in Sep 2023. There was 1 interview round.
Probability related question
Get interview-ready with Top Salesforce Interview Questions
I appeared for an interview in Aug 2021.
Round duration - 75 Minutes
Round difficulty - Medium
This was an online coding round where we had 2 questions to solve under 75 minutes. The questions were of Medium to Hard level of difficulty and I found the problem statements to be a bit tricky.
Given an integer N
representing the number of pairs of parentheses, find all the possible combinations of balanced parentheses using the given number of pairs.
Generate all possible combinations of balanced parentheses for a given number of pairs.
Use recursion to generate all possible combinations of balanced parentheses.
Keep track of the number of open and close parentheses used in each combination.
Terminate recursion when the number of open and close parentheses used equals the given number of pairs.
Given three non-negative integers X
, Y
, and Z
, determine the longest happy string. A happy string is defined as a string that contains only the letters 'a', 'b', and...
The problem involves constructing the longest happy string with given constraints on the frequency of 'a', 'b', and 'c'.
Iterate through the characters 'a', 'b', 'c' in decreasing order of their frequencies
Append the character with the highest frequency that does not create a substring of 3 same characters
Repeat until all characters are used up or the string reaches the desired length
Round duration - 60 Minutes
Round difficulty - Medium
This round had 2 preety decent questions of DSA . The interviewer was also quite freindly and helpful. I was able to solve both the questions under the given time frame and also discussed their respective time and space complexites.
Given a graph with 'N' nodes and 'M' unidirectional edges, along with two integers 'S' and 'D' representing the source and destination respectively, your task is to find all possible p...
Find all possible paths from a source node to a destination node in a graph with unique nodes.
Create a graph using the given nodes and edges
Implement a depth-first search (DFS) algorithm to find all paths from source to destination
Ensure that the nodes in the paths are unique and print them in lexicographically sorted order
Determine if a given singly linked list of integers forms a cycle or not.
A cycle in a linked list occurs when a node's next
points back to a previous node in the ...
Detect if a singly linked list forms a cycle by checking if a node's next pointer points back to a previous node.
Use Floyd's Tortoise and Hare algorithm to detect a cycle in O(N) time complexity and O(1) space complexity.
Start with two pointers, slow and fast, moving at different speeds. If they meet at some point, there is a cycle.
If the fast pointer reaches the end of the list (null), there is no cycle.
Example: For i...
Round duration - 60 Minutes
Round difficulty - Medium
This round had 1 question related to BST followed by some standard questions from OOPS and Operating Systems.
You are given the ‘root’ of a Balanced Binary Search Tree and an integer ‘target’. Your task is to determine if there exists any pair of nodes such ...
Given a Balanced BST and a target integer, determine if there exists a pair of nodes with sum equal to the target.
Traverse the BST in-order to get a sorted array of values.
Use two pointers approach to find the pair with sum equal to target.
Consider edge cases like negative numbers and duplicates.
Time complexity should be O(n) and space complexity O(n).
Early binding is resolved at compile time while late binding is resolved at runtime in C++.
Early binding is also known as static binding, where the function call is resolved at compile time based on the type of the object.
Late binding is also known as dynamic binding, where the function call is resolved at runtime based on the actual type of the object.
Early binding is faster as the function call is directly linked dur...
Multitasking refers to the ability of an operating system to run multiple tasks concurrently, while multithreading involves executing multiple threads within a single process.
Multitasking allows multiple processes to run simultaneously on a single processor, switching between them quickly.
Multithreading enables a single process to execute multiple threads concurrently, improving performance and responsiveness.
Multitask...
Round duration - 30 Minutes
Round difficulty - Easy
This was my last round and I hoped it to go good just like the other rounds. The interviewer was very straight to point
and professional. The interview lasted for 30 minutes.
Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.
Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.
I appeared for an interview in Feb 2021.
Round duration - 75 Minutes
Round difficulty - Hard
Online Round - 2 questions.
75 minutes
You are provided with a positive integer N. The goal is to generate the lexicographically largest sequence of length 2*N - 1, containing integers ran...
Generate lexicographically largest valid sequence of length 2*N - 1 with specific constraints.
Start with the largest numbers and place them at the ends to maximize lexicographical order.
Place the number 1 in the middle to satisfy the condition of appearing exactly once.
Determine the positions of other numbers based on their distance requirements.
Iterate through the sequence and fill in the numbers based on the constrai...
You have a string of balls on the table called BOARD
and several balls in your hand represented by the string hand
. The balls can be of the colors red(R), blue(B), green(G), wh...
Determine the minimum number of insertions required to empty the board in Zuma game problem.
Check if it's possible to empty the board by trying all possible combinations of inserting balls from hand.
Use backtracking algorithm to simulate the game and find the minimum number of insertions required.
Handle edge cases like when the board cannot be emptied or when the hand is empty.
Consider optimizing the algorithm by pruni...
Round duration - 40 Minutes
Round difficulty - Hard
1 Coding problem and 1 OOP problem
Ninja is hungry and wants to eat his favorite chocolates, but his mother won't let him because he has already eaten enough. There are 'N' jars filled with chocolates...
Find the minimum eating speed required for a ninja to consume all chocolates within a given time limit.
Iterate through possible eating speeds to find the minimum speed that allows the ninja to consume all chocolates within the given time limit.
Calculate the total number of chocolates to be consumed and divide it by the time limit to get the minimum eating speed.
Handle cases where a jar has fewer chocolates than the eat...
Virtual functions can be overridden in derived classes, while abstract classes cannot be instantiated directly.
Virtual functions are declared using the 'virtual' keyword and can be overridden in derived classes.
Abstract classes cannot be instantiated and may contain one or more pure virtual functions.
An abstract class can have virtual functions, but a virtual function does not make a class abstract.
Example: Shape is an...
Round duration - 40 minutes
Round difficulty - Hard
Resume based problems, OOPs, DBMS, OS problems
Design a platform similar to LinkedIn with key features and architecture
Key Features: user profiles, connections, job postings, messaging, news feed, groups
Architecture: microservices, cloud storage, scalable database, AI for recommendations
Security: encryption, secure authentication, data privacy controls
User Experience: intuitive UI/UX, mobile app support, notifications
Monetization: premium subscriptions, advertising
Round duration - 15 Minutes
Round difficulty - Hard
Typical HR interview round. Short and crisp
Tip 1 : Never leave any topic from any chapter / Subject
Tip 2 : Learn to explain your thoughts well
Tip 3 : Learn from previous experiences / interviews / problems asked.
Tip 4 : Atleast 4 projects in Resume
Tip 1 : Atleast 4 projects on Resume
Tip 2 : Do not write false things. You always get caught. Be genuine.
Top trending discussions
posted on 16 Sep 2021
I appeared for an interview before Sep 2020.
Round duration - 90 minutes
Round difficulty - Easy
Pretty easy questions.
You are provided with an array of integers ARR
of size N
and an integer K
. Your task is to find and return the K
-th smallest value present in the array. All elements...
Find the K-th smallest element in an array of distinct integers.
Sort the array and return the element at index K-1.
Use a min-heap to find the K-th smallest element efficiently.
Implement quickselect algorithm for optimal performance.
Round duration - 20 Minutes
Round difficulty - Easy
1 coding question
Given a string S
consisting only of digits from 0 to 9, your task is to find all potential IP addresses that can be formed from S
and list them in lexicographical order. I...
Given a string of digits, find all potential valid IP addresses that can be formed from it.
Split the string into four parts and check if each part is a valid IP segment (0-255).
Use backtracking to generate all possible combinations of valid IP addresses.
Ensure that the IP address does not contain leading zeroes.
Return the valid IP addresses in lexicographical order.
Round duration - 45 Minutes
Round difficulty - Easy
Total Discussion on OS concepts
Memory management in operating systems involves allocation, deallocation, and optimization of memory usage.
Memory allocation: OS allocates memory to processes based on their requirements.
Memory deallocation: OS frees up memory when it is no longer needed by a process.
Memory optimization: OS optimizes memory usage through techniques like paging, segmentation, and virtual memory.
Examples: Paging in which memory is divide...
Round duration - 45 Minutes
Round difficulty - Easy
Easy in office environment
Your task is to identify the position of the only '1' bit in the binary representation of a given non-negative integer N
. The representation contains exactly one '1' and the rest are...
Find the position of the lone '1' bit in the binary representation of a given non-negative integer.
Iterate through the bits of the integer to find the position of the lone '1'.
Use bitwise operations to check if there is exactly one '1' bit in the binary representation.
Return the position of the lone '1' or -1 if there isn't exactly one '1'.
Tip 1 : Do a good project.
Tip 2 : Master the topics you are preparing.
Tip 1 : Avoid writing things you do not know
Tip 2 : Follow a proper format for Resume.
I applied via Naukri.com and was interviewed in Jun 2020. There were 5 interview rounds.
based on 7 interviews
1 Interview rounds
based on 14 reviews
Rating in categories
Technical Support Engineer
974
salaries
| ₹8.5 L/yr - ₹25 L/yr |
Technical Consultant
344
salaries
| ₹13.8 L/yr - ₹32 L/yr |
Member Technical Staff
283
salaries
| ₹18.8 L/yr - ₹60 L/yr |
Senior Member of Technical Staff
256
salaries
| ₹30 L/yr - ₹95 L/yr |
Senior Technical Consultant
251
salaries
| ₹18 L/yr - ₹45 L/yr |
SAP
Zoho
Oracle
Adobe