Upload Button Icon Add office photos

Adobe

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Adobe Customer Service Representative Interview Questions and Answers

Updated 13 Apr 2024

Adobe Customer Service Representative Interview Experiences

1 interview found

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

I applied via Naukri.com and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. He asked me to give a introduction
  • Q2. He asked me to tell something about my last job

Interview Preparation Tips

Interview preparation tips for other job seekers - Round 1 was hr round then vna round took place after that final round , overall experience was quite good

Interview questions from similar companies

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 

Easy problem on java

Round 3 - One-on-one 

(1 Question)

  • Q1. Technical discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on the CV details

I applied via LinkedIn and was interviewed in Sep 2020. There was 1 interview round.

Interview Questionnaire 

6 Questions

  • Q1. Data structure and C++
  • Q2. Reverse Linked list
  • Q3. Multi threaded queue
  • Q4. Design pattern
  • Q5. Basic C++ concepts
  • Q6. Puzzles

Interview Preparation Tips

Interview preparation tips for other job seekers - Solve data structure problems
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant

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 - Technical 

(2 Questions)

  • Q1. Threading: Write and use a mutex?
  • Ans. 

    A mutex is a synchronization primitive that ensures only one thread can access a resource at a time.

    • Create a mutex object using the appropriate library or language-specific function.

    • Lock the mutex before accessing the shared resource to prevent other threads from accessing it.

    • Unlock the mutex after finishing the operation on the shared resource to allow other threads to access it.

    • Example: pthread_mutex_t mutex; pthread...

  • Answered by AI
  • Q2. Find the memory leak in a given set of code.
  • Ans. 

    Identify memory leak in code

    • Check for any dynamically allocated memory that is not being freed

    • Look for any infinite loops or recursive functions that consume memory

    • Use memory profiling tools like Valgrind to detect leaks

    • Check for any global variables that are not properly managed

  • Answered by AI

Skills evaluated in this interview

I applied via Company Website and was interviewed in May 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

Logical reasoning And aptitude test

Round 2 - Coding Test 

C++, python and Java programming

Interview Preparation Tips

Topics to prepare for Gen Software Engineer interview:
  • C++
  • Python
Interview preparation tips for other job seekers - I am interested for this company opportunity for giving me and I am so happy and giving me for work from home job
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. What is polymorphism?
  • Ans. 

    Polymorphism is the ability of an object to take on many forms. It allows objects of different classes to be treated as the same type.

    • Polymorphism is a fundamental concept in object-oriented programming.

    • It enables code reusability and flexibility.

    • Polymorphism can be achieved through method overriding and method overloading.

    • Example: A parent class Animal can have multiple child classes like Dog, Cat, and Bird. They can ...

  • Answered by AI
  • Q2. What is static polymorphism?
  • Ans. 

    Static polymorphism refers to the ability of a programming language to select the appropriate function or method at compile-time.

    • Static polymorphism is achieved through function overloading or operator overloading.

    • It allows different functions with the same name but different parameters to be called based on the arguments provided.

    • The selection of the appropriate function is determined at compile-time, based on the sta...

  • Answered by AI
  • Q3. What is dynamic polymorphism?
  • Ans. 

    Dynamic polymorphism is the ability of an object to take on many forms based on the context it is used.

    • It allows objects of different classes to be treated as objects of a common superclass.

    • It is achieved through method overriding and virtual functions.

    • Example: A superclass 'Animal' with subclasses 'Dog' and 'Cat'. Both can be treated as 'Animal' objects.

  • Answered by AI

Skills evaluated in this interview

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

2 hours of duration and medium level leetcode questions

Round 2 - Technical 

(2 Questions)

  • Q1. What do you mean by os?
  • Ans. 

    OS stands for Operating System. It is a software that manages computer hardware and provides services for computer programs.

    • OS is the software that acts as an intermediary between computer hardware and user applications.

    • It manages computer resources such as memory, processors, devices, and file systems.

    • Examples of popular operating systems include Windows, macOS, Linux, and Android.

  • Answered by AI
  • Q2. How can deadlock be avoided?
  • Ans. 

    Deadlock can be avoided by implementing proper resource allocation strategies and using techniques like deadlock prevention, avoidance, detection, and recovery.

    • Implement proper resource allocation strategies such as resource ordering, wait-die, wound-wait, etc.

    • Use techniques like deadlock prevention by ensuring that the system never enters a deadlock state, avoidance by ensuring that the system does not enter an unsafe...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident while answering.

Skills evaluated in this interview

Round 1 - One-on-one 

(1 Question)

  • Q1. Advantages of Autodesk products over other products.
  • Ans. 

    Autodesk products offer advanced features, user-friendly interface, and seamless integration.

    • Autodesk products have advanced features that allow for more complex designs and simulations.

    • The user interface is designed to be intuitive and easy to use, making it accessible to both beginners and experts.

    • Autodesk products seamlessly integrate with other software and tools, allowing for a more efficient workflow.

    • For example,...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through the software basics and try to master as much Autodesk software you can !!
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - Technical 

(3 Questions)

  • Q1. Resume review + questionnaire on skill set mentioned in resume
  • Q2. Python Data Types and main differences
  • Ans. 

    Python data types include int, float, str, list, tuple, dict, set. Main differences are mutability, ordering, and usage.

    • Integers (int) are whole numbers, floats are numbers with decimal points.

    • Strings (str) are sequences of characters enclosed in quotes.

    • Lists are ordered, mutable collections of items. Tuples are ordered, immutable collections.

    • Dictionaries (dict) are key-value pairs. Sets are unordered collections of un...

  • Answered by AI
  • Q3. API managements and CRUD
Round 3 - Coding Test 

Questions on automations, python and APIs

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Sep 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 Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. Difference between java and python?
  • Ans. 

    Java is a statically typed language with a strong emphasis on object-oriented programming, while Python is dynamically typed with a focus on simplicity and readability.

    • Java is statically typed, while Python is dynamically typed.

    • Java is strongly typed, while Python is weakly typed.

    • Java is compiled to bytecode and runs on the Java Virtual Machine (JVM), while Python is interpreted at runtime.

    • Java has a strong emphasis on...

  • Answered by AI
  • Q2. Memory allocation java and python ?

Skills evaluated in this interview

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

Adobe Interview FAQs

How many rounds are there in Adobe Customer Service Representative interview?
Adobe interview process usually has 1 rounds. The most common rounds in the Adobe interview process are HR.

Recently Viewed

INTERVIEWS

Steel Strips Wheels

No Interviews

INTERVIEWS

Salesforce

No Interviews

INTERVIEWS

Revature

No Interviews

SALARIES

EPE Administration International

No Salaries

COMPANY BENEFITS

EPE Administration International

No Benefits

LIST OF COMPANIES

EPE Administration International

Overview

INTERVIEWS

NCR Voyix

No Interviews

SALARIES

Indiamart Intermesh

INTERVIEWS

Swiggy

No Interviews

INTERVIEWS

Red Hat

No Interviews

Tell us how to improve this page.

Adobe Customer Service Representative Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

IBM Interview Questions
4.0
 • 2.3k Interviews
Oracle Interview Questions
3.7
 • 846 Interviews
Amdocs Interview Questions
3.7
 • 513 Interviews
Zoho Interview Questions
4.3
 • 505 Interviews
SAP Interview Questions
4.2
 • 283 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
Computer Scientist
454 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Consultant
278 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
253 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Computer Scientist 2
239 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Technical Consultant
204 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Adobe with

Salesforce

4.0
Compare

Oracle

3.7
Compare

Microsoft Corporation

4.0
Compare

Amazon

4.1
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent