Upload Button Icon Add office photos

Adobe

Compare button icon Compare button icon Compare

Filter interviews by

Adobe Lead Software Engineer Interview Questions and Answers

Updated 21 Oct 2024

13 Interview questions

A Lead Software Engineer was asked 8mo ago
Q. Describe your process for debugging a bug.
Ans. 

Debugging a bug process involves identifying, isolating, and fixing issues in software code.

  • Identify the bug by reproducing the issue and analyzing error messages.

  • Isolate the bug by narrowing down the code where the issue occurs.

  • Fix the bug by making necessary code changes and testing the solution.

  • Verify the fix by retesting the software to ensure the bug is resolved.

A Lead Software Engineer was asked 8mo ago
Q. What features should be added to a pen to make it the best pen on the market?
Ans. 

The best pen in the market should have a comfortable grip, smooth writing experience, long-lasting ink, and a stylish design.

  • Comfortable grip for extended use

  • Smooth writing experience for effortless writing

  • Long-lasting ink to avoid frequent refills

  • Stylish design to appeal to customers

Lead Software Engineer Interview Questions Asked at Other Companies

asked in Freshworks
Q1. Square Root with Decimal Precision Problem Statement You are prov ... read more
asked in Epsilon
Q2. If we have two tables with the same schema, where one table has i ... read more
asked in Freshworks
Q3. Vertical Order Traversal Problem Statement You are given a binary ... read more
asked in Freshworks
Q4. Power Calculation Problem Statement Given a number x and an expon ... read more
asked in Freshworks
Q5. Longest Unique Substring Problem Statement Given a string input o ... read more
A Lead Software Engineer was asked 8mo ago
Q. Explain a test case that you automated in your previous role, including a demonstration on a website and a dry run.
Ans. 

Automated a login functionality test case for a web application to ensure user authentication works correctly.

  • Test Case: Verify successful login with valid credentials.

  • Steps: Navigate to the login page, enter username and password, click 'Login'.

  • Expected Result: User is redirected to the dashboard page.

  • Tools Used: Selenium WebDriver for automation.

  • Validation: Check for the presence of a logout button on the dashbo...

A Lead Software Engineer was asked 8mo ago
Q. Explain your experience with automation frameworks.
Ans. 

An automation framework streamlines testing processes, enhancing efficiency and consistency in software development.

  • Types of frameworks: Linear, Modular, Data-driven, Keyword-driven, and Hybrid frameworks.

  • Example: A Data-driven framework allows testing with multiple data sets, improving test coverage.

  • Integration with CI/CD tools like Jenkins for automated testing during deployment.

  • Use of libraries like Selenium fo...

A Lead Software Engineer was asked 8mo ago
Q. Provide at least 50 test cases for testing attachments.
Ans. 

Comprehensive test cases for validating file attachments in software applications.

  • Test attachment upload with valid file types (e.g., .jpg, .pdf).

  • Test attachment upload with invalid file types (e.g., .exe, .bat).

  • Test maximum file size limit (e.g., 10MB).

  • Test minimum file size limit (e.g., 1KB).

  • Test attachment upload with empty file.

  • Test attachment upload with special characters in file name.

  • Test attachment upload ...

A Lead Software Engineer was asked 12mo ago
Q. Given an array of positive and negative numbers, how would you find the maximum 3-digit number?
Ans. 

Find the maximum 3-digit number from an array of both negative and positive numbers.

  • Iterate through the array and keep track of the 3 largest positive numbers.

  • Iterate through the array and keep track of the 3 smallest negative numbers.

  • Compare the largest positive numbers with the smallest negative numbers to find the maximum 3-digit number.

A Lead Software Engineer was asked 12mo ago
Q. What test cases would you use for an ATM?
Ans. 

