Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by TO THE NEW Team. If you also belong to the team, you can get access from here

TO THE NEW Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

TO THE NEW Adobe AEM Developer Interview Questions and Answers

Updated 15 Sep 2022

TO THE NEW Adobe AEM Developer Interview Experiences

2 interviews found

I applied via LinkedIn and was interviewed in Aug 2022. There were 4 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude ,logical and cs fundamental questions.

Round 2 - Technical 

(3 Questions)

  • Q1. Asked about resume , projects , OOPs , and question to implement any sorting algo
  • Q2. Implement Bubble sort algorithm
  • Ans. 

    Bubble sort algorithm sorts an array by repeatedly swapping adjacent elements if they are in wrong order.

    • Compare adjacent elements and swap them if they are in wrong order

    • Repeat this process until the array is sorted

    • Time complexity is O(n^2)

    • Space complexity is O(1)

    • Example: ['apple', 'banana', 'orange', 'grape'] -> ['apple', 'banana', 'grape', 'orange']

  • Answered by AI
  • Q3. No question asked because no third technical interview.
Round 3 - Technical 

(2 Questions)

  • Q1. Interview is based on projects , 1 technical question, and data structure choose question.
  • Q2. Check for balanced parenthesis.
  • Ans. 

    Check for balanced parenthesis in a string.

    • Use a stack to keep track of opening parenthesis

    • If a closing parenthesis is encountered, pop from stack and check if it matches

    • If stack is empty at the end, the string has balanced parenthesis

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Hobbies, strengths , weakness , future goals, etc.

Interview Preparation Tips

Topics to prepare for TO THE NEW Adobe AEM Developer interview:
  • Data Structures
  • Algorithms
  • Fundamentals
  • OOPS
Interview preparation tips for other job seekers - always say what you are and be genuine.
prepare well and one day you will crack it. 😃😃😎😎

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Nov 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Only focus on java
  • Q2. Oops concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Do this and you are all set

Adobe AEM Developer Interview Questions Asked at Other Companies

asked in Genpact
Q1. Sightly Implicity objects?? Diff b/n Sling Resource Type And Slin ... read more
asked in Infosys
Q2. Explain any implementation of components creation with backend co ... read more
Q3. What is HTML, CSS and Javascipt
asked in Infosys
Q4. Name few annotations used for creation of sling models and servle ... read more
Q5. What is Jquery and its applications

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Aug 2020. There was 1 interview round.

Interview Questionnaire 

7 Questions

  • Q1. Q1)Strong OOPS concept.
  • Ans. 

    Strong OOPS concept is essential for Java developers to write efficient and maintainable code.

    • Understanding of classes, objects, inheritance, polymorphism, and encapsulation

    • Ability to design and implement complex systems using OOPS principles

    • Experience with design patterns and SOLID principles

    • Knowledge of interfaces, abstract classes, and access modifiers

    • Familiarity with UML diagrams for modeling software systems

  • Answered by AI
  • Q2. Q2) exception handling, multitasking
  • Q3. Q3) collection frameworks internal hierarchical
  • Q4. Q4)java server side strong debugging knowledge required it must for selection.
  • Q5. 5)you need to specific on your answer and to the point
  • Q6. 6)Java utility classes
  • Q7. Spring MVC and spring boot all basic automation and bean internal working knowledge

Interview Preparation Tips

Interview preparation tips for other job seekers - Please find good place and take interview with cool mind if you don't ahe any questions answer at time of interview don't take stress say politely i don't know that fine

Don't be harrree while answering the question


I applied via Company Website and was interviewed in Jul 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. What is java
  • Ans. 

    Java is a high-level programming language known for its platform independence and object-oriented approach.

    • Java is widely used for developing desktop, web, and mobile applications.

    • It is known for its write once, run anywhere (WORA) capability.

    • Java uses a virtual machine (JVM) to execute code, providing portability across different operating systems.

    • It supports multithreading, exception handling, and dynamic memory allo...

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

    Inheritance is a mechanism in object-oriented programming where a new class is created from an existing class.

    • Allows for code reuse and promotes code organization

    • The new class (subclass) inherits properties and methods from the existing class (superclass)

    • Subclass can add new properties and methods or override existing ones

    • Example: A Car class can inherit properties and methods from a Vehicle class

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - iam join this java developer

Skills evaluated in this interview

I applied via Referral and was interviewed in Nov 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Write a program for sum of numbers?
  • Ans. 

    A program to calculate the sum of numbers.

    • Create a variable to store the sum.

    • Iterate through the numbers and add each number to the sum.

    • Return the sum.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - We have to prepare even the basic questions , basic question also matters !

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. What's java?
  • Ans. 

    Java is a high-level, object-oriented programming language used to develop applications for various platforms.

    • Java is platform-independent and can run on any device with a Java Virtual Machine (JVM)

    • It is known for its security features and is commonly used for developing web applications, mobile apps, and enterprise software

    • Java code is compiled into bytecode, which can be executed on any platform that has a JVM instal...

  • Answered by AI
  • Q2. Why java?
  • Ans. 

    Java is a versatile, platform-independent language with a vast community and extensive libraries.

    • Java is object-oriented and easy to learn.

    • It has a vast community and extensive libraries.

    • It is platform-independent and can run on any device.

    • Java is secure and reliable.

    • It is used in various domains like web development, mobile app development, and enterprise applications.

    • Examples: Android apps, Spring framework, Hadoop,

  • Answered by AI

Skills evaluated in this interview

I was interviewed before Dec 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 360 minutes
Round difficulty - Medium

Basically TCS conduct its flagship event named as CODEVITA . And it offers Internship to prefinal (3rd )year students .

  • Q1. 

    Allocate Books Problem Statement

    Given an array of integers arr, where arr[i] represents the number of pages in the i-th book, and an integer m representing the number of students, allocate all the books ...

  • Ans. 

    Allocate books to students in a way that minimizes the maximum number of pages assigned to a student.

    • Iterate through possible allocations and calculate the maximum pages assigned to a student.

    • Find the minimum of these maximums to get the optimal allocation.

    • Return the minimum pages allocated in each test case, or -1 if not possible.

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaMust be doing B.TECHTata Consultancy Services (TCS) interview preparation:Topics to prepare for the interview - Data Structure , Algorithms ,DBMS , OOPs ,OSTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : Good understanding of Data Structure and Algorithms 
Tip 2 : Be clear in your Core Subjects.
Tip 3 : Do at least 1 good Project .
Tip 4 : Be humble and speak truth .

Application resume tips for other job seekers

Tip 1 : Simple and Crisp .
Tip 2 : Do host your project and mention the link in the resume .
Tip 3 : Single Page

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Few questions on rest API, microservices, java 8 core questions, spring MVC, Hibernate

I applied via Naukri.com and was interviewed before Sep 2020. There was 1 interview round.

Interview Preparation Tips

Interview preparation tips for other job seekers - Java basic interview questions

Interview Questionnaire 

5 Questions

  • Q1. About java collection api
  • Q2. String in java
  • Ans. 

    String is a class in Java used to represent a sequence of characters.

    • Strings are immutable in Java

    • String objects can be created using string literals or the new keyword

    • String class provides various methods for manipulating strings such as substring, replace, etc.

  • Answered by AI
  • Q3. Restful webservices , spring MVC flow, spring data, security in rest API.
  • Q4. Java8 new features ,stream api, lambda expression,
  • Q5. JSON, HashMap and HashTable, design pattern

Skills evaluated in this interview

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

TO THE NEW Interview FAQs

How many rounds are there in TO THE NEW Adobe AEM Developer interview?
TO THE NEW interview process usually has 4 rounds. The most common rounds in the TO THE NEW interview process are Technical, Aptitude Test and HR.
What are the top questions asked in TO THE NEW Adobe AEM Developer interview?

Some of the top questions asked at the TO THE NEW Adobe AEM Developer interview -

  1. check for balanced parenthes...read more
  2. Implement Bubble sort algori...read more
  3. asked about resume , projects , OOPs , and question to implement any sorting al...read more

Recently Viewed

INTERVIEWS

TO THE NEW

No Interviews

INTERVIEWS

TO THE NEW

No Interviews

INTERVIEWS

Manikaran Power Limited

No Interviews

INTERVIEWS

J&F

10 top interview questions

INTERVIEWS

J&F

No Interviews

SALARIES

Bentley Systems

INTERVIEWS

Bentley Systems

No Interviews

INTERVIEWS

TCS

20 top interview questions

INTERVIEWS

Bentley Systems

20 top interview questions

INTERVIEWS

Manikaran Power Limited

No Interviews

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 791 Interviews
ITC Infotech Interview Questions
3.6
 • 335 Interviews
View all
Software Engineer
561 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
556 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Technical Leader
219 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Quality Engineer
175 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Devops Engineer
157 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare TO THE NEW with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview