Upload Button Icon Add office photos

Filter interviews by

Exotel SDE-1 Position Interview Questions and Answers

Updated 16 Oct 2021

Exotel SDE-1 Position Interview Experiences

1 interview found

I applied via Campus Placement and was interviewed in Sep 2021. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Add one to linked list
  • Ans. 

    To add one to a linked list, traverse the list and add 1 to the last node's value. If it overflows, create a new node.

    • Traverse the linked list until the last node

    • Add 1 to the value of the last node

    • If the value overflows, create a new node with value 1 and add it to the end of the list

  • Answered by AI
  • Q2. About Radix sort
  • Q3. 100 coins 10 bags puzzle

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare data structures and algorithms well and see all sorting algorithms, prepare some puzzles from gfg and also be thorough with oops.

Skills evaluated in this interview

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Feb 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. 2 technical rounds, 1 psychometric test, then Manager and HR rounds, basic question on java 7 and java 8,interface and class, DS questions like linkedList reverse and adding nodes to linkedList, Hashmap, ...

Interview Preparation Tips

Interview preparation tips for other job seekers - Java basics should be clear and brushed up, be calm and confident while giving your answers.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. SQL Questions - Constraints- how to optimize long SQL query without changing the output
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Sql mcq questions with medium difficulty

Round 2 - Technical 

(1 Question)

  • Q1. What is inheritance? What are advantages of oops? What's indexing in sql?
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.

    • Advantages of OOPs include reusability, modularity, and flexibility in code design.

    • Indexing in SQL is a way to optimize database queries by creating indexes on columns to improve search performance.

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. What was your previous job role? What methodologies did you follow while working?
  • Ans. 

    I was a Software Developer at XYZ Company. I followed Agile and Scrum methodologies.

    • Worked as a Software Developer at XYZ Company

    • Followed Agile and Scrum methodologies for project management

    • Participated in daily stand-up meetings, sprint planning, and retrospectives

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. What are you leaving your current organization?
  • Ans. 

    Seeking new challenges and opportunities for growth.

    • Looking for new challenges and opportunities for professional growth

    • Interested in working on different technologies or projects

    • Seeking a more collaborative or innovative work environment

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Reconciliation based question medium
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before Dec 2023.

Round 1 - Technical 

(1 Question)

  • Q1. It was mostly on scenario based questions and I was asked to code online.
Round 2 - Technical 

(1 Question)

  • Q1. Discussion were there past projects, how different objectives were done.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Sep 2024, where I was asked the following questions.

  • Q1. Round 1 was hackerrank test. MCQs and coding questions.
  • Q2. Kafka related questions.
  • Q3. Java 8 related questions. Java streams.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Starting from full form of SQL to RDBMS, CTE and some most common window functions, they asked everything. Questions were easy.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Concept of Hoisting in Javascript
  • Ans. 

    Hoisting is a JavaScript behavior where variable and function declarations are moved to the top of their containing scope during compilation.

    • Variable declarations are hoisted to the top of their scope, but not their initializations.

    • Function declarations are fully hoisted, including their definitions.

    • Hoisting can lead to unexpected behavior if not understood properly.

  • Answered by AI
  • Q2. What is arrow function
  • Ans. 

    Arrow functions are a concise way to write functions in JavaScript.

    • Arrow functions are anonymous functions defined using the '=>' syntax.

    • They have a shorter syntax compared to traditional function expressions.

    • Arrow functions do not have their own 'this' keyword, instead they inherit it from the parent scope.

  • Answered by AI
  • Q3. Polyfill of Promise
  • Ans. 

    Polyfill of Promise is a code that adds Promise functionality to browsers that do not support it natively.

    • Polyfill is a piece of code that provides the technology that you expect the browser to provide natively.

    • Polyfill for Promise adds Promise functionality to browsers that do not support it, allowing developers to use Promises in their code.

    • Examples of Promise polyfills include 'es6-promise' and 'promise-polyfill'.

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Implementation of carousel
  • Ans. 

    Implementing a carousel for displaying multiple images or content in a rotating manner.

    • Use a library like Slick or Owl Carousel for easy implementation

    • Ensure images/content are responsive for different screen sizes

    • Add navigation arrows or dots for user interaction

    • Consider adding autoplay feature with customizable speed

    • Optimize performance by lazy loading images

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

FInd 3 numbers in an array whose sum = k.

Round 2 - Technical 

(2 Questions)

  • Q1. Past projects I have worked on
  • Q2. Design a Elevator system
  • Ans. 

    Design an Elevator system for efficient vertical transportation

    • Consider the number of floors in the building

    • Implement a scheduling algorithm to optimize elevator movement

    • Include safety features such as emergency stop button

    • Allow for both manual and automatic operation

    • Consider peak hours and traffic flow in the building

  • Answered by AI

Skills evaluated in this interview

Exotel Interview FAQs

What are the top questions asked in Exotel SDE-1 Position interview?

Some of the top questions asked at the Exotel SDE-1 Position interview -

  1. Add one to linked lis...read more
  2. 100 coins 10 bags puzz...read more
  3. About Radix s...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

CyberArk Interview Questions
3.6
 • 13 Interviews
Narvar India Interview Questions
3.4
 • 11 Interviews
PlanSource Interview Questions
3.6
 • 11 Interviews
Vanenburg Interview Questions
3.9
 • 10 Interviews
Addepar Interview Questions
3.0
 • 8 Interviews
Ivalua Interview Questions
3.6
 • 8 Interviews
Unbxd Interview Questions
3.8
 • 6 Interviews
View all
Customer Success Manager
33 salaries
unlock blur

₹6 L/yr - ₹19.5 L/yr

Product Support Engineer
30 salaries
unlock blur

₹4.8 L/yr - ₹8.5 L/yr

Product Manager
25 salaries
unlock blur

₹20 L/yr - ₹28 L/yr

Software Engineer
19 salaries
unlock blur

₹8 L/yr - ₹23.6 L/yr

Senior Customer Success Manager
17 salaries
unlock blur

₹12.5 L/yr - ₹25 L/yr

Explore more salaries
Compare Exotel with

Azuga Telematics

3.3
Compare

Flixstock

2.4
Compare

World Fashion Exchange

3.5
Compare

Shell Recharge Solutions

4.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview