i
Kellton
Filter interviews by
I applied via Walk-in and was interviewed before Mar 2023. There were 2 interview rounds.
It was an assignment given to us. basic coding questions
I appeared for an interview in Mar 2021.
Round duration - 30 minutes
Round difficulty - Easy
We get 30 question for 30 minutes. All question had multiple choice. One question was to count the ways to reach the nth stairs mathematically. It was in the form of mcq.
Given a staircase with a certain number of steps, you start at the 0th step, and your goal is to reach the Nth step. At every step, you have the option to move either on...
The problem involves counting the number of distinct ways to climb a staircase with a certain number of steps by moving either one or two steps at a time.
Use dynamic programming to solve this problem efficiently.
Define a recursive function to calculate the number of ways to reach each step.
Consider base cases for 0 and 1 steps.
Use memoization to store and reuse intermediate results.
Return the final result modulo 10^9+7
Round duration - 5 minutes
Round difficulty - Medium
It was evening when my chance came. I went to HR cabin in proper discipline manner. I great him and then he ask to sit. Then I gave him my resume. He start asking basic details which are not mentioned in resume. Then He gave me one question from array (To print 3rd highest value from array without using sorting method). Then asked questions from database and Oops. After I gave answers he asked me do you like coding or want to do this for money. So I tell him I like coding so its my passion. Then He asked me to leave.
Given an array containing N
distinct positive integers and a number K
, determine the Kth largest element in the array.
N = 6, K = 3, array = [2, 1, 5, 6, 3, ...
Find the Kth largest element in an array of distinct positive integers.
Sort the array in non-increasing order and return the Kth element.
Use a priority queue or quick select algorithm for efficient solution.
Handle constraints like array size and element values.
Ensure all elements in the array are distinct.
Tip 1 : Practice programs by yourself.
Tip 2 : Projects are important source of learning.
Tip 1 : Build your resume yourself according to needs.
Tip 2 : Do not put wrong information.
I appeared for an interview in Mar 2021.
Round duration - 30 minutes
Round difficulty - Medium
We had all rounds in afternoon. Environment of the office was giving positive vides. Interviewer was polite and kind.
You are given a string STR
which contains alphabets, numbers, and special characters. Your task is to reverse the string.
STR = "abcde"
"e...
Reverse a given string containing alphabets, numbers, and special characters.
Iterate through the string from the end to the beginning and append each character to a new string.
Use built-in functions like reverse() or StringBuilder in languages like Python or Java for efficient reversal.
Handle special characters and numbers along with alphabets while reversing the string.
Ensure to consider the constraints provided in th...
Tip 1 : practice daily
Tip 2 : concentrate
Tip 1 : do not put false things on resume
Tip 2 : have some projects
Top trending discussions
posted on 16 Sep 2021
I appeared for an interview in Nov 2020.
Round duration - 100 minutes
Round difficulty - Medium
The complete test will be Audio and Video Proctored, Please be available in front of the camera throughout the test duration. Assessment login details will be sent to the candidate’s registered email id prior to assessment. The Aptitude 25 questions - 35 Minutes, English 25 questions - 30 Minutes, Technical 25 questions - 35 Minutes. Those who clear the first test would have a second test of Psychometric duration 60 Mins on the same day of the test. Shortlisted candidates would have interviews post that.
Round duration - 30 minutes
Round difficulty - Medium
This round consisted of various technical questions such as questions on web technologies, databases, OOPS concepts, and coding questions.
Given an integer N
, determine whether its binary representation is a palindrome.
The first line contains an integer 'T' representing the number of test cases.
The next 'T'...
Check if the binary representation of a given integer is a palindrome.
Convert the integer to binary representation.
Check if the binary representation is a palindrome by comparing it with its reverse.
Return true if it is a palindrome, false otherwise.
Round duration - 15 minutes
Round difficulty - Easy
I was asked to introduce myself and about my hobbies. They were very general questions. They asked me about my strengths and weakness. In the end, they asked me would I re-locate.
Tip 1 : Strengthen DSA skills initially, know the basics and understand the working of different data structures
Tip 2 : Learn to implement them and enhance your coding skills. Make mistakes and learn from them instead of just cramming everything before practicing.
Tip 3 : To enhance coding skills, try your best to crack a question instead of giving up and looking at the solution..this will improve your problem-solving skills.
Tip 4 : It's a must to do the standard coding questions under every category of data structure and algorithms
Tip 5 : To study the topics and practice coding questions refer to GeeksforGeeks and regularly take part in coding contests.
Tip 6 : Be thorough with OOPs, DBMS, and the technologies on which you have worked for the interview.
Tip 7 : Have at least 2 projects in your resume and make sure you can answer the questions related to them.
Tip 8 : For HR interviews prepare questions, prepare questions such as introduce yourself, your strengths, your weakness.
Confidence is the key you need to be an expert in. I was not aware of some things the interviewer asked during my interviews. But due to my confidence, he skipped that part.
Tip 9 : Be in formals with the properly ironed dress, and try to join 5 minutes early than the joining time. It will have a positive affect.
Tip 1 : Make sure your resume fits everything into a single page.
Tip 2 : Have at least 2 projects on your resume.
Tip 3 : Only Mention only those technical skills that you are confident in. Do not put false things on your resume.
Tip 4 : Mention the work you have done during your internships.
Tip 5 : Include an objective in your resume.
posted on 19 Apr 2022
I applied via Naukri.com and was interviewed in Oct 2021. There were 3 interview rounds.
posted on 7 Jul 2017
posted on 26 Nov 2020
I applied via Naukri.com and was interviewed before Nov 2019. There were 4 interview rounds.
posted on 20 Feb 2021
I applied via Recruitment Consultant and was interviewed before Feb 2020. There were 4 interview rounds.
posted on 18 May 2021
I applied via Naukri.com and was interviewed in Nov 2020. There were 4 interview rounds.
posted on 15 Sep 2021
I appeared for an interview before Sep 2020.
Round duration - 45 minutes
Round difficulty - Medium
I was asked 2 coding questions, questions from my projects and questions related to different java concepts. One question from cloud computing was also asked.
Given an array arr
of length N
consisting of integers, find the sum of the subarray (including empty subarray) with the maximum sum among all subarrays.
Find the sum of the subarray with the maximum sum among all subarrays in a given array.
Iterate through the array and keep track of the current sum and maximum sum seen so far.
If the current sum becomes negative, reset it to 0 as it won't contribute to the maximum sum.
Return the maximum sum as the result.
Example: For input arr = [-2, 1, -3, 4, -1], the maximum subarray sum is 4.
You are given two singly linked lists, where each list represents a positive number without any leading zeros.
Your task is to add these two numbers and return the sum as ...
Add two numbers represented as linked lists and return the sum as a linked list.
Traverse both linked lists simultaneously while keeping track of carry
Create a new linked list to store the sum
Handle cases where one list is longer than the other
Consider edge cases like carry at the end of addition
Round duration - 15 minutes
Round difficulty - Easy
It was a normal discussion about the role, the job expectations and about the company culture.
Tip 1 : Do at-least 200+ dsa problems from various topics.
Tip 2 : Make 2-3 projects and be well versed with their functionality.
Tip 3 : Practice aptitude questions and time yourself while doing the questions.
Tip 1: Keep your resume short, try to make it one pager only.
Tip 2: Mention only position specific projects, and if you have got a good academic score mention it on top.
based on 1 interview
Interview experience
based on 16 reviews
Rating in categories
Senior Software Engineer
388
salaries
| ₹5.5 L/yr - ₹21.5 L/yr |
Software Engineer
383
salaries
| ₹2.4 L/yr - ₹11.5 L/yr |
Lead Engineer
161
salaries
| ₹7 L/yr - ₹25 L/yr |
Software Developer
143
salaries
| ₹2.8 L/yr - ₹11 L/yr |
Software Quality Analyst
89
salaries
| ₹2.7 L/yr - ₹9 L/yr |
ITC Infotech
3i Infotech
Sify Technologies
Microland