Upload Button Icon Add office photos
Engaged Employer

i

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

Wipro Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Wipro AEM Developer Interview Questions and Answers

Updated 4 Jun 2024

Wipro AEM Developer Interview Experiences

3 interviews found

Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I appeared for an interview in May 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. How can you Publish Page along with XF, CF used within the page from one AEM Author (dev) to another AEM Author (prod)
  • Ans. 

    To publish a page along with XF, CF from one AEM Author to another, use package manager or content sync

    • Create a package in AEM containing the page, XF, CF

    • Use package manager to build the package and download it

    • Upload the package to the target AEM instance and install it

    • Alternatively, use content sync to replicate the content from one AEM instance to another

  • Answered by AI
  • Q2. Dispatcher and Akamai CDN

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on scenario based questions.

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Some random question on some unknown websites

Interview Preparation Tips

Interview preparation tips for other job seekers - The interviewer behaves like not to take candidate and he didn't start formally he directly jump to one difficult question and suddenly in between discussion jump to other questions. he doesn't have patience to listen what i want to tell or till complete the answer, i didn't like his behavior at all and didn't expect it happened from Wipro like big MNC compony.

AEM Developer Interview Questions Asked at Other Companies

asked in Cognizant
Q1. How to create custom components in AEM?
asked in Wipro
Q2. How can you Publish Page along with XF, CF used within the page f ... read more
Q3. Crop resize worklow, what is procee step and participant step?
asked in LTIMindtree
Q4. What is the difference between AEM Sites and AEM Assets?
Q5. What is the use of @Component annotation in servlet

AEM Developer Interview Questions & Answers

user image Anonymous

posted on 19 Aug 2021

I applied via Naukri.com and was interviewed in Jul 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Questions on Workflows, OSGI framework, clients libs, experience fragments, Dispatcher, Run modes

Interview Preparation Tips

Interview preparation tips for other job seekers - Was a very basic first level interview with detailed questions on the concepts which we have worked on

Interview questions from similar companies

I applied via Company Website and was interviewed before Sep 2021. There were 4 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 tips
Round 2 - Aptitude Test 

Logical Aptitude, Verbal, Numerical

Round 3 - Coding Test 

2 codes one small and easy , another big and medium difficultly

Round 4 - Behavioral 

(2 Questions)

  • Q1. Introduction , Academic Project,
  • Q2. Coding Questions, Company Related Questions

Interview Preparation Tips

Topics to prepare for TCS Software Developer interview:
  • Coding
Interview preparation tips for other job seekers - In aptitude focus on Logical and Verbal aptitude and work on projects and coding skills

Interview Questionnaire 

2 Questions

  • Q1. Python
  • Q2. Webdevelopment

Interview Questionnaire 

1 Question

  • Q1. Some basic programming and technical questions of python

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well ! :) All the best

I applied via Naukri.com and was interviewed in Apr 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. How to check Java version?
  • Ans. 

    To check Java version, use command prompt/terminal and type 'java -version'.

    • Open command prompt/terminal

    • Type 'java -version'

    • Press enter

    • The installed Java version will be displayed

  • Answered by AI
  • Q2. What is the syntax of the main method?
  • Ans. 

    The main method syntax is a standard entry point for Java programs.

    • The main method must be declared as public, static, and void.

    • The method name must be 'main'.

    • The method must accept an array of strings as an argument.

    • The method must be defined within a class.

    • Example: public static void main(String[] args) { }

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Go by yourself.
Look professional. Dress in a manner appropriate to the job.
Bring your sense of humor and smile🙂.
Maintain eye contact.
Display confidence during the interview .

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Apr 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Are you willing to relocate?
  • Q2. Why should I hire you?

Interview Preparation Tips

Interview preparation tips for other job seekers - My technical and Hr interview done at same place. It lasted about 40minutes. The interviewer test both my technical knowledge and communication skills. I tell most of the answer. They check patience level.He stressed on my final year project . Asking about range and specification of compotents which I heve used in my project. Finally ask some HR questions.

I appeared for an interview before Nov 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 180 Minutes
Round difficulty - Medium

