The future University interview experience Real time questions & tips from candidates to crack your interview

SDE - Intern

The future University
upvote
share-icon
2 rounds | 4 Coding problems

Interview preparation journey

expand-icon
Journey
It was a very good interview experience, I was well prepared for it all the questions that were asked in the interview was moderate and if someone has cleared their basics they can answer those questions easily.
Application story
I applied on internshala because at that time i was very eager to do a internship and my senior told me to apply for at least 4-5 internships in a day and you will be selected eventually also coding ninjas was a very helpful platform in journey
Why selected/rejected for the role?
I think in the interview process in one round their was a interaction with the CEO of the company and that went very well for me. So that is why I was selected
Preparation
Duration: 2 Months
Topics: Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic Programming
Tip
Tip

Tip 1 : Practice Atleast 300 Questions
Tip 2 : Do atleast 2 projects
Tip 3 : DSA is important but focus on some other subjects like: oops,coa,dbms

Application process
Where: Other
Eligibility: CGPA>8
Resume Tip
Resume tip

Tip 1 : Do not write too much information just write the important stuff 
Tip 2 : Do not put false things on resume

Interview rounds

01
Round
Medium
Telephonic
Duration30 Minutes
Interview date17 Oct 2022
Coding problem1

It was a easy round as all the question were based on database management system and SQL

1. DBMS Questions

How many types of database languages are?(Learn)
What are the disadvantages of file processing systems?(Learn)
What is Relational Algebra?(Learn)

02
Round
Medium
Video Call
Duration60 Minutes
Interview date19 Oct 2022
Coding problem3

1. Common Elements In Three Sorted Arrays

Moderate
35m average time
65% success
0/80
Asked in companies
MicrosoftOptumSAP Labs

You are given three arrays 'A', 'B' and 'C' of length 'N', 'M' and 'K' respectively. All the three arrays are sorted in non-decreasing order. Your task is to find all such elements which are present in all the three given arrays.

Note:

1. The output array should have the same ordering of elements as the original arrays.
2. Even if a particular element appears more than once in each of the three arrays, it should still be present only once in the output array.
3. If there are no common elements in the arrays, return an empty array.

For example:

Consider the three arrays A = [ 2, 3, 4, 7 ] , B = [ 0, 0, 3, 5 ] , C = [ 1, 3, 8, 9 ]
The output array should be [ 3 ] as 3 is the only element which is present in all the three arrays.
Try solving now

2. Move Zeroes To End

Moderate
30m average time
70% success
0/80
Asked in companies
AmazonMicrosoftThought Works

Given an unsorted array of integers, you have to move the array elements in a way such that all the zeroes are transferred to the end, and all the non-zero elements are moved to the front. The non-zero elements must be ordered in their order of appearance.

For example, if the input array is: [0, 1, -2, 3, 4, 0, 5, -27, 9, 0], then the output array must be:

[1, -2, 3, 4, 5, -27, 9, 0, 0, 0].

Expected Complexity: Try doing it in O(n) time complexity and O(1) space complexity. Here, ‘n’ is the size of the array.

Try solving now

3. Zigzag Binary Tree Traversal

Easy
10m average time
90% success
0/40
Asked in companies
Goldman SachsAmazonFlexiEle Consulting Services (FE)

You are given a ‘Binary Tree’.


Return the level-order traversal of the Binary Tree.


Example:
Input: Consider the following Binary Tree:

Example

Output: 
Following is the level-order traversal of the given Binary Tree: [1, 2, 3, 5, 6, 4]


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
company logo
SDE - Intern
2 rounds | 3 problems
Interviewed by Amazon
961 views
0 comments
0 upvotes
company logo
SDE - 1
2 rounds | 5 problems
Interviewed by Meesho
6450 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
SDE - Intern
3 rounds | 6 problems
Interviewed by Amazon
15480 views
4 comments
0 upvotes
company logo
SDE - Intern
4 rounds | 7 problems
Interviewed by Microsoft
15338 views
1 comments
0 upvotes
company logo
SDE - Intern
2 rounds | 4 problems
Interviewed by Amazon
10142 views
2 comments
0 upvotes