Apisero interview experience Real time questions & tips from candidates to crack your interview

Software Engineer

Apisero
upvote
share-icon
2 rounds | 3 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 3 months
Topics: Data Structures, Linux, Python, OOPS,DBMS, Pointers, Web Developement.
Tip
Tip

Tip 1 : Sharpen your Computer Science fundamentals for interviews.
Tip 2 : Practice a lot of data structure questions from easy to medium.
Tip 3 : Make at least 2 good projects to mention on your resume on the tech stack you like.

Application process
Where: Other
Eligibility: None
Resume Tip
Resume tip

Tip 1 : Mention your coding profile in which you practice.
Tip 2 : Mention your Projects and achievements.
Tip 3 : Keep your resume clear and concise and Be honest.

Interview rounds

01
Round
Medium
Video Call
Duration15 minutes
Interview date22 May 2022
Coding problem2

Easy to medium level Data Structures and Algorithm questions. Questions related to Operating Systems, Database Management Systems, Computer Networks may also be asked. It is important for candidates to be very good at Computer Science Fundamentals in order to ace this interview.

1. Missing Numbers

Easy
28m average time
85% success
0/40
Asked in companies
Thought WorksAdobeAmazon

You are given an array 'ARR' of distinct positive integers. You need to find all numbers that are in the range of the elements of the array, but not in the array. The missing elements should be printed in sorted order.

Example:
If the given array is [4, 2, 9] then you should print "3 5 6 7 8". As all these elements lie in the range but not present in the array.
Problem approach

Tip 1 : The length of the array is n-1. So, the sum of all n elements i.e. sum of numbers from 1 to n can be calculated using the formula n*(n+1)/2. Now find the sum of all the elements in the array and subtract it from the sum of the first n natural numbers, it will give us the value of the missing element.

Try solving now

2. SQL Question

SQL query to find second highest salary.

Problem approach

Tip 1 : gO THROUGH BASIC concepts of sql and their syntax

02
Round
Easy
Video Call
Duration15 Minutes
Interview date25 May 2022
Coding problem1

He asked me questions on python fundamentals like, difference between Set, List, Tuple, Dictionary. Questions on lambda functions.
Questions on Agile Methodology.
Question on Azure DevOps portal. What is cloud computing.

1. Check Palindrome

Easy
0/40
Asked in companies
EXL ServiceThalesOptum

You're given an alphabetical string ‘S’.


Determine whether it is palindrome or not. A palindrome is a string that is equal to itself upon reversing it.


For example:
‘S’ = racecar
The reverse of ‘S’ is: racecar
Since ‘S’ is equal to its reverse. So ‘S’ is a palindrome.
Hence output will be 1.
Problem approach

1. Take a string from the user.
2. Pass the string as an argument to a recursive function.
3. In the function, if the length of the string is less than 1, return True.
4. If the last letter is equal to the first letter, recursively call the function with the argument as the sliced list with the first character and last character removed else return False.
5. Use an if statement if check if the returned value is True of False and print the final result.
6. Exit.

Try solving now

Here's your problem of the day

Solving this problem will increase your chance to get selected in this company

Skill covered: Programming

What is recursion?

Choose another skill to practice
Similar interview experiences
company logo
SDE - 1
3 rounds | 7 problems
Interviewed by OYO
4657 views
0 comments
0 upvotes
Software Engineer
4 rounds | 5 problems
Interviewed by Apisero
825 views
0 comments
0 upvotes
Software Engineer
2 rounds | 4 problems
Interviewed by Apisero
968 views
0 comments
0 upvotes
company logo
SDE - 1
3 rounds | 9 problems
Interviewed by Salesforce
3452 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
Software Engineer
4 rounds | 1 problems
Interviewed by Newgen Software
3210 views
2 comments
0 upvotes
company logo
Software Engineer
3 rounds | 6 problems
Interviewed by HashedIn
2582 views
0 comments
0 upvotes
company logo
Software Engineer
2 rounds | 2 problems
Interviewed by Ernst & Young (EY)
0 views
0 comments
0 upvotes