Test cases for ATM functionality including withdrawal, deposit, balance inquiry, and card insertion.

  • Test withdrawal functionality with valid and invalid amounts

  • Test deposit functionality with valid and invalid amounts

  • Test balance inquiry functionality to ensure correct balance is displayed

  • Test card insertion and removal functionality

  • Test for handling of incorrect PIN entry

Are these interview questions helpful?
A Lead Software Engineer was asked 12mo ago
Q. How can you traverse a tree without using recursion?
Ans. 

Iterative tree traversal using a stack instead of recursion

  • Use a stack to keep track of nodes to visit

  • Start with the root node and push it onto the stack

  • While the stack is not empty, pop a node, visit it, and push its children onto the stack

A Lead Software Engineer was asked 12mo ago
Q. How would you design test cases for Amazon Prime?
Ans. 

Test cases for Amazon Prime include functionality, usability, and performance checks to ensure a seamless user experience.

  • Verify user registration and login process with valid and invalid credentials.

  • Check the search functionality for movies and shows, ensuring accurate results.

  • Test the streaming quality under different network conditions (e.g., 4G, Wi-Fi).

  • Validate the subscription management features, including u...

🔥 Asked by recruiter 2 times
A Lead Software Engineer was asked 12mo ago
Q. Given the head of a singly linked list, reverse the list, and return the reversed list.
Ans. 

Reversing a linked list involves changing the direction of the pointers between nodes.

  • Iterative approach: Use three pointers (prev, current, next) to reverse links.

  • Example: For list 1 -> 2 -> 3, after reversal it becomes 3 -> 2 -> 1.

  • Recursive approach: Reverse the rest of the list and adjust pointers.

  • Example: Base case is when the list is empty or has one node.

Adobe Lead Software Engineer Interview Experiences

2 interviews found

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

I applied via Naukri.com and was interviewed before Oct 2023. There were 5 interview rounds.

Round 1 - One-on-one 

(4 Questions)

  • Q1. DSA basic questions like insertion sort
  • Q2. About automation framewaork explain
  • Ans. 

    An automation framework streamlines testing processes, enhancing efficiency and consistency in software development.

    • Types of frameworks: Linear, Modular, Data-driven, Keyword-driven, and Hybrid frameworks.

    • Example: A Data-driven framework allows testing with multiple data sets, improving test coverage.

    • Integration with CI/CD tools like Jenkins for automated testing during deployment.

    • Use of libraries like Selenium for web...

  • Answered by AI
  • Q3. Test case on testing attachment. Min 50 test case needed.
  • Ans. 

    Comprehensive test cases for validating file attachments in software applications.

    • Test attachment upload with valid file types (e.g., .jpg, .pdf).

    • Test attachment upload with invalid file types (e.g., .exe, .bat).

    • Test maximum file size limit (e.g., 10MB).

    • Test minimum file size limit (e.g., 1KB).

    • Test attachment upload with empty file.

    • Test attachment upload with special characters in file name.

    • Test attachment upload with ...

  • Answered by AI
  • Q4. Debug a bug process.
  • Ans. 

    Debugging a bug process involves identifying, isolating, and fixing issues in software code.

    • Identify the bug by reproducing the issue and analyzing error messages.

    • Isolate the bug by narrowing down the code where the issue occurs.

    • Fix the bug by making necessary code changes and testing the solution.

    • Verify the fix by retesting the software to ensure the bug is resolved.

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

(3 Questions)

  • Q1. Any recussive program and explain it.
  • Ans. 

    A recursive program is a function that calls itself within its own code.

    • Recursion is a technique where a function calls itself to solve smaller instances of the same problem.

    • It involves breaking down a problem into smaller subproblems until a base case is reached.

    • Examples of recursive programs include factorial calculation, Fibonacci sequence generation, and tree traversal algorithms.

  • Answered by AI
  • Q2. Explain AVL and BST tree.
  • Ans. 

    AVL and BST trees are types of binary search trees, with AVL trees being self-balancing.

    • BST (Binary Search Tree) is a type of binary tree where each node has at most two children, with left child < parent < right child.

    • AVL (Adelson-Velsky and Landis) tree is a self-balancing binary search tree where the heights of the two child subtrees of any node differ by at most one.

    • AVL trees maintain O(log n) time complexity for i...

  • Answered by AI
  • Q3. Puzzles like find 3 hat problem guess the color of hat.
Round 3 - One-on-one 

(4 Questions)

  • Q1. What all feature should be added in pen to make it best pen in market.
  • Ans. 

    The best pen in the market should have a comfortable grip, smooth writing experience, long-lasting ink, and a stylish design.

    • Comfortable grip for extended use

    • Smooth writing experience for effortless writing

    • Long-lasting ink to avoid frequent refills

    • Stylish design to appeal to customers

  • Answered by AI
  • Q2. If you want to gift your father a shirt what type of shirt will you choose why and why not.
  • Ans. 

    I would choose a classic, comfortable cotton shirt for my father, reflecting his style and ensuring he feels good wearing it.

    • Material: A breathable cotton shirt for comfort, especially in warmer weather.

    • Style: A classic button-down design that can be dressed up or down.

    • Color: A neutral color like navy or light blue that complements his wardrobe.

    • Fit: A tailored fit to ensure it looks sharp and feels comfortable.

    • Occasion...

  • Answered by AI
  • Q3. Algo to solve a crossword in best time.
  • Q4. About selenium and protractor.
Round 4 - One-on-one 

(3 Questions)

  • Q1. About previous role.
  • Q2. Why you want to switch job.
  • Ans. 

    Seeking new challenges and opportunities for growth in a dynamic environment.

    • Looking for new challenges to continue learning and growing professionally.

    • Interested in working on cutting-edge technologies and projects.

    • Seeking a more collaborative and innovative work culture.

    • Want to explore different industry domains and expand my skill set.

    • Hoping to take on a leadership role and make a bigger impact.

  • Answered by AI
  • Q3. Explain one test case that you automated in previous role. Need to demo it on website and dry run it.
  • Ans. 

    Automated a login functionality test case for a web application to ensure user authentication works correctly.

    • Test Case: Verify successful login with valid credentials.

    • Steps: Navigate to the login page, enter username and password, click 'Login'.

    • Expected Result: User is redirected to the dashboard page.

    • Tools Used: Selenium WebDriver for automation.

    • Validation: Check for the presence of a logout button on the dashboard.

  • Answered by AI
Round 5 - HR 

(1 Question)

  • Q1. Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for puzzle and testcase. Coding questions are 2 on scale of 1 to 5.

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed before Jun 2023. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Reverse linked list
  • Ans. 

    Reversing a linked list involves changing the direction of the pointers between nodes.

    • Iterative approach: Use three pointers (prev, current, next) to reverse links.

    • Example: For list 1 -> 2 -> 3, after reversal it becomes 3 -> 2 -> 1.

    • Recursive approach: Reverse the rest of the list and adjust pointers.

    • Example: Base case is when the list is empty or has one node.

  • Answered by AI
  • Q2. Tree traversal without recursion
  • Ans. 

    Iterative tree traversal using a stack instead of recursion

    • Use a stack to keep track of nodes to visit

    • Start with the root node and push it onto the stack

    • While the stack is not empty, pop a node, visit it, and push its children onto the stack

  • Answered by AI
  • Q3. Test case on Amazon prime
  • Ans. 

    Test cases for Amazon Prime include functionality, usability, and performance checks to ensure a seamless user experience.

    • Verify user registration and login process with valid and invalid credentials.

    • Check the search functionality for movies and shows, ensuring accurate results.

    • Test the streaming quality under different network conditions (e.g., 4G, Wi-Fi).

    • Validate the subscription management features, including upgrad...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Find max 3 digits from an array consist of both negative and positive number
  • Ans. 

    Find the maximum 3-digit number from an array of both negative and positive numbers.

    • Iterate through the array and keep track of the 3 largest positive numbers.

    • Iterate through the array and keep track of the 3 smallest negative numbers.

    • Compare the largest positive numbers with the smallest negative numbers to find the maximum 3-digit number.

  • Answered by AI
  • Q2. Test cases on ATM
  • Ans. 

    Test cases for ATM functionality including withdrawal, deposit, balance inquiry, and card insertion.

    • Test withdrawal functionality with valid and invalid amounts

    • Test deposit functionality with valid and invalid amounts

    • Test balance inquiry functionality to ensure correct balance is displayed

    • Test card insertion and removal functionality

    • Test for handling of incorrect PIN entry

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

