i
Filter interviews by
Palindrome and even and odd numbers questions
Top trending discussions
I appeared for an interview before Mar 2021.
Round duration - 30 minutes
Round difficulty - Medium
This was a MCQ round. 30 ques in 30 mins consisting of difficult quantitative aptitude questions were to be solved.
Round duration - 60 minutes
Round difficulty - Medium
In this test round, 2 coding questions were given. Either write the code or pseudo code
Given an integer N
, find all possible placements of N
queens on an N x N
chessboard such that no two queens threaten each other.
A queen can attack another queen if they ar...
The N Queens Problem involves finding all possible placements of N queens on an N x N chessboard without threatening each other.
Use backtracking algorithm to explore all possible configurations.
Keep track of rows, columns, and diagonals to ensure queens do not threaten each other.
Generate all valid configurations and print them out.
Given an integer array arr
of size 'N' containing only 0s, 1s, and 2s, write an algorithm to sort the array.
The first line contains an integer 'T' representing the n...
Sort an array of 0s, 1s, and 2s in linear time complexity.
Use three pointers to keep track of 0s, 1s, and 2s while traversing the array.
Swap elements based on the values encountered to sort the array in-place.
Time complexity should be O(N) and space complexity should be O(1).
Round duration - 60 minutes
Round difficulty - Easy
This was a technical round with questions on DSA.
You are given a string of length N
. Your task is to reverse the string word by word. The input may contain multiple spaces between words and may have leading o...
Reverse words in a string while handling leading, trailing, and multiple spaces.
Split the input string by spaces to get individual words
Reverse the order of the words
Join the reversed words with a single space in between
You are provided with the head of a linked list containing integers. Your task is to determine if the linked list is circular.
Detect if a given linked list is circular by checking if it forms a closed loop.
Traverse the linked list using two pointers, one moving at double the speed of the other.
If the two pointers meet at any point, the linked list is circular.
If the faster pointer reaches the end of the list (NULL), the linked list is not circular.
Round duration - 30 minutes
Round difficulty - Easy
HR round with typical behavioral problems.
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.
posted on 15 Sep 2021
I appeared for an interview in Nov 2020.
Round duration - 90 minutes
Round difficulty - Easy
The 1st round was online coding + MCQ round. It had 3 sections in total to be solved in 95 mins.
Next comes the technical interview.
The technical interview lasted for about 45 minutes. It started with a basic introduction. Then, she framed some questions from my resume and projects which I have mentioned. Questions were mainly from Data structure, OS, DBMS, SQL. She told me to rate my data structure skill on a scale of 1 to 5.
Design a data structure to process a stream of numbers and efficiently find the kth largest number at any given point in time.
You will receive a contin...
Design a data structure to efficiently find the kth largest number in a stream of numbers.
Implement a data structure that can store incoming numbers and efficiently retrieve the kth largest number.
Support addition of numbers and retrieval of the kth largest number.
Use a priority queue or heap data structure to maintain the k largest numbers in the stream.
Handle queries of adding numbers and retrieving the kth largest n...
Round duration - 30 minutes
Round difficulty - Easy
The technical interview lasted for about 45 minutes. It started with a basic introduction. Then, she framed some questions from my resume and projects which I have mentioned. Questions were mainly from Data structure, OS, DBMS, SQL. She told me to rate my data structure skill on a scale of 1 to 5.
Given a Binary Search Tree (BST) consisting of 'N' nodes, where each node contains some integer data, your task is to determine whether there is a node in the BST whose d...
Given a Binary Search Tree, determine if a node with a given integer exists.
Traverse the BST in a way that compares the current node's data with the given integer 'X'.
If the current node's data is equal to 'X', return True.
If the current node's data is less than 'X', move to the right subtree; if greater, move to the left subtree.
Repeat this process until a match is found or the end of the tree is reached.
You are given an array of integers. The task is to remove all duplicate elements and return the array while maintaining the order in which the elements were provided.
Remove duplicates from an array while maintaining order.
Use a set to keep track of unique elements.
Iterate through the array and add elements to the set if not already present.
Convert the set back to an array to maintain order.
Tip 1 : Read interview experience before interview
Tip 2 : Think loud about each coding question.
Tip 1 : Have some projects on resume.
Tip 2 : No spelling mistake
Tip 3 : Resume should be in proper format
posted on 25 May 2022
I appeared for an interview in Jun 2021.
Round duration - 90 minutes
Round difficulty - Easy
The round was basically based on the DSA easy level questions. Platform was good enough to code easily
You are given a long type array/list ARR
of size N
, representing an elevation map. The value ARR[i]
denotes the elevation of the ith
bar. Your task is to determine th...
The question asks to find the total amount of rainwater that can be trapped in the given elevation map.
Iterate through the array and find the maximum height on the left and right side of each bar.
Calculate the amount of water that can be trapped on each bar by subtracting its height from the minimum of the maximum heights on both sides.
Sum up the amount of water trapped on each bar to get the total amount of rainwater
Your task is to reverse the given string word-wise. This means the last word in the string should appear first, the second last word should appear second, and so...
The given string needs to be reversed word wise, keeping the individual words intact.
Split the string into an array of words using a space as the delimiter.
Reverse the array of words.
Join the reversed array of words using a space as the separator to form the final reversed string.
Round duration - 20 minutes
Round difficulty - Easy
It is base on OOPS and Data structures.
Given an array/list ARR
consisting of integers where each element is either 0, 1, or 2, your task is to sort this array in increasing order.
The input sta...
The task is to sort an array of 0s, 1s, and 2s in increasing order.
Use a three-pointer approach to partition the array into three sections: 0s, 1s, and 2s.
Initialize three pointers: low, mid, and high. low points to the start of the array, mid points to the current element being processed, and high points to the end of the array.
While mid <= high, perform the following checks: if arr[mid] == 0, swap arr[low] and arr[mi
Given an array or list of integers 'ARR', identify the second largest element in 'ARR'.
If a second largest element does not exist, return -1.
ARR = [2,...
The task is to find the second largest element in an array of integers.
Iterate through the array and keep track of the largest and second largest elements.
Initialize the largest and second largest variables with the first two elements of the array.
Compare each element with the largest and second largest variables and update them accordingly.
Return the second largest element at the end.
Round duration - 20 minutes
Round difficulty - Medium
One Coding question and projects was discussed
You are given an array of 'N' distinct integers, 'ARR'. Determine if it is possible to sort this array by selecting a continuous subarray and reversing it. Return 'true'...
The question asks whether it is possible to sort an array by choosing a continuous subarray and reversing it.
Check if the array is already sorted. If yes, return true.
Find the first and last elements of the subarray that needs to be reversed.
Check if the subarray is in non-decreasing order. If yes, return true.
Check if the elements after the subarray are in non-increasing order. If yes, return true.
Otherwise, return fa
You are provided with an array of integers 'ARR' consisting of 'N' elements. Each integer is within the range [1, N-1], and the array contains exactly one duplica...
The task is to find the duplicate element in an array of integers.
Iterate through the array and keep track of the frequency of each element using a hash map.
Return the element with a frequency greater than 1.
Alternatively, sort the array and check for adjacent elements with the same value.
Tip 1 - Practice Atleast 250 Questions
Tip 2 - Ex- Do atleast 2 projects
Tip 1 : Have some projects on resume.
Tip 2 : Do not put false things on resume.
posted on 10 Sep 2024
Subarray sum equals to zero
I am a passionate software developer with experience in Java, Python, and web development.
Experienced in Java, Python, and web development technologies
Strong problem-solving skills
Team player with excellent communication skills
posted on 15 Apr 2024
1 to 2 coding rounds, depending on your score that covers basic DSA questions
posted on 1 Jun 2024
It was good to atted the interview.
It was easy it will ask you questions in java basically.
In the group discussion they will ask some Hr type questions.
In this round they will give you the assignment to complete it.
posted on 11 Nov 2024
I applied via Referral and was interviewed in Oct 2024. There were 2 interview rounds.
It consisted of 30 mcq questoions
The second round was lasted for 20 mins with a hard leetcode questionj.
posted on 25 Nov 2024
Three questions of coding and compiler was not so good and time was 1 hour
I applied via Campus Placement
Basic Questions, Puzzle, Logical
Mainly on some common dsa and loop questions
The volume of a cabin refers to the amount of space inside the cabin.
Volume can be calculated by multiplying the length, width, and height of the cabin.
For example, if a cabin is 10 feet long, 8 feet wide, and 6 feet high, the volume would be 480 cubic feet.
Volume is often measured in cubic units such as cubic feet or cubic meters.
based on 3 interviews
Interview experience
based on 4 reviews
Rating in categories
Cloud Associate
163
salaries
| ₹2.4 L/yr - ₹8 L/yr |
Cloud Engineer
156
salaries
| ₹5 L/yr - ₹13.5 L/yr |
Cloud Specialist
54
salaries
| ₹7.2 L/yr - ₹19 L/yr |
Software Engineer
38
salaries
| ₹4 L/yr - ₹11.7 L/yr |
Software Developer
31
salaries
| ₹3 L/yr - ₹11.3 L/yr |
Tekwissen
Softenger
XcelServ Solutions
Damco Solutions