Upload Button Icon Add office photos

Filter interviews by

Plivo Sde1 Interview Questions and Answers

Updated 6 Apr 2021

Plivo Sde1 Interview Experiences

1 interview found

Sde1 Interview Questions & Answers

user image Anonymous

posted on 6 Apr 2021

I was interviewed in Mar 2021.

Interview Questionnaire 

3 Questions

  • Q1. Given an array of 0s, 1s and 2s sort the array - expected O(n)
  • Ans. 

    Sort an array of 0s, 1s, and 2s in O(n) time complexity.

    • Use three pointers to keep track of the positions of 0s, 1s, and 2s.

    • Traverse the array and swap elements to their respective positions.

    • The first pointer should point to the first occurrence of 1, and the second pointer should point to the first occurrence of 2.

    • Example: [0, 1, 2, 0, 1, 2] -> [0, 0, 1, 1, 2, 2]

  • Answered by AI
  • Q2. Design tinyURL
  • Ans. 

    Design a service to shorten long URLs into short ones.

    • Generate a unique ID for each long URL and store it in a database.

    • Map the unique ID to the long URL and store it in the database.

    • Create a short URL by using the unique ID as a parameter.

    • Redirect the short URL to the long URL when accessed.

    • Implement security measures to prevent abuse and ensure privacy.

    • Consider implementing analytics to track usage and performance.

  • Answered by AI
  • Q3. Basic multi threading questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for system design

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Everything from core java, questions solve by stream and HashMaps(frequencies of character)
Round 2 - Technical 

(1 Question)

  • Q1. More from inheritance and polymorphism, collections, fail fast VS fail safe, scenario based questions, implementations of SQL queries and comparable and comparator
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. Palindrome code should design
  • Ans. 

    Palindrome code should be designed to check if a given string is the same forwards and backwards.

    • Create a function that takes a string as input

    • Remove any spaces and punctuation from the string

    • Reverse the string and compare it to the original string to check if it is a palindrome

  • Answered by AI
  • Q2. Regarding sql topics like joins and acid
  • Q3. Project explain and domain
  • Q4. Project explain and domain and internal working
  • Q5. Oops concepts and coding

Interview Preparation Tips

Interview preparation tips for other job seekers - Plzzzz don't join this worst company...they treat u like daily wages person
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about projects you have worked upon
  • Q2. PEP-8 standards
Round 2 - Technical 

(2 Questions)

  • Q1. Architecture of project on which you were working
  • Q2. Pandas and Numpy
Round 3 - HR 

(2 Questions)

  • Q1. Tell me your Current CTC
  • Q2. Tell me your Expected CTC
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Stand for SDET Engineer?
  • Q2. SDET stands by Software Development of Test Engineer.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is single page application
  • Ans. 

    Single page application is a web application that loads a single HTML page and dynamically updates the content as the user interacts with the app.

    • SPA uses AJAX and HTML5 to create fluid and responsive user experience.

    • It eliminates the need for page reloading during use, making it faster and more efficient.

    • Examples include Gmail, Facebook, and Google Maps.

  • Answered by AI
  • Q2. What is state management
  • Ans. 

    State management is the process of managing the state of an application, including data flow, user interface updates, and user interactions.

    • State management involves storing and updating the state of an application to ensure data consistency.

    • It helps in managing user interface updates based on changes in the application state.

    • State management is crucial for handling user interactions and maintaining a seamless user exp...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Some maths related questions

Round 2 - Technical 

(1 Question)

  • Q1. Related to testing

Interview Preparation Tips

Interview preparation tips for other job seekers - Great company to learn something
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

The aptitude test was of moderate level.

Round 2 - Coding Test 

It checked on the concepts of oops

Round 3 - HR 

(1 Question)

  • Q1. How will you deal with tight delivery time.
  • Ans. 

    I will prioritize tasks, communicate effectively with team members, and utilize time management techniques to meet deadlines.

    • Prioritize tasks based on importance and urgency

    • Break down tasks into smaller manageable chunks

    • Communicate effectively with team members to coordinate efforts

    • Utilize time management techniques such as Pomodoro technique or Agile methodologies

    • Identify and eliminate any potential roadblocks or bott...

  • Answered by AI
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-

I applied via Naukri.com

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all Resume tips
Round 2 - Aptitude Test 

This is the round in which basic quant questions were asked

Round 3 - Coding Test 

In this round basic 2 java questions were asked

Round 4 - Group Discussion 

In this round one topic was given and we need to discuss about that topic

Round 5 - Technical 

(2 Questions)

  • Q1. What is java explain in detail
  • Ans. 

    Java is a high-level, object-oriented programming language used to develop applications for various platforms.

    • Java is platform-independent, meaning it can run on any platform with a Java Virtual Machine (JVM)

    • It is known for its security features, such as the ability to run code in a sandbox environment

    • Java is used for developing a wide range of applications, from web applications to mobile apps and games

    • It is also used...

  • Answered by AI
  • Q2. What is searching and sorting
  • Ans. 

    Searching is finding a specific item in a collection of items. Sorting is arranging items in a specific order.

    • Searching involves looking for a specific item in a collection of items.

    • Sorting involves arranging items in a specific order, such as alphabetical or numerical.

    • Searching and sorting are commonly used in computer science and data analysis.

    • Examples of searching algorithms include linear search and binary search.

    • E...

  • Answered by AI
Round 6 - Technical 

(1 Question)

  • Q1. What is binary tree explain
  • Ans. 

    A binary tree is a data structure consisting of nodes, where each node has at most two children.

    • Nodes in a binary tree have a left and/or right child node.

    • The topmost node is called the root node.

    • Binary trees are used in search algorithms and data compression.

    • Examples of binary trees include binary search trees and heap trees.

  • Answered by AI
Round 7 - HR 

(2 Questions)

  • Q1. What is your current location
  • Q2. What is your salary expectations

Interview Preparation Tips

Topics to prepare for Webdew System Engineer interview:
  • Java
  • API
Interview preparation tips for other job seekers - this interview round was very good , nothing was hectic everything was very quick

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all Resume tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. What is the difference between classes and struct
  • Ans. 

    Classes are reference types while structs are value types.

    • Classes support inheritance while structs do not.

    • Classes have default access modifier as internal while structs have it as private.

    • Classes have a destructor while structs do not.

    • Classes are allocated on heap while structs are allocated on stack.

    • Classes can be null while structs cannot.

  • Answered by AI
  • Q2. Dispatch Queue vs operations
  • Ans. 

    Dispatch Queue is a thread-safe way to execute tasks asynchronously, while Operations are a way to encapsulate tasks.

    • Dispatch Queue is a high-level API for managing concurrent operations.

    • Operations are objects that encapsulate a single task or multiple tasks.

    • Dispatch Queue is simpler to use and recommended for most use cases.

    • Operations provide more control over task dependencies and cancellation.

    • Both can be used togeth

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on basics and problem-solving and is tested.

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Plivo Interview FAQs

How to prepare for Plivo Sde1 interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Plivo. The most common topics and skills that interviewers at Plivo expect are Amazon Ec2, Amazon RDS, Artificial Intelligence, C++ and DBMS.
What are the top questions asked in Plivo Sde1 interview?

Some of the top questions asked at the Plivo Sde1 interview -

  1. Given an array of 0s, 1s and 2s sort the array - expected O...read more
  2. Design tiny...read more
  3. Basic multi threading questi...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Jio Interview Questions
3.9
 • 1.7k Interviews
Bharti Airtel Interview Questions
4.0
 • 843 Interviews
Vodafone Idea Interview Questions
4.1
 • 555 Interviews
Webdew Interview Questions
4.5
 • 106 Interviews
HyScaler Interview Questions
4.5
 • 90 Interviews
View all
Plivo Sde1 Salary
based on 17 salaries
₹20 L/yr - ₹27 L/yr
9% more than the average Sde1 Salary in India
View more details
Sde1
17 salaries
unlock blur

₹20 L/yr - ₹27 L/yr

Business Analyst
14 salaries
unlock blur

₹11 L/yr - ₹18.2 L/yr

Senior Business Analyst
13 salaries
unlock blur

₹14 L/yr - ₹25 L/yr

Software Development Engineer
13 salaries
unlock blur

₹13.5 L/yr - ₹24 L/yr

Product Support Engineer
12 salaries
unlock blur

₹5.3 L/yr - ₹9.8 L/yr

Explore more salaries
Compare Plivo with

Twilio

3.9
Compare

Sinch

3.8
Compare

Infobip

3.6
Compare

RouteMobile

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