(2 Questions)

  • Q1. Egg drop puzzle
  • Q2. Design product delivery
  • Ans. 

    Designing product delivery involves creating a seamless process for getting the product to the customer efficiently.

    • Identify key stakeholders involved in the delivery process (e.g. suppliers, logistics partners, customers)

    • Map out the delivery journey from order placement to final delivery

    • Implement tracking and monitoring systems to ensure transparency and efficiency

    • Optimize delivery routes and schedules to minimize cos...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and go through the past adobe interview questions

Skills evaluated in this interview

Top trending discussions

View All
Office Jokes
1w
an executive
CTC ≠ Confidence Transfer Credit
Ab toh aisa lagta hai, chillar jaise salary ke liye main kaju katli ban ke jaa rahi hoon. Samajh nahi aata, main zyada ready ho ke jaa rahi hoon ya ye mujhe kam pay kar rahe hain? #CorporateLife #OfficeJokes #UnderpaidButWellDressed
FeedCard Image
Got a question about Adobe?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Company Website and was interviewed before Oct 2019. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. 1. Core Java - OOPS features, Abstract classes and Interface, Inner Classes, String and Object Class, Equals and HashCode methods, Runtime and Compile time exception, Method overloading and overriding, Cus...

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Clear Core java concepts firmly
2. Basic DB queries
3. Basic Unix commands

I applied via Naukri.com and was interviewed in Mar 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What is web service flow
  • Ans. 

    Web service flow is the sequence of steps involved in the communication between a client and a server over the internet.

    • Web service flow involves a client sending a request to a server

    • The server processes the request and sends a response back to the client

    • The response can be in various formats such as XML, JSON, or plain text

    • Web service flow can be synchronous or asynchronous

    • Examples of web services include RESTful API...

  • Answered by AI
  • Q2. How to check ports in Solaris or linux machine
  • Ans. 

    To check ports in Solaris or Linux machine, use the netstat command.

    • Open the terminal and type 'netstat -an' to display all open ports.

    • Use 'netstat -an | grep ' to check if a specific port is open.

    • To check listening ports, use 'netstat -an | grep LISTEN'.

    • For Solaris, use 'netstat -an | grep .' instead of '| grep '.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Total pathetic experience. What job description is given to you, doesn't matters because you won't be asked for that. Your resume will get shortlisted and then it doesn't matter what u have covered up in your career path, because interview rounds will consist of questions out of your scope. Your resume doesn't needs to be shortlisted at first end if it doesn't suit thier needs. HR people, they are on another level. You share your resume to them, and they will never ever reply back to you. Not a single HR, but it seems everyone has same culture. You keep trying to connect them for support. But they will just keep finding smarter ways to avoid.

Skills evaluated in this interview

I appeared for an interview before Sep 2020.

Round 1 - Face to Face 

(1 Question)

Round duration - 50 minutes
Round difficulty - Easy

This was a Data Structural round.

  • Q1. 

    Distinct Islands Problem Statement

    Given a two-dimensional array/list consisting of integers 0s and 1s, where 1 represents land and 0 represents water, determine the number of distinct islands. A group of...

  • Ans. 

    Count the number of distinct islands in a 2D array of 0s and 1s.

    • Identify islands by performing depth-first search (DFS) on the grid

    • Use a set to store the shape of each island and check for duplicates

    • Consider translations to determine distinct islands

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 50 minutes
Round difficulty - Easy

