Adobe Coding Interview Questions

Preparing for interviews can be tricky and overwhelming, especially if you are still preparing for all the programming questions the interview panel may ask.

This article will answer 10 of Adobe’s most popular coding interview questions, including C++, Java, and JavaScript coding interview questions, so that you can be prepared for any interview you might go through with Adobe.

1 Search, or determine the position of a given key in a 2D matrix. Assume that all the rows and columns are sorted.

pair search_in_matrix(vector> matrix, int value) {

  int M = matrix.size(); //rows

  int N = matrix[0].size(); // columns

  // Lets start searching from top right.

  // Alternatively, searching from bottom left

  // i.e. matrix[M-1][0] can also work.

int i = 0, j = N-1;

  while (i < M && j >= 0) {

    if (matrix[i][j] == value) {

      return pair(i, j);

    else if (value < matrix[i][j]) {

      // search left

      –j;

    else {

      // search down.

      ++i;

  for (int i = 0; i < matrix.size(); ++i) {

    for (int j = 0; j < matrix[0].size(); ++j) {

      cout << "Verifying at " << i << "," << j << ": " << matrix[i][j] << endl;

      pair value_loc = search_in_matrix(matrix, matrix[i][j]);

      assert(value_loc.first == i);

      assert(value_loc.second == j);

int main(int argc, char const *argv[])

  vector> matrix = {

    {1, 5, 45, 80, 81},

    {6, 7, 48, 82, 83},

    {20, 22, 49, 85, 86},

    {21, 23, 50, 90, 92}

  value_loc = search_in_matrix(matrix, 100);

  assert(value_loc.first == -1 && value_loc.second == -1);

We start from the upper right corner of the matrix, from where we first compare its value with the key. In case they are equal, then it means we have found the position of the key. We move one position to the left in case the key is smaller than the current element. Likewise, we move one position down in case the key is larger than the current element.

The San Jose-based firm was named one of the ‘Best Workplaces for Millennials 2020 by Fortune Magazine, and it was ranked #2 in the Worlds Most Admired Companies in Software. After the company hit a revenue record despite the epidemic, CEO Shantanu Narayen, who has a 98 percent approval rating on Glassdoor, revealed plans for a hiring drive in Q4 2020. Aside from high employee happiness, Adobe provides a variety of benefits, including onsite yoga and cafes, paid family holidays, and professional development services like LinkedIn Learning and Harvard ManageMentor on demand.

The corporation employs more than 22,000 people in 70 offices across 26 countries. Adobe recruits nine levels of software developers, including level I, with an average income of $143,664. Adobe also has a university program for current students, and each year it hires over 1,000 interns and new graduates.

Whether or not you are involved in a creative career, you may have used Adobe software previously. Have you ever downloaded or generated a PDF document? In the 1990s, Adobe created the PDF file format. Adobes flagship product, Photoshop, has become a verb, similar to Google, with a mission to promote creativity for all. Aside from creating design and creativity software that is utilized by graphic designers, filmmakers, publishers, and students all around the world, Adobe is a great place to work.

Adobe Online Coding InterviewÂ

Adobe uses coding sites such as ‘HackerRank’ and ‘CodinGame’ to conduct online coding exams. Candidates must showcase their programming capabilities by obtaining the desired results.

Adobe Interview Preparation Strategies

Related Posts

Leave a Reply

Your email address will not be published. Required fields are marked *