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

Software Development

MedTourEasy
upvote
share-icon
3 rounds | 5 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 4 months
Topics: OOPS, STL, CPP, Socket Programming, Pointers,DBMS, Data Structures and Algorithms, Advanced Java, OOPS concepts, Problem Solving, Aptitude and Reasoning
Tip
Tip

Tip 1 : Practice Aptitude Questions from IndiaBix
Tip 2 : Continue practice on online coding platforms and do participate in coding challenges. 
Tip 3 : Keep revising your Computer Science fundamentals(OS, DBMS, Software Engineering principles).
Tip 4 : Also brush-up your aptitude skills.

Application process
Where: Campus
Eligibility: Above 7 CGPA
Resume Tip
Resume tip

Tip 1 : Add only what you know properly. don't add extra stuff just to add weight to your resume.
Tip 2 : First page of the resume must in tabular form and it must give complete information about you in very simple manner.
Tip 3 : Use professional Keywords in your resume. 
Tip 4 : Highlight your Skills and Achievements. Put only those skills in which you are good like any question can be asked on any particular skill. Like how you will do this in this.

Interview rounds

01
Round
Easy
Online Coding Test
Duration125 minutes
Interview date2 Nov 2020
Coding problem2

Platform for this round is Amcat. The First round have coding questions , we can write programs in any language . It was easy round.

1. Anagram Pairs

Moderate
30m average time
60% success
0/80
Asked in companies
CiscoThought WorksInfosys

You are given two strings 'str1' and 'str1'.


You have to tell whether these strings form an anagram pair or not.


The strings form an anagram pair if the letters of one string can be rearranged to form another string.

Pre-requisites:

Anagrams are defined as words or names that can be formed by rearranging the letters of another word. Such as "spar" can be formed by rearranging letters of "rasp". Hence, "spar" and "rasp" are anagrams. 

Other examples include:

'triangle' and 'integral'
'listen' and 'silent'
Note:
Since it is a binary problem, there is no partial marking. Marks will only be awarded if you get all the test cases correct. 
Try solving now

2. Decimal to Octal Conversion

Easy
15m average time
90% success
0/40
Asked in companies
MedTourEasySociete GeneraleQualys

You are given a decimal number as input. You need to convert this number into its equivalent in the octal number system. The octal number system is the number system with a base value = 8.

A number system with base value = n means that all numbers, when written in this number system, will be represented with only digits from 0 to n-1. For example, the Binary number system has a base value = 2, so any number, when written in the binary system, will be represented using the digits 0 and 1 only.

Note:
The binary number system requires 2 digits (0-1), the Ternary number system requires 3 digits (0-2), the Octal number system requires 8 digits (0-7), and the decimal number system requires 10 digits (0-9) to represent any numeric value.
Try solving now
02
Round
Easy
Video Call
Duration30 minutes
Interview date19 Jan 2021
Coding problem2

This round was easy they basically ask about some important topics of computer science as well as related to our position for company.

1. OS Question

What is need of Virtual Memory?

2. Delete middle element from stack

Easy
15m average time
85% success
0/40
Asked in companies
Wells FargoAmazonTech Mahindra

You are having a stack "ARR" of size 'N+1', your task is to delete the middlemost element so that the size of resulting stack is 'N'.

A stack is a linear data structure where both insertion and deletion of elements take place at the top. It follows FILO (First In Last Out) or LIFO (Last In First Out) approaches. Books piled on top of each other is an example of a stack, where you can only remove a single book at a time, which is at the top of the stack. Likewise, you can only add a single book at a time, on the top of the stack only.

Example :-
INPUT : ARR [ ] = [ 1 , 2 , 3 , 4 , 5 ] , N = 4
OUTPUT: ARR [ ] = [ 1 , 2 , 4,  5 ]

The above example contains an odd number of elements, hence the middle element is clearly the (N+1) / 2th element, which is removed from the stack in the output.

INPUT : ARR [ ] = [ 5, 6, 7, 8 ] , N = 3
OUTPUT: ARR [ ] = [ 5, 7, 8 ]

The above example contains an even number of elements, so out of the two middle elements, we consider the one which occurs first. Hence, the middle element would be ((N+1) / 2 - 1) element, which is 6 and is removed from the stack in the output.
Try solving now
03
Round
Easy
HR Round
Duration30 minutes
Interview date26 Jan 2021
Coding problem1

It was in the morning . Its one to one conversation. Interviewer was good enough. He ask about me and what i know about their company. What were my objectives and many more.

1. Basic HR Questions

What are the three things that are most important for you in a job? 

What was the toughest decision you ever had to make?

Problem approach

Tip 1 : Be talkative with interviewer.
Tip 2 : Don't be panic and don't lie to him.
Tip 3 : You must me very conscious and have deep knowledge regarding your skills.

Here's your problem of the day

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

Skill covered: Programming

Which SQL keyword removes duplicate records from a result set?

Choose another skill to practice
Similar interview experiences
company logo
SDE - 1
3 rounds | 7 problems
Interviewed by OYO
1633 views
0 comments
0 upvotes
SDE - 1
2 rounds | 5 problems
Interviewed by Meesho
3716 views
0 comments
0 upvotes
company logo
SDE - 1
3 rounds | 9 problems
Interviewed by Salesforce
1101 views
0 comments
0 upvotes
company logo
System Engineer
2 rounds | 2 problems
Interviewed by Tata Consultancy Services (TCS)
879 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
Software Development
3 rounds | 5 problems
Interviewed by PhonePe
11973 views
0 comments
0 upvotes
company logo
Software Development
3 rounds | 4 problems
Interviewed by Amdocs
7829 views
0 comments
0 upvotes
company logo
Software Development
3 rounds | 5 problems
Interviewed by Microsoft
1353 views
0 comments
0 upvotes