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

SDE - 1

AVIZVA
upvote
share-icon
2 rounds | 4 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 3 months
Topics: Data Structure, OOPS, Algorithms, Java, Spring, Database, and Design patterns.
Tip
Tip

Tip 1 : First need to check the Interview experiences of candidates, check the topics make a list.
Tip 2 : Give daily 1 hour at least on that topic, Apply and give interviews in startups you get good interviews experience.
Tip 3 : Practice daily coding, Read blogs on related technology.

Application process
Where: Naukri
Eligibility: 2 years experience in java spring and data structure.
Resume Tip
Resume tip

Tip 1 : Mention your projects.
Tip 2 : Never lies on a resume.

Interview rounds

01
Round
Medium
Face to Face
Duration45 minutes.
Interview date1 Jul 2021
Coding problem3

You will get the google meet link for the meeting. Mostly it would be between 12 to 4 PM.
The interviewer were good they provided a helpful environment. They start with easy topics like java and oops then some coding questions and at last few design questions. Sometimes they ask SQL queries.

1. First Missing Positive

Moderate
18m average time
84% success
0/80
Asked in companies
DunzoHikeSamsung

You are given an array 'ARR' of integers of length N. Your task is to find the first missing positive integer in linear time and constant space. In other words, find the lowest positive integer that does not exist in the array. The array can have negative numbers as well.

For example, the input [3, 4, -1, 1] should give output 2 because it is the smallest positive number that is missing in the input array.

Problem approach

Step 1: First I applied brute force and get the element by checking with Index values.
Step 2: Then he asked something better.
Step 3: Then I add all the elements of the array and subtract that from the sum of integer values 1 to N. Where and is the max number

Try solving now

2. DBMS based question

Find the 3rd maximum Salary.

Problem approach

select * from ((select * from Employee 
ORDER BY `sal` DESC limit 3) AS T) 
ORDER BY T.`sal` ASC limit 1;

3. Longest Subarray Zero Sum

Moderate
18m average time
85% success
0/80
Asked in companies
AmazonOlaPayU

Given an array arr of length N consisting of positive and negative integers, return the length of the longest subarray whose sum is zero.

Problem approach

Efficient Approach: Following are the steps:

Initialize sum = 0 and maxLen = 0.
Create a hash table having (sum, index) tuples.
For i = 0 to n-1, perform the following steps:
Accumulate arr[i] to sum.
If sum == k, update maxLen = i+1.
Check whether sum is present in the hash table or not. If not present, then add it to the hash table as (sum, i) pair.
Check if (sum-k) is present in the hash table or not. If present, then obtain index of (sum-k) from the hash table as index. Now check if maxLen < (i-index), then update maxLen = (i-index).
Return maxLen.

Try solving now
02
Round
Easy
HR Round
Duration20 Minutes
Interview date2 Jul 2021
Coding problem1

Its also in the mid of the day. Its very easy round and they just asked the reason for change.

1. Basic HR question

They Asked why are you leaving such a huge MNC and why do you want to join us.

Problem approach

Tip 1 : Try to be honest about why are you leaving.
Tip 2 : I leave the my previous company for technology growth.
Tip 3 : In small organisation you get better opportunities.

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
Associate Technology L1
3 rounds | 3 problems
Interviewed by AVIZVA
749 views
0 comments
0 upvotes
SDE - 1
3 rounds | 7 problems
Interviewed by AVIZVA
1173 views
0 comments
0 upvotes
Associate trainee
2 rounds | 2 problems
Interviewed by AVIZVA
1043 views
0 comments
0 upvotes
company logo
SDE - Intern
1 rounds | 3 problems
Interviewed by Amazon
3319 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
SDE - 1
5 rounds | 12 problems
Interviewed by Amazon
114579 views
24 comments
0 upvotes
company logo
SDE - 1
4 rounds | 5 problems
Interviewed by Microsoft
57825 views
5 comments
0 upvotes
company logo
SDE - 1
3 rounds | 7 problems
Interviewed by Amazon
34961 views
7 comments
0 upvotes