Upload Button Icon Add office photos

Filter interviews by

Zendesk Senior Software Engineer Interview Questions and Answers

Updated 4 Apr 2024

Zendesk Senior Software Engineer Interview Experiences

1 interview found

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

I appeared for an interview before Apr 2023.

Round 1 - Technical 

(1 Question)

  • Q1. Given a string with parenthesis, return if the parenthesis are balanced or not.
  • Ans. 

    Check if a string with parenthesis is balanced

    • Use a stack to keep track of opening parenthesis

    • Iterate through the string and push opening parenthesis onto the stack

    • When a closing parenthesis is encountered, pop from the stack and check if it matches the closing parenthesis

    • If stack is empty at the end and all parenthesis are matched, return true

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Design an login/register authentication system.
  • Ans. 

    Design a secure login/register authentication system.

    • Use strong encryption algorithms like bcrypt for storing passwords.

    • Implement multi-factor authentication for added security.

    • Utilize HTTPS protocol to ensure data transmission is secure.

    • Implement rate limiting to prevent brute force attacks.

    • Use CAPTCHA to prevent automated account creation.

    • Store user credentials in a secure database with proper access controls.

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Culture fit questions

Skills evaluated in this interview

Senior Software Engineer Jobs at Zendesk

View all

Interview questions from similar companies

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

Round 1 - Technical 

(1 Question)

  • Q1. Basic c# questions , few logical and angular questions.
Round 2 - One-on-one 

(1 Question)

  • Q1. DB questions, design patterns, few architectural questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Stick to the basics and be concrete on concepts

I applied via Approached by Company and was interviewed in Jul 2018. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. As I was interviewed for dotnet developer so my intertview started with OOPS Fundamentals like Abstraction,Encapsulation, Inhertiance, and Polymorphism.

Interview Preparation Tips

General Tips: My interview experience was very smooth.
Went in morning and by Afternoon I was selected for the role.
Within 1 week got offer letter.

Always show your confidence while answering.
Explain all the questions with some real-life example(specially in case of oops principles).
Give as many interviews as possible as that's the best learning.
Skills: Communication, Problem Solving
Duration: <1 week

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 Approached by Company and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - System test 

(1 Question)

  • Q1. Advantage and disadvantage of framework.
  • Ans. 

    Frameworks provide structure and pre-built components for software development, but can also limit flexibility and require learning curve.

    • Advantage: Provides structure and pre-built components for faster development

    • Advantage: Can improve code quality and maintainability

    • Disadvantage: Can limit flexibility and customization

    • Disadvantage: Requires learning curve and potential dependency issues

    • Example: ReactJS provides a fr...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. What is Oops? Advantage and disadvantage
  • Ans. 

    Oops stands for Object-Oriented Programming. It is a programming paradigm that uses objects to represent real-world entities.

    • Advantages: code reusability, modularity, encapsulation, inheritance, polymorphism

    • Disadvantages: complexity, steep learning curve, performance overhead

    • Example: creating a class 'Car' with properties like 'make', 'model', and 'year', and methods like 'start_engine' and 'stop_engine'

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics in server side and client side coding

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
2-4 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Jul 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. 1 Coding ques, Java, Spring Boot
Round 2 - Technical 

(1 Question)

  • Q1. System Design, LLD
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Sep 2022. There were 3 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 tips
Round 2 - Technical 

(2 Questions)

  • Q1. Simple C++ questions
  • Q2. Simple C++ Answers
Round 3 - Technical 

(3 Questions)

  • Q1. Simple C++ questions were asked
  • Q2. Simple Questions
  • Q3. Simple Question
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Coding test with 2 questions

Round 2 - Technical 

(1 Question)

  • Q1. System Design with LLD implementation
  • Ans. 

    System design involves creating a high-level design of a software system, followed by implementing the detailed low-level design.

    • Start by understanding the requirements and constraints of the system

    • Create a high-level design that outlines the components and interactions of the system

    • Implement the detailed low-level design, considering factors like scalability, performance, and maintainability

    • Use tools like UML diagrams...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. System Design with HLD
  • Ans. 

    System Design with HLD involves designing the high-level architecture of a software system.

    • Understand the requirements and constraints of the system

    • Identify the components and their interactions

    • Consider scalability, reliability, and performance

    • Use design patterns and best practices

    • Create diagrams like UML or flowcharts to visualize the design

  • Answered by AI

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Aug 2023. There were 2 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 tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. What you do when your wifi is not connected with other device and you didn't get password
  • Ans. 

    Try to troubleshoot the wifi connection issue by checking settings, restarting devices, and seeking help from IT support.

    • Check if the wifi is turned on and the correct network is selected

    • Restart the wifi router and the device

    • Contact IT support for assistance in retrieving the password

  • Answered by AI
  • Q2. Find maximum value given an array with numbers and you can jump to any number and the value is jump length multiplied by value of location
  • Ans. 

    Iterate through array, calculate value at each index, keep track of maximum value

    • Iterate through the array and calculate the value at each index by multiplying jump length with value of location

    • Keep track of the maximum value encountered during the iteration

    • Return the maximum value found

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Say answer in easy way of thinkly and earn coins

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Jul 2022. There were 3 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 tips
Round 2 - Coding Test 

Write a program to solve a challenging programming and algorithm problem.

Round 3 - One-on-one 

(2 Questions)

  • Q1. Write a program to solve a challenging programming and algorithm problem.
  • Ans. 

    Program to find the maximum subarray sum using Kadane's algorithm

    • Initialize max_so_far and max_ending_here to 0

    • Iterate through the array and update max_ending_here with the maximum of current element or current element + max_ending_here

    • Update max_so_far with the maximum of max_so_far and max_ending_here

  • Answered by AI
  • Q2. Write a program to solve a second challenging programming and algorithm problem.
  • Ans. 

    Implement a program to find the longest common subsequence of two strings.

    • Use dynamic programming to solve this problem efficiently.

    • Create a 2D array to store the lengths of longest common subsequences of substrings.

    • Trace back the array to reconstruct the longest common subsequence.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn about programming, data structure, algorithms and design.

Skills evaluated in this interview

Zendesk Interview FAQs

How many rounds are there in Zendesk Senior Software Engineer interview?
Zendesk interview process usually has 3 rounds. The most common rounds in the Zendesk interview process are Technical and HR.
How to prepare for Zendesk Senior Software Engineer 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 Zendesk. The most common topics and skills that interviewers at Zendesk expect are Customer Experience Management, Customer Service, Javascript, MySQL and Automation Testing.
What are the top questions asked in Zendesk Senior Software Engineer interview?

Some of the top questions asked at the Zendesk Senior Software Engineer interview -

  1. Given a string with parenthesis, return if the parenthesis are balanced or n...read more
  2. Design an login/register authentication syst...read more
  3. Culture fit questi...read more

Tell us how to improve this page.

Zendesk Senior Software Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Zendesk Senior Software Engineer Salary
based on 4 salaries
₹25.5 L/yr - ₹51 L/yr
122% more than the average Senior Software Engineer Salary in India
View more details

Zendesk Senior Software Engineer Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

2.0

Skill development

5.0

Work-life balance

5.0

Salary

4.0

Job security

5.0

Company culture

4.0

Promotions

2.0

Work satisfaction

Explore 1 Review and Rating
Senior Software Engineer - Backend

Bangalore / Bengaluru

7-9 Yrs

Not Disclosed

Senior Software Engineer, Golang

Bangalore / Bengaluru

5-7 Yrs

Not Disclosed

Senior Software Engineer (Frontend)

Bangalore / Bengaluru

6-8 Yrs

Not Disclosed

Explore more jobs
Consultant
4 salaries
unlock blur

₹12.5 L/yr - ₹12.5 L/yr

Senior Software Engineer
4 salaries
unlock blur

₹25.5 L/yr - ₹51 L/yr

Strategic Account Manager
3 salaries
unlock blur

₹70 L/yr - ₹70 L/yr

Solution Consultant
3 salaries
unlock blur

₹22 L/yr - ₹34 L/yr

Devops Engineer
3 salaries
unlock blur

₹20 L/yr - ₹31 L/yr

Explore more salaries
Compare Zendesk with

Oracle

3.7
Compare

Amdocs

3.7
Compare

Automatic Data Processing (ADP)

4.0
Compare

24/7 Customer

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