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

SDE - Intern

REACH Technologies
upvote
share-icon
1 rounds | 2 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 2 months
Topics: Recursion , Tree , Array , Graph , DP , stack and queue.
Tip
Tip

Tip 1 : Data structure and algorithms 
Tip 2 : Practise Maths 
Tip 3 : Practise English

Application process
Where: Referral
Eligibility: Above 6 CGPA and Need one good development projects on Resume.
Resume Tip
Resume tip

Tip 1 : Write only that thing which you can explain there.
Tip 2 : Also Specify Your project and the part of the project you did.

Interview rounds

01
Round
Medium
Online Coding Interview
Duration90 mintues
Interview date29 Jan 2021
Coding problem2

The round contain 20 medium MCQ question ranging from Mathematics and Data Structure questions And at the last 2 coding questions.

1. Remove Vowels

Easy
10m average time
90% success
0/40
Asked in companies
OptumPractoCGI Inc.

You are given a string STR of length N. Your task is to remove all the vowels present in that string and print the modified string.

English alphabets ‘a’, ‘e’, ‘i’, ‘o’, ‘u’ are termed as vowels. All other alphabets are called consonants.

Note: You have to only remove vowels from the string. There will be no change in the relative position of all other alphabets.

For example:
(i)  If the input string is 'CodeGeek', the output should be CdGk after removing ‘o’ and ‘e’.

(ii) If the input string is 'Odinson', the output should be 'dnsn' after removing ‘o’ and ‘i’. 
Problem approach

Make array and use switch cases like
switch(ch)
{
case 'a':
case 'e':
case 'i':
case 'o':
case 'u':
case 'A':
case 'E':
case 'I':
case 'O':
case 'U':
return 1;
default:
return 0;
}

Try solving now

2. Number Pattern

Easy
10m average time
90% success
0/40
Asked in companies
AdobeREACH Technologies

Write a program such that you are given an integer ‘N’ and print the pattern consisting of ‘N’ lines.

For Example :
If we are given N=3
The pattern is :
1 2 3 10 11 12 
4 5 8 9 
6 7 
Problem approach

We will start from 1 and print the first half of the pattern and then do the same for the second part also.

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 does print(2 ** 3) output in Python?

Choose another skill to practice
Start a Discussion
Similar interview experiences
company logo
SDE - 1
3 rounds | 7 problems
Interviewed by OYO
1123 views
0 comments
0 upvotes
SDE - 1
2 rounds | 5 problems
Interviewed by Meesho
3405 views
0 comments
0 upvotes
company logo
SDE - 1
3 rounds | 9 problems
Interviewed by Salesforce
689 views
0 comments
0 upvotes
company logo
System Engineer
2 rounds | 2 problems
Interviewed by Tata Consultancy Services (TCS)
518 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
SDE - Intern
3 rounds | 6 problems
Interviewed by Amazon
13660 views
4 comments
0 upvotes
company logo
SDE - Intern
4 rounds | 7 problems
Interviewed by Microsoft
12861 views
1 comments
0 upvotes
company logo
SDE - Intern
2 rounds | 4 problems
Interviewed by Amazon
9087 views
2 comments
0 upvotes