The test was started in the evening 4pm approx.
It was flexible due to Corona so we gave the test from our home only.
It had listening skill activity too according to which we were marked .
Interviewer was very supportive because of which it was easier for us to open up easily .

  • Q1. 

    Arithmetic Expression Evaluation Problem Statement

    You are provided with a string expression consisting of characters '+', '-', '*', '/', '(', ')' and digits '0' to '9', representing an arithmetic express...

  • Ans. 

    Evaluate arithmetic expressions in infix notation with given operators and precedence rules.

    • Parse the infix expression to postfix using a stack and then evaluate the postfix expression using another stack

    • Use a stack to keep track of operators and operands while parsing the expression

    • Handle operator precedence and associativity rules while converting to postfix and evaluating the expression

  • Answered by AI
  • Q2. 

    Valid Parentheses Problem Statement

    Given a string 'STR' consisting solely of the characters “{”, “}”, “(”, “)”, “[” and “]”, determine if the parentheses are balanced.

    Input:

    The first line contains an...
  • Ans. 

    The task is to determine if a given string of parentheses is balanced or not.

    • Iterate through the characters of the string and use a stack to keep track of opening parentheses.

    • When encountering an opening parenthesis, push it onto the stack. When encountering a closing parenthesis, check if it matches the top of the stack.

    • If the stack is empty at the end or there are unmatched parentheses, the string is not balanced.

    • Exa...

  • Answered by AI
Round 2 - HR 

(1 Question)

Round duration - 20 Minutes
Round difficulty - Medium

Interview

  • Q1. 

    Reverse Number Problem Statement

    Ninja is exploring new challenges and desires to reverse a given number. Your task is to assist Ninja in reversing the number provided.

    Note:

    If a number has trailing ze...

  • Ans. 

    Implement a function to reverse a given number, omitting trailing zeros.

    • Create a function that takes an integer as input and reverses it while omitting trailing zeros

    • Use string manipulation to reverse the number and remove any trailing zeros

    • Handle test cases where the number has leading zeros as well

    • Ensure the reversed number is printed for each test case on a new line

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaCGPA above 6.5 and no active backlogsAccenture interview preparation:Topics to prepare for the interview - Oops, dmbs, rdbms, mysql, SDLC, projects, data structure and basic electronics.Time required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : confidence is the key.
Tip 2 : focus on communication skills.
Tip 3 : be honest and well prepared about your projects and trainings .

Application resume tips for other job seekers

Tip 1 : it should be to the point.
Tip 2 : be honest. And one should know everything that is written down there.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Referral and was interviewed before Apr 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Puzzles, Psychometric Test

Round 2 - One-on-one 

(1 Question)

  • Q1. Some water in 3 Jars question, you had to measure out 5L correctly

Interview Preparation Tips

Interview preparation tips for other job seekers - Make the interview interactive, I got this input from another Senior. Before i went into the interview room the volunteers were telling all those who goes into Room No 1 is screwed. I was praying i don't get room no 1. But fortunately for me I got room no 1 because when the interviewer gave me the puzzle and handed over pen and paper he went back to relax his posture and when i explained i will fill the 5L Jar first, he immediately came forward to listen to me, at that moment i knew i got the job because i felt the previous candidates never made their interview interactive and that's why he went back to relax his posture.

Wipro Interview FAQs

How many rounds are there in Wipro AEM Developer interview?
Wipro interview process usually has 1 rounds. The most common rounds in the Wipro interview process are Technical.
How to prepare for Wipro AEM Developer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Wipro. The most common topics and skills that interviewers at Wipro expect are AEM, Angularjs, CSS, Continuous Integration and Development.
What are the top questions asked in Wipro AEM Developer interview?

Some of the top questions asked at the Wipro AEM Developer interview -

  1. How can you Publish Page along with XF, CF used within the page from one AEM Au...read more
  2. Questions on Workflows, OSGI framework, clients libs, experience fragments, Dis...read more
  3. Some random question on some unknown websi...read more

Tell us how to improve this page.

Wipro AEM Developer Interview Process

based on 3 interviews

1 Interview rounds

  • Technical Round
View more
Wipro AEM Developer Salary
based on 70 salaries
₹2.5 L/yr - ₹12.5 L/yr
6% less than the average AEM Developer Salary in India
View more details

Wipro AEM Developer Reviews and Ratings

based on 4 reviews

3.1/5

Rating in categories

3.5

Skill development

3.5

Work-life balance

2.9

Salary

3.1

Job security

2.9

Company culture

2.9

Promotions

2.9

Work satisfaction

Explore 4 Reviews and Ratings
Project Engineer
32.7k salaries
unlock blur

₹1.8 L/yr - ₹8.3 L/yr

Senior Software Engineer
23.3k salaries
unlock blur

₹5.8 L/yr - ₹23 L/yr

Senior Associate
21.4k salaries
unlock blur

₹0.9 L/yr - ₹5.5 L/yr

Senior Project Engineer
20.2k salaries
unlock blur

₹5 L/yr - ₹19.5 L/yr

Technical Lead
18.9k salaries
unlock blur

₹8.4 L/yr - ₹37 L/yr

Explore more salaries
Compare Wipro with

TCS

3.7
Compare

Infosys

3.6
Compare

Tesla

4.2
Compare

Amazon

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