Premium Employer

i

This company page is being actively managed by RingCentral Team. If you also belong to the team, you can get access from here

RingCentral

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

RingCentral Sdet 2 Interview Questions and Answers

Updated 8 Feb 2022

RingCentral Sdet 2 Interview Experiences

1 interview found

Sdet 2 Interview Questions & Answers

user image Anonymous

posted on 8 Feb 2022

I applied via Approached by company and was interviewed before Feb 2021. There were 4 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. 1st round was about understanding current roles and responsibilities. It was screening call basically.
Round 2 - Technical 

(1 Question)

  • Q1. As I got hired for platform team , so questions were around backend testing, Rest api, rest APIs, rest assured, TestNG, CI/CD, one coding question
Round 3 - Behavioral 

(1 Question)

  • Q1. About understanding testing approach, strategies to test and release any feature, test case and test scenarios writing.
Round 4 - HR 

(1 Question)

  • Q1. Why are you looking for a change?
  • Ans. 

    Looking for growth and new challenges

    • Seeking opportunities for professional development

    • Want to expand my skill set and learn new technologies

    • Desire to work on more complex projects

    • Looking for a company with a strong culture and values

    • Seeking a better work-life balance

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't focus more on coding bcoz rong central don't ask to write sorting algo etc as we already have functions/library provide by Java. They ask basics and try to understand the approach.

Interview questions from similar companies

I applied via Walk-in and was interviewed before Apr 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Process for freshers-

Go through RS Agarwal book and be ready for logical reasoning questions

Criteria for selection is 75% so make sure to select right ans

There will be 2 questions based on selected language

And questions on general English.

Round 2 - Technical 

(1 Question)

  • Q1. Technical round will based on mentioned language in resume. My round was on Java language. So prepare the basic of Java and advance Java some time they ask you to write some syntax so prepare those synta...
Round 3 - One-on-one 

(1 Question)

  • Q1. It's formality round Just present your self well Be ready to reallocate any where they want. You can ask some question about the work culture in company.

Interview Preparation Tips

Topics to prepare for Amdocs Senior Software Engineer interview:
  • Java
  • C
  • C++
  • Data Structures
Interview preparation tips for other job seekers - Prepare well if you clear the aptitude round.

Chance of getting selected is high then.

I applied via Company Website and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Coding Test 

Data Structure related questions

Round 2 - One-on-one 

(1 Question)

  • Q1. Java related interview questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Study Data structure and Java code properly

I applied via LinkedIn and was interviewed in Jul 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Data structures
  • Q2. Advanced android

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview panel is very good just basics should be clear

I applied via Naukri.com and was interviewed before Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Java OOPS, collections, and some basic SQL

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be relaxed and calm. The interview is easy checking your fundamentals.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Dec 2023. There was 1 interview round.

Round 1 - Coding Test 

Leetcode trap watee question

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

(1 Question)

  • Q1. Design and code a zoo management system.
  • Ans. 

    A zoo management system to track animals, enclosures, staff, and visitor information.

    • Create classes for animals, enclosures, staff, and visitors

    • Implement functions for adding, updating, and deleting records

    • Include features for scheduling feeding times, cleaning enclosures, and managing staff shifts

  • Answered by AI
Round 2 - Coding Test 

Standard DSA questions

Round 3 - HR 

(1 Question)

  • Q1. Standard HR stuff.

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Oct 2022. There were 6 interview rounds.

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 - Coding Test 

4 Coding Questions Leetcode Level Medium to Hard. Had to solve it within 1.5 hours.

Was able to solve 2 questions - One hard and one Medium. Hadn't enough time to solve all.

Round 3 - Technical 

(2 Questions)

  • Q1. DSA based round. Was asked to write 3 APIs based on the the given n-ary tree.
  • Q2. Questions based on Path, end node, best path, etc.
Round 4 - Technical 

(1 Question)

  • Q1. System Design round : Was asked to design RDBMS for the given problem.
Round 5 - One-on-one 

(1 Question)

  • Q1. HM Round : Mostly behavioral based around Twilio Magic Values
Round 6 - One-on-one 

(1 Question)

  • Q1. Bar Raiser Round : Taken by a director. Was asked behavioral questions again.

Interview Preparation Tips

Interview preparation tips for other job seekers - Expect real day use cases based questions here. Plus it's a communication company so prepare some network based questions.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Feb 2022. There were 5 interview rounds.

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 - Coding Test 

Hacker rank codinv problems level medium

Round 3 - Technical 

(1 Question)

  • Q1. Coding round again D and S
Round 4 - Technical 

(1 Question)

  • Q1. System design tech dummies
Round 5 - HR 

(1 Question)

  • Q1. Common questions , why we should hire you , achievements

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for D and S and system design depends on team and role in terms of difficulty
Round 1 - Technical 

(2 Questions)

  • Q1. Reverse linked list using the recursion
  • Ans. 

    Reverse a linked list using recursion

    • Create a recursive function that takes the head of the linked list as input

    • Base case: if the head is null or the next node is null, return the head

    • Recursively call the function with the next node as input

    • Set the next node's next pointer to the current node

    • Set the current node's next pointer to null

    • Return the new head of the reversed linked list

  • Answered by AI
  • Q2. Find max number in the linked list using stack.
  • Ans. 

    To find max number in linked list using stack.

    • Create an empty stack.

    • Traverse the linked list and push each element onto the stack.

    • Pop elements from the stack and compare with max value.

    • Return the max value.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics. Be confident
. Give answer properly

Skills evaluated in this interview

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

RingCentral Interview FAQs

How many rounds are there in RingCentral Sdet 2 interview?
RingCentral interview process usually has 4 rounds. The most common rounds in the RingCentral interview process are One-on-one Round, Technical and Behavioral.
What are the top questions asked in RingCentral Sdet 2 interview?

Some of the top questions asked at the RingCentral Sdet 2 interview -

  1. 1st round was about understanding current roles and responsibilities. It was sc...read more
  2. As I got hired for platform team , so questions were around backend testing, Re...read more
  3. About understanding testing approach, strategies to test and release any featur...read more

Recently Viewed

INTERVIEWS

RingCentral

No Interviews

INTERVIEWS

ACC

No Interviews

SALARIES

AVAYA

SALARIES

RingCentral

INTERVIEWS

SterlingBackcheck

No Interviews

INTERVIEWS

RingCentral

No Interviews

SALARIES

Anakin

SALARIES

ArcelorMittal

DESIGNATION

SALARIES

Pepperfry

Tell us how to improve this page.

Join RingCentral A leading provider of AI-driven cloud business communications

Interview Questions from Similar Companies

Oracle Interview Questions
3.7
 • 846 Interviews
Bharti Airtel Interview Questions
4.0
 • 842 Interviews
Amdocs Interview Questions
3.7
 • 512 Interviews
Cisco Interview Questions
4.1
 • 370 Interviews
Adobe Interview Questions
3.9
 • 233 Interviews
Salesforce Interview Questions
4.0
 • 221 Interviews
24/7 Customer Interview Questions
3.5
 • 175 Interviews
Globant Interview Questions
3.8
 • 172 Interviews
View all
Software Engineer
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Development Engineer 3
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Data Engineer
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Site Reliability Engineer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare RingCentral with

Twilio

3.9
Compare

Zoom Video Communications

3.9
Compare

8x8

3.6
Compare

Vonage

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