This was a Data Structural round.

  • Q1. 

    Word Wrap Problem Statement

    You are tasked with arranging 'N' words of varying lengths such that each line contains at most 'M' characters, with each word separated by a space. The challenge is to minimiz...

  • Ans. 

    The goal is to minimize the total cost of arranging 'N' words on each line with a maximum character limit 'M'.

    • Calculate the cost of each line as the cube of extra space characters needed to reach 'M'.

    • Minimize the total cost by arranging words to fit within the character limit on each line.

    • Ensure each word appears fully on one line without breaking across lines.

  • Answered by AI
Round 3 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

This was a System Design round.

  • Q1. Can you design a system similar to Red Bus that can handle bookings and onboard both vendors and customers to the platform?
  • Ans. 

    Design a system similar to Red Bus for handling bookings and onboarding vendors and customers.

    • Implement a user-friendly interface for customers to search and book tickets

    • Create a vendor portal for vendors to manage their offerings and availability

    • Include payment gateway integration for secure transactions

    • Develop a robust backend system for managing bookings, cancellations, and refunds

    • Utilize a database to store user in...

  • Answered by AI
Round 4 - Face to Face 

Round duration - 50 minutes
Round difficulty - Easy

This was a System Design round

Round 5 - Face to Face 

Round duration - 50 minutes
Round difficulty - Easy

This was an HR round.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Indian Institute of Technology Roorkee. Microsoft interview preparation:Topics to prepare for the interview - Graphs, Dynamic Programming, Arrays, LinkedList, stringsTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Practice as much as you can.
Tip 2 : Prepare for company, not in general.
Tip 3 : Your past work should be objective and your contribution should be very clear

Application resume tips for other job seekers

Tip 1 : Keep only relevant things for the job you are applying.
Tip 2 : Minimal data with measurable contribution and effect.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Data Structures, Algorithms, System designing, Azure

Interview Questionnaire 

1 Question

  • Q1. C++ Program to reverse a string
  • Ans. 

    C++ program to reverse a string

    • Use a loop to iterate through the string

    • Swap the characters at the beginning and end of the string

    • Continue swapping until the middle of the string is reached

  • Answered by AI

Skills evaluated in this interview

Are these interview questions helpful?

I applied via Referral and was interviewed before Apr 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Mostly Basic concepts of javascript, html and css

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure to prepare basic concepts properly. Don't hurry to highlight advance topics.
Answer questions only if you are sure about the correct answer.

I applied via Monster and was interviewed before Apr 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Basic java

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared

I appeared for an interview in May 2017.

Interview Questionnaire 

