Upload Button Icon Add office photos

Filter interviews by

DocuSign Senior Technical Lead Interview Questions and Answers

Updated 28 Sep 2023

DocuSign Senior Technical Lead Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Sep 2022. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basics of OOPS, Collection , Spring frameword
  • Q2. Reverse string problem
  • Ans. 

    Reverse a given array of strings

    • Iterate through each string in the array

    • Reverse each string using built-in functions or manual reversal

    • Store the reversed strings back in the array

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Project Architecture and components of MS
  • Ans. 

    MS Project architecture includes components like Project Server, Project Web App, Project Professional, and Project Online.

    • Project Server is the central component that stores project data and manages access

    • Project Web App is the web-based interface for accessing and managing projects

    • Project Professional is the desktop application for creating and editing project plans

    • Project Online is the cloud-based version of Project

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just brush up basics and easy level coding problems.

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basic embedded c and autosar questions
Round 2 - One-on-one 

(1 Question)

  • Q1. Techno mangerial round. Roles and responsibilities
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Explain a complex .net core project you have worked on
Round 2 - One-on-one 

(1 Question)

  • Q1. How have you evolved as a technical lead over the course of your career
Round 3 - HR 

(1 Question)

  • Q1. What are your long term career goals
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Versant based test
Round 2 - One-on-one 

(1 Question)

  • Q1. General questions about project

Interview Preparation Tips

Interview preparation tips for other job seekers - Go with confidence
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Job Portal and was interviewed in May 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 - Technical 

(2 Questions)

  • Q1. Tell me about your latest project you have worked on
  • Q2. Which software development process you have worked on
  • Ans. 

    I have worked on the Agile software development process.

    • Utilized Scrum framework for project management

    • Implemented iterative development and continuous feedback loops

    • Collaborated closely with cross-functional teams

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
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 tips
Round 2 - Technical 

(2 Questions)

  • Q1. It was in depth technical round about Microsoft Products. What is the Market Strategy for Azure?
  • Q2. Whar are the two main roles in cloud deployment?
  • Ans. 

    The two main roles in cloud deployment are cloud architect and cloud engineer.

    • Cloud architect designs the overall structure of the cloud environment.

    • Cloud engineer implements and maintains the cloud infrastructure.

    • Cloud architect focuses on high-level design decisions such as selecting the appropriate cloud services and designing the network topology.

    • Cloud engineer focuses on low-level implementation tasks such as conf...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It's very good company to work with, work culture was just amazing!

Skills evaluated in this interview

I applied via campus placement at SRM Institute of Science & Technology, Chennai and was interviewed in Oct 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. I was requested to develop some code for various issues by the interviewer, who also asked me two situation-based questions.
Round 3 - HR 

(1 Question)

  • Q1. The interviewer asked me to create the website, as well as my short and long-term objectives.

Interview Preparation Tips

Topics to prepare for Oracle Financial Services Software Technical Analyst interview:
  • Java
  • PLSQL
  • C
Interview preparation tips for other job seekers - Regardless of the time, make an effort to respond to the interviewer's queries right away.

I applied via Indeed and was interviewed in Oct 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. Sql related queries were asked
  • Q2. Banking domain queries were asked

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident with your replies to the questions asked.

I applied via Referral and was interviewed in Oct 2021. There were 4 interview rounds.

Round 1 - Aptitude Test 

1hr of aptitude test with 60 questions

Round 2 - Coding Test 

Coding of basics as my team was support and configuration

Round 3 - One-on-one 

(1 Question)

  • Q1. It was all about personal introduction and background
Round 4 - HR 

(3 Questions)

  • Q1. What is your family background?
  • Q2. Tell me about yourself.
  • Q3. Where do you see yourself in 5 years?

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep yourself little updated with company and its product. Be confident and do not show negative attitude. Then you are hired😀

I applied via Naukri.com and was interviewed in Apr 2021. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. What is a critical rendering path?
  • Ans. 

    The sequence of steps a browser takes to convert HTML, CSS, and JavaScript into a rendered page.

    • Includes parsing HTML, constructing the DOM tree, calculating styles, and executing JavaScript.

    • Optimizing the critical rendering path can improve page load times and user experience.

    • Examples of optimization techniques include minimizing render-blocking resources and using lazy loading.

    • The critical rendering path can vary dep

  • Answered by AI
  • Q2. What is a asynchronous in js means
  • Ans. 

    Asynchronous in JS means executing code without blocking the main thread.

    • Asynchronous code allows other code to run while waiting for a task to complete.

    • It is commonly used for network requests, file I/O, and other time-consuming operations.

    • Callbacks, Promises, and Async/Await are common ways to handle asynchronous code in JS.

  • Answered by AI
  • Q3. What is a class in js means? And explain its use case
  • Ans. 

    A class in JavaScript is a blueprint for creating objects with similar properties and methods.

    • Classes are used to create multiple objects with the same structure and behavior.

    • They provide a way to organize and encapsulate related data and functions.

    • Classes can have properties (variables) and methods (functions) that define their behavior.

    • Instances of a class can be created using the 'new' keyword.

    • Classes can also have ...

  • Answered by AI
  • Q4. What is a mobile first design
  • Ans. 

    Mobile first design is an approach where the design and development of a website or application starts with the mobile version.

    • Designing for smaller screens first

    • Prioritizing content and functionality for mobile users

    • Adapting the design for larger screens

    • Focusing on speed and performance

    • Examples: Instagram, Twitter, and Facebook

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay strong in the programming language you know. And speak clearly when explaining.

Skills evaluated in this interview

DocuSign Interview FAQs

How many rounds are there in DocuSign Senior Technical Lead interview?
DocuSign interview process usually has 3 rounds. The most common rounds in the DocuSign interview process are Technical and Resume Shortlist.
What are the top questions asked in DocuSign Senior Technical Lead interview?

Some of the top questions asked at the DocuSign Senior Technical Lead interview -

  1. Project Architecture and components of...read more
  2. Reverse string prob...read more
  3. Basics of OOPS, Collection , Spring framew...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 DocuSign interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.1k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
LTIMindtree Interview Questions
3.9
 • 2.7k Interviews
Amdocs Interview Questions
3.8
 • 514 Interviews
Zoho Interview Questions
4.3
 • 491 Interviews
SAP Interview Questions
4.2
 • 298 Interviews
KPIT Technologies Interview Questions
3.5
 • 281 Interviews
Salesforce Interview Questions
4.1
 • 262 Interviews
View all
Senior Software Engineer
15 salaries
unlock blur

₹30 L/yr - ₹85 L/yr

Software Engineer
5 salaries
unlock blur

₹19 L/yr - ₹50 L/yr

Lead Engineer
3 salaries
unlock blur

₹60 L/yr - ₹101 L/yr

Director
3 salaries
unlock blur

₹55 L/yr - ₹60 L/yr

Data Engineer
3 salaries
unlock blur

₹39 L/yr - ₹40.5 L/yr

Explore more salaries
Compare DocuSign with

Adobe

4.0
Compare

Salesforce

4.1
Compare

ServiceNow

4.1
Compare

Dropbox

4.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview