Passa al contenutoPassa al piè di pagina
  • Lavori
  • Aziende
  • Stipendi
  • Per le aziende

      Migliora la tua carriera

      Scopri le tue potenzialità di guadagno, trova lavori da sogno e condividi approfondimenti su lavoro e vita privata in forma anonima.

      employer cover photo
      employer logo
      employer logo

      Adobe

      Azienda coinvolta

      Circa
      Recensioni
      Stipendi e benefit
      Lavori
      Colloqui
      Colloqui
      Ricerche correlate: Recensioni su Adobe | Offerte di lavoro di Adobe | Stipendi di Adobe | Benefit di Adobe
      Colloqui di AdobeColloqui per Software Development Engineer (SDE) presso AdobeColloquio di Adobe


      Glassdoor

      • Chi siamo
      • Contattaci

      Aziende

      • Account Business gratuito
      • Spazio per le aziende
      • Blog per le aziende

      Informazioni

      • Aiuto
      • Linee guida
      • Condizioni d'uso
      • Privacy e scelte pubblicitarie
      • Non vendere né condividere le mie informazioni
      • Strumento per l'accettazione dei cookie

      Lavora con noi

      • Inserzionisti
      • Carriere
      Scarica l'app

      • Cerca:
      • Aziende
      • Lavori
      • Località

      Copyright © 2008-2026. Glassdoor LLC. "Glassdoor," "Worklife Pro," "Bowls" e il relativo logo sono marchi registrati di Glassdoor LLC.

      Aziende seguite

      Non lasciarti sfuggire opportunità e informazioni privilegiate seguendo le aziende dove vorresti lavorare.

      Ricerche di lavoro

      Ricevi suggerimenti e aggiornamenti personalizzati avviando le tue ricerche.

      Colloquio per Software Development Engineer (SDE)

      22 dic 2024
      Dipendente anonimo
      Noida
      Offerta accettata
      Esperienza positiva
      Colloquio nella media

      Candidatura

      Ho presentato la mia candidatura online. La procedura ha richiesto 4 settimane. Ho sostenuto un colloquio presso Adobe (Noida) nel mese di gen 2024

      Colloquio

      I recently interviewed at Adobe, Noida office and got the offer. I had 1-year work experience. It was a standard process comprising of an aptitude and technical test on Hackerrank. It’s the same every time. You can have a look at the test in previous archives. Screening Aptitude Test Technical Test having 13 MCQs and 7 standard coding questions. Interviews at Noida Office Round 1. The interview started with my general introduction. The interviewer wanted to know if I had in depth knowledge of what I am working on, so he asked all sorts of questions related to the technologies and why they were used and not something else. Questions Related to C, C++ – How are .h files loaded and linked with their .c files. I did not know much about it as I had experience in Java and told him the equivalent answer in Java. How to find the minimum element in a rotated array? e.g. 4 5 6 1 2 3 Gave the answer using Binary Search How to find a common node between two Linked Lists? 1→2→3→4→NULL | 5→6 Gave an answer using the difference in length of LLs and wrote the code which handled all the cases. Then he discussed Operating System Concepts, Virtual Memory, Paging, etc. Note. Make sure you write code which handles all the test cases especially the boundary ones. Round 2. The interview started with my brief introduction. This time the interview was more interested in my hobbies and passions. He asked me what do you do to keep yourself updated with the latest technology trends? After that he asked me only one question related to geometry. The question was given an isosceles right angled triangle. Find the radius of the smaller circle. I1 Solved it using basic pythagoras theorem. It was weird that he asked only one question. Round 3 This round was a tricky one. The interviewer asked me what all had been asked to me till now. I confidently said that I liked that goemetry was asked. I shouldn’t have said that… 😛 The question was given a rectangle ABCD with length l and breadth b. Now it is folded along diagonal BD. i.e. A is joined to C. Find the length of the line segment EF q2 Solved the question with his hints. Basically it involved some deductions related to imagination and pythagoras theorem. Basically AE = EC and EF = EC. After that it is simple geometry question. How do you heapify an array? What is the time complexity involved? Apparently, he was interested in the exact complexity. I told him that we always start heapifying from the last parent whose index in the array is (n-1)/2. He then asked me about how we heapify individual elements, etc. and how heap sort works. Basically, he wanted me to answer that we do not heapify elements from (n-1)/2 till n which decreases the time complexity from nlogn which I answered in the end. int a = 8; char *b = (int *) a; Where does b point to? Now this question was related to Big endian and little endian as in he wanted me to ask if the architechture is little endian or big endian. I told him I did not know about this. After this question, I told him that I am from Mechanical background and I did not know much about computer architecture. He was a little shocked and skipped the OS questions. Lucky me!!! How to know if a number is a power of 2 in O(1)? n&(n – 1)== 0?true:false Given an array of numbers all of which are repeated only one non-repeated, find the non repeated number. Gave the algorithm using XOR. Then he extended the previous question to find if two numbers are non repeated. He wanted the XOR approach again. Given two binary trees A and B. Check if B is a subtree of A. Solved using normal tree traversal. Find the kth smallest element in an unsorted array of numbers. First gave the approach using Heap. Put all the elements of an array in a min heap and extract k times. But he was interested in a better approach. Answered using a quick select algorithm (modified quicksort). He told me there is a more optimized approach to the selection of pivot elements using order statistics. I did not know the order statistics method but he was quite satisfied with the basic quick select algorithm. Round 4: Director Round My brief introduction. Why low CGPA, etc. ? Given an array of size m out of which n indexes are allocated. How do you minimize the number of comparisons when you search an element in this array? I wrote basic linear search code. Then he asked me how do you minimize the number of comparisons. Given n points in a plane which form a polygon. Find if a random point exists inside that polygon or not? How would you find the volume of a lake. He was interested in my approach. I gave 2-3 methods, one of which was quite funny on which he laughed at me. In the end he asked me if I had any questions regarding the role and all. I would like to take a moment and thank GeeksforGeeks for helping me in my interview preparation. Cheers to you guys!!! All Practice Problems for Adobe ! Are you feeling lost in OS, DBMS, CN, SQL, and DSA chaos? Our Complete Inter

      Domande di colloquio [1]

      Domanda 1

      I recently interviewed at Adobe, Noida office and got the offer. I had 1-year work experience. It was a standard process comprising of an aptitude and technical test on Hackerrank. It’s the same every time. You can have a look at the test in previous archives. Screening Aptitude Test Technical Test having 13 MCQs and 7 standard coding questions. Interviews at Noida Office Round 1. The interview started with my general introduction. The interviewer wanted to know if I had in depth knowledge of what I am working on, so he asked all sorts of questions related to the technologies and why they were used and not something else. Questions Related to C, C++ – How are .h files loaded and linked with their .c files. I did not know much about it as I had experience in Java and told him the equivalent answer in Java. How to find the minimum element in a rotated array? e.g. 4 5 6 1 2 3 Gave the answer using Binary Search How to find a common node between two Linked Lists? 1→2→3→4→NULL | 5→6 Gave an answer using the difference in length of LLs and wrote the code which handled all the cases. Then he discussed Operating System Concepts, Virtual Memory, Paging, etc. Note. Make sure you write code which handles all the test cases especially the boundary ones. Round 2. The interview started with my brief introduction. This time the interview was more interested in my hobbies and passions. He asked me what do you do to keep yourself updated with the latest technology trends? After that he asked me only one question related to geometry. The question was given an isosceles right angled triangle. Find the radius of the smaller circle. I1 Solved it using basic pythagoras theorem. It was weird that he asked only one question. Round 3 This round was a tricky one. The interviewer asked me what all had been asked to me till now. I confidently said that I liked that goemetry was asked. I shouldn’t have said that… 😛 The question was given a rectangle ABCD with length l and breadth b. Now it is folded along diagonal BD. i.e. A is joined to C. Find the length of the line segment EF q2 Solved the question with his hints. Basically it involved some deductions related to imagination and pythagoras theorem. Basically AE = EC and EF = EC. After that it is simple geometry question. How do you heapify an array? What is the time complexity involved? Apparently, he was interested in the exact complexity. I told him that we always start heapifying from the last parent whose index in the array is (n-1)/2. He then asked me about how we heapify individual elements, etc. and how heap sort works. Basically, he wanted me to answer that we do not heapify elements from (n-1)/2 till n which decreases the time complexity from nlogn which I answered in the end. int a = 8; char *b = (int *) a; Where does b point to? Now this question was related to Big endian and little endian as in he wanted me to ask if the architechture is little endian or big endian. I told him I did not know about this. After this question, I told him that I am from Mechanical background and I did not know much about computer architecture. He was a little shocked and skipped the OS questions. Lucky me!!! How to know if a number is a power of 2 in O(1)? n&(n – 1)== 0?true:false Given an array of numbers all of which are repeated only one non-repeated, find the non repeated number. Gave the algorithm using XOR. Then he extended the previous question to find if two numbers are non repeated. He wanted the XOR approach again. Given two binary trees A and B. Check if B is a subtree of A. Solved using normal tree traversal. Find the kth smallest element in an unsorted array of numbers. First gave the approach using Heap. Put all the elements of an array in a min heap and extract k times. But he was interested in a better approach. Answered using a quick select algorithm (modified quicksort). He told me there is a more optimized approach to the selection of pivot elements using order statistics. I did not know the order statistics method but he was quite satisfied with the basic quick select algorithm. Round 4: Director Round My brief introduction. Why low CGPA, etc. ? Given an array of size m out of which n indexes are allocated. How do you minimize the number of comparisons when you search an element in this array? I wrote basic linear search code. Then he asked me how do you minimize the number of comparisons. Given n points in a plane which form a polygon. Find if a random point exists inside that polygon or not? How would you find the volume of a lake. He was interested in my approach. I gave 2-3 methods, one of which was quite funny on which he laughed at me. In the end he asked me if I had any questions regarding the role and all. I would like to take a moment and thank GeeksforGeeks for helping me in my interview preparation. Cheers to you guys!!! All Practice Problems for Adobe ! Are you feeling lost in OS, DBMS, CN, SQL, and DSA chaos? Our Complete Inter
      Rispondi alla domanda
      2

      Altre recensioni di colloqui per Software Development Engineer (SDE) presso Adobe

      Colloquio per Software Development Engineer (SDE)

      3 giu 2026
      Candidato anonimo a colloquio
      Nessuna offerta
      Esperienza positiva
      Colloquio difficile

      Candidatura

      Ho sostenuto un colloquio presso Adobe

      Colloquio

      Interview process was good almost 1hr interview i had but somehow didnt get the offer and it was so frustrating but what can we do about it communication skills matter even if you do both code

      Domande di colloquio [1]

      Domanda 1

      DSA was priority questions were from tree and dp
      Rispondi alla domanda

      Colloquio per Software Development Engineer (SDE)

      25 dic 2025
      Dipendente anonimo
      Offerta accettata
      Esperienza positiva
      Colloquio facile

      Candidatura

      Ho sostenuto un colloquio presso Adobe

      Colloquio

      It was an online interview. The interviewer was friendly. I didnt know few things but he generously answer and told me the approach. Asked few DSA coding questions nd yes thats it

      Domande di colloquio [1]

      Domanda 1

      Graph tree and dsa basics. and also about resume
      Rispondi alla domanda

      Colloquio per Software Development Engineer (SDE)

      16 dic 2025
      Candidato anonimo a colloquio
      Bangalore Rural
      Nessuna offerta
      Esperienza neutra
      Colloquio nella media

      Candidatura

      Ho presentato la mia candidatura tramite segnalazione di un dipendente. Ho sostenuto un colloquio presso Adobe (Bangalore Rural) nel mese di dic 2025

      Colloquio

      1. Online Test 2.Group Discussion 3.Technical Interview It is about 1 week process It’s a simple walkthrough of that journey covering what truly matters when learning to code today, the right mindset to develop, and the essential do’s and don’ts.

      Le migliori aziende per "stipendio e benefit" vicino a te

      avatar
      AnyVan
      4.0★Stipendio e benefit