i
Customer Analytics
Filter interviews by
I applied via Campus Placement and was interviewed before Apr 2021. There were 3 interview rounds.
Top trending discussions
I applied via Company Website and was interviewed in Sep 2024. There were 3 interview rounds.
Focusing on moderate level patterns
Object oriented principles are fundamental concepts in software development that focus on organizing code into objects with properties and behaviors.
Encapsulation: Bundling data and methods that operate on the data into a single unit.
Inheritance: Allowing a new class to inherit properties and behaviors from an existing class.
Polymorphism: The ability for objects of different classes to respond to the same message in di...
I applied via campus placement at National Institute of Technology (NIT), Raipur and was interviewed before Apr 2023. There were 3 interview rounds.
Coding round consisting DSA portion mainly.
Normal question on Array & String
Not so much difficult. english comprehension matters for this test.
C++ is a high-level programming language used for developing system software, application software, and video games.
C++ is an extension of the C programming language
It supports object-oriented programming concepts like classes, inheritance, polymorphism, etc.
It is a compiled language and provides low-level memory manipulation features
C++ is widely used in developing operating systems, device drivers, game engines, and ...
I applied via campus placement at SRM Institute of Science and Technology, NCR Campus, Ghaziabad and was interviewed before Oct 2022. There were 5 interview rounds.
Technical interview where DSA questions were asked
I applied via Campus Placement and was interviewed in Dec 2021. There was 1 interview round.
I am a software engineer with expertise in developing and maintaining software applications.
Proficient in programming languages such as Java, C++, and Python
Experienced in developing web applications using frameworks like Spring and Django
Skilled in database management and SQL queries
Familiar with software development methodologies like Agile and Scrum
Strong problem-solving and analytical skills
Excellent communication
Output details of recent 10 graduates from a table storing student details.
Sort the table by graduation date in descending order.
Select the top 10 rows from the sorted table.
Output the selected rows.
Optimized approach to find third largest element from array using half traversal.
Sort the array in descending order and return the element at index 2.
Use a max heap to keep track of the top 3 elements while traversing the array.
Use two variables to keep track of the second and third largest elements while traversing the array.
Divide the array into two halves and find the maximum and second maximum in each half, then co
Answering how to print first character of words in a string using one stack and an array.
For using one stack, push each character onto the stack and pop when a space is encountered. Print the popped character.
For using an array, split the string into words and print the first character of each word.
In both cases, handle edge cases like empty string and string with only one word.
Hash table. No, it is not possible to create a data structure with all operations in O(1) time.
Hash table uses a hash function to map keys to indices in an array.
Insertion and deletion can be done in O(1) time on average.
Search retrieval can also be done in O(1) time on average.
However, worst-case scenarios can result in O(n) time complexity.
It is not possible to create a data structure with all operations in O(1) time
ACID properties ensure database transactions are reliable. Two transactions can occur simultaneously using locking and isolation.
ACID stands for Atomicity, Consistency, Isolation, and Durability.
Atomicity ensures that a transaction is treated as a single unit of work, either all or none of it is executed.
Consistency ensures that a transaction brings the database from one valid state to another.
Isolation ensures that co...
Indexes are used to improve query performance. Multiple clustered and non-clustered indexes can be created on a table.
Indexes are used to quickly locate data without scanning the entire table.
Clustered index determines the physical order of data in a table.
Non-clustered index is a separate structure that contains a copy of the indexed columns and a pointer to the actual data.
A table can have only one clustered index, b...
Given an array and a number, find if the number can be generated using sum of array members and output those numbers.
Iterate through the array and check if the number can be generated using the sum of array members
Use a hash table to store the difference between the number and each array element
If the difference is found in the hash table, output the corresponding array elements
If no such combination is found, output '
Time complexity of data structure operations
Arrays: O(1) for access, O(n) for search/insert/delete
Linked Lists: O(n) for access/search, O(1) for insert/delete
Stacks/Queues: O(1) for access/insert/delete
Hash Tables: O(1) for access/insert/delete (average case)
Trees: O(log n) for access/search/insert/delete (balanced)
Heaps: O(log n) for access/insert/delete
Graphs: Varies depending on algorithm used
Span and div tags are both HTML elements used for grouping content, but they have different purposes.
Span is an inline element used for grouping text or other inline elements.
Div is a block-level element used for grouping larger sections of content.
Span is often used for styling individual words or phrases within a larger block of text.
Div is often used for creating layout structures and separating content into distinc...
I applied via Naukri.com and was interviewed in Jan 2022. There were 3 interview rounds.
I was interviewed in Apr 2021.
Round duration - 60 minutes
Round difficulty - Easy
Timing: Morning
Environment: Online
Description: This round was conducted immediately after Aptitude Round if you cleared it. 4 Questions in 60 minutes.
The first and the only line of input contains the elements of the...
The first line contains an integer N representing the size of ...
The idea is to fix a character at a position and then find the permutations for rest of the characters.
Make a list ‘ans’ which will contain the permutations of the given string.
Let’s define a function generatePermutaionsHelper(Str, l, r). This function generates the permutations of the substring which starts from index ‘l’ and ends at index ‘r’.
Consider if ‘N...
In this approach, we will calculate the factorial of the given number and store it in the form of a Linked List of digits named digits. To do this, we will define a function multiply(digits,x) that will multiply the number corresponding to the digits with x and update the digits with the product’s value. Then we will initialize the linked list digits with 1 and multiply it with all numbers from 2 to N...
Round duration - 40 minutes
Round difficulty - Medium
Timing: Morning
Environment: Online
The idea here is to use recursion,we can print current N two times in the current recursion stack. One for decreasing order and one for increasing order.
Steps :
void series(answer, N, K):
The idea here is to use the fact that the array is sorted and the element of the array (‘arr[i]’) is unique if it doesn't have an adjacent element that has the same value as ‘arr[i]’.
Algorithm:
a) Duplicate elements ...
The idea is to sort the array in decreasing order and return the second largest element in the array.
write-a-query-to-find-the-nth-highest-salary-and-the-employee-name
Round duration - 25 minutes
Round difficulty - Easy
Timing: It was in the morning then rescheduled to evening
Environment: Online
Starting from the head of the linked list make recursive calls until you reach the end of a linked list. Store the address of the head of the linked list in a pointer. Now you reach the end of the linked list and while backtracking, try to match the corresponding character of the string with the data stored in the current pointer ‘TEMP’ in linked list char by char.
If found then simply return th...
Employee table
~~~~~~~~~~~~~~~~
empid, deptid, empname, empsalary
Department table
~~~~~~~~~~~~~~~~~
deptid, depname
Output:
depname, total salary (dep wise)
conditions
~~~~~~~~~~~~
such that only ...
Tip 1 : For DS and Algo, keep practicing every day on Leetcode, HackerEarth, and make a habit of participating in contests.
Tip 2 : Projects are vital in interviews, have at least 3 projects on Resume, in the field/profile which you're applying for.
Tip 3 : Give Mock Interviews.
Tip 1 : Resume should be short and keep it under 1 page.
Tip 2 : Include skills that you're 100% confident in.
Tip 3 : Highlight your internships and projects section appropriately
I was interviewed in Mar 2021.
Round duration - 90 minutes
Round difficulty - Medium
A time range is given you can attempt with in that time and once started you cant resume .
The idea here is to use the BFS algorithm. Using BFS, we will move through states level by the level that will ensure the removal of the minimal number of parentheses. At each level, we will remove only one parenthesis. So, if we found a valid string, we will restrict ourselves to that level only.
Please note that the overhead to pass parameters in a recursive call is also avoided because of BFS.
&nbs...
F(n) = F(n-1) + F(n-2),
Where, F(1) = F(2) = 1
O(N), where ‘N’ is the given number.
As recursion uses a stack of size ‘N’
Time Complexity: O(2^n)Explanation:O(2^N), where ‘N’ i...
In this approach, we find the row elements of the previous row using recursion, and based on the values of previous row elements, we will evaluate the current row elements.
Tip 1 : Basics of java should be clear
Tip 2 : Do maximum question on strings and array
Tip 1 : Atleast 1 good project
Tip 2 : Good ranks on websites like hackerrank , leetcode.
based on 11 reviews
Rating in categories
Senior Software Engineer
194
salaries
| ₹5.5 L/yr - ₹18 L/yr |
Software Engineer
54
salaries
| ₹3.2 L/yr - ₹11 L/yr |
Technical Lead
49
salaries
| ₹10.5 L/yr - ₹19 L/yr |
Project Lead
21
salaries
| ₹12 L/yr - ₹29 L/yr |
Lead Developer
19
salaries
| ₹11.2 L/yr - ₹17 L/yr |
Fractal Analytics
Mu Sigma
Tiger Analytics
LatentView Analytics