17 Questions

  • Q1. What is angular js
  • Ans. 

    AngularJS is a JavaScript framework for building dynamic web applications.

    • AngularJS is a client-side MVC framework.

    • It allows developers to build single-page applications.

    • It extends HTML with new attributes and tags.

    • AngularJS uses two-way data binding to automatically synchronize data between the model and the view.

    • It provides dependency injection and modularization features.

    • Some popular examples of websites built with ...

  • Answered by AI
  • Q2. What is directive
  • Ans. 

    A directive is a programming construct that provides instructions to a compiler or interpreter.

    • Directives are used to control the behavior of a program or to provide additional information to the compiler or interpreter.

    • They are typically written as special comments or statements in the code.

    • Examples of directives include #include in C/C++ to include header files, #pragma to control compiler-specific behavior, and #def...

  • Answered by AI
  • Q3. What is factory
  • Ans. 

    A factory is a design pattern that provides an interface for creating objects of a certain class.

    • A factory encapsulates the object creation logic and hides it from the client.

    • It allows the client to create objects without knowing the specific class or implementation details.

    • Factories can be used to create different types of objects based on certain conditions or parameters.

    • They promote loose coupling and flexibility in...

  • Answered by AI
  • Q4. What is services
  • Ans. 

    Services are software components that perform specific tasks or provide functionality to other software applications.

    • Services are self-contained and independent modules that can be accessed by other software components.

    • They can be used to handle business logic, data processing, communication with external systems, etc.

    • Examples of services include web services, microservices, RESTful APIs, and cloud services.

    • Services ca...

  • Answered by AI
  • Q5. What is the difference between factory and service
  • Ans. 

    A factory is responsible for creating and managing objects, while a service is responsible for providing specific functionality or performing tasks.

    • A factory is used to create and initialize objects, often based on certain parameters or configurations.

    • A service is a component that provides specific functionality or performs tasks for other components or systems.

    • Factories are commonly used in object-oriented programming...

  • Answered by AI
  • Q6. Write a program to sort
  • Ans. 

    A program to sort an array of strings.

    • Use a sorting algorithm like bubble sort, insertion sort, or quicksort.

    • Compare strings using a comparison function.

    • Implement the sorting algorithm in a function that takes the array as input and modifies it in place.

  • Answered by AI
  • Q7. Write a program to display words separated by space
  • Ans. 

    This program displays words separated by spaces.

    • Use an array of strings to store the words.

    • Iterate through the array and print each word followed by a space.

    • Exclude the space after the last word.

  • Answered by AI
  • Q8. What is provider
  • Ans. 

    A provider is a software component or service that supplies data, functionality, or resources to other software applications.

    • A provider is responsible for delivering data, services, or resources to other software components or applications.

    • Providers can be APIs, libraries, frameworks, or any other software component that offers functionality to other software.

    • Examples of providers include database management systems, c...

  • Answered by AI
  • Q9. What is$watch and $ digest
  • Ans. 

    The $watch and $digest are two important concepts in AngularJS for data binding and updating the view.

    • $watch is a function in AngularJS that allows you to watch for changes in a specific variable or expression.

    • $digest is a function in AngularJS that triggers a process called the digest cycle, which updates the bindings and synchronizes the model and view.

    • The $watch function takes two parameters: the variable or express...

  • Answered by AI
  • Q10. What is ng-repeat
  • Ans. 

    ng-repeat is a directive in AngularJS used to repeat HTML elements for each item in an array.

    • ng-repeat is used to create a loop in AngularJS

    • It is commonly used to display a list of items from an array

    • The directive is placed on an HTML element and uses the 'item in array' syntax

    • It can also be used with filters and sorting

    • Example:

    • {{ item }}
  • Answered by AI
  • Q11. How to get value from ng-getValue=""
  • Ans. 

    ng-getValue is not a standard attribute in Angular. It may be a custom directive or a typo.

    • Check if ng-getValue is a custom directive or attribute in your Angular application

    • Verify if it is being used correctly in the HTML template

    • If it is a typo, correct it to the appropriate attribute or directive

  • Answered by AI
  • Q12. How do you develop CSS without using bootstrap
  • Ans. 

    Developing CSS without using bootstrap involves writing custom CSS code to style web pages.

    • Write CSS code to define styles for HTML elements

    • Use CSS selectors to target specific elements

    • Apply CSS properties to modify the appearance of elements

    • Create media queries for responsive design

    • Implement CSS animations and transitions

    • Optimize CSS code for performance

  • Answered by AI
  • Q13. What is CDN
  • Ans. 

    CDN stands for Content Delivery Network. It is a distributed network of servers that deliver web content to users based on their geographic location.

    • CDN improves website performance by reducing latency and increasing page load speed.

    • CDN caches content in multiple locations, allowing users to access it from a server closest to them.

    • CDN can handle high traffic loads and distribute it across multiple servers.

    • Popular CDN p...

  • Answered by AI
  • Q14. How do you display different color in atable using css for odd even rows
  • Ans. 

    To display different colors in a table using CSS for odd and even rows, you can use the :nth-child() selector.

    • Use the :nth-child(odd) selector to target odd rows and apply a specific color using the background-color property.

    • Use the :nth-child(even) selector to target even rows and apply a different color using the background-color property.

    • For example, you can use CSS code like this: tr:nth-child(odd) { background-c...

  • Answered by AI
  • Q15. How do you develop CSS for different devices
  • Ans. 

    To develop CSS for different devices, use media queries, responsive design principles, and testing on various devices.

    • Use media queries to apply different CSS styles based on the device's screen size

    • Follow responsive design principles to ensure the layout adapts to different devices

    • Test the CSS on various devices to ensure compatibility and responsiveness

  • Answered by AI
  • Q16. What is $ rootscope
  • Ans. 

    The $rootscope is a service in AngularJS that provides a global scope for sharing data between controllers.

    • It is a part of the AngularJS framework.

    • It is used to share data between controllers.

    • It is a singleton object accessible throughout the application.

    • It can be used to broadcast and listen to events.

  • Answered by AI
  • Q17. What is jquery
  • Ans. 

    jQuery is a fast, small, and feature-rich JavaScript library that simplifies HTML document traversal and manipulation, event handling, and animation.

    • jQuery is a JavaScript library.

    • It simplifies HTML document traversal and manipulation.

    • It provides easy event handling and animation.

    • jQuery is fast, small, and feature-rich.

  • Answered by AI

Interview Preparation Tips

Skills: angular JS, Java Programming, css, Javascript

Skills evaluated in this interview

Adobe Interview FAQs

How many rounds are there in Adobe Lead Software Engineer interview?
Adobe interview process usually has 4 rounds. The most common rounds in the Adobe interview process are One-on-one Round, Technical and HR.
What are the top questions asked in Adobe Lead Software Engineer interview?

Some of the top questions asked at the Adobe Lead Software Engineer interview -

  1. What all feature should be added in pen to make it best pen in mark...read more
  2. Explain one test case that you automated in previous role. Need to demo it on w...read more
  3. Find max 3 digits from an array consist of both negative and positive num...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.5/5

based on 2 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

Oracle Interview Questions
3.7
 • 892 Interviews
Zoho Interview Questions
4.3
 • 535 Interviews
Amdocs Interview Questions
3.7
 • 532 Interviews
SAP Interview Questions
4.2
 • 291 Interviews
Salesforce Interview Questions
4.0
 • 234 Interviews
24/7 Customer Interview Questions
3.5
 • 179 Interviews
Dassault Systemes Interview Questions
3.9
 • 176 Interviews
View all
Adobe Lead Software Engineer Salary
based on 188 salaries
₹14 L/yr - ₹45 L/yr
11% more than the average Lead Software Engineer Salary in India
View more details

Adobe Lead Software Engineer Reviews and Ratings

based on 17 reviews

4.3/5

Rating in categories

4.3

Skill development

4.5

Work-life balance

3.9

Salary

4.2

Job security

4.7

Company culture

3.9

Promotions

4.1

Work satisfaction

Explore 17 Reviews and Ratings
Computer Scientist
490 salaries
unlock blur

₹22.7 L/yr - ₹70 L/yr

Technical Consultant
311 salaries
unlock blur

₹7.5 L/yr - ₹28.5 L/yr

Computer Scientist 2
293 salaries
unlock blur

₹28 L/yr - ₹102 L/yr

Software Engineer
277 salaries
unlock blur

₹8.1 L/yr - ₹30 L/yr

Senior Software Engineer
248 salaries
unlock blur

₹12 L/yr - ₹44.1 L/yr

Explore more salaries
Compare Adobe with

Salesforce

4.0
Compare

Oracle

3.7
Compare

Microsoft Corporation

3.9
Compare

Amazon

4.0
Compare
write
Share an Interview