Upload Button Icon Add office photos
Engaged Employer

i

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

AppZen Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

AppZen Interview Questions, Process, and Tips

Updated 7 Nov 2024

Top AppZen Interview Questions and Answers

AppZen Interview Experiences

Popular Designations

4 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Nov 2023. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. What are the applications of flask
  • Ans. 

    Flask is a lightweight WSGI web application framework in Python.

    • Web development

    • API development

    • Microservices

    • Prototyping

    • RESTful services

  • Answered by AI
  • Q2. Write SQL query to get the certain output
  • Ans. 

    SQL query to retrieve specific output

    • Use SELECT statement to retrieve data

    • Use WHERE clause to filter results based on specific criteria

    • Use JOIN clause to combine data from multiple tables if needed

  • Answered by AI
  • Q3. Write a python code to find the substring from the string
  • Ans. 

    Python code to find a substring from a string

    • Use the 'find' method to locate the starting index of the substring within the string

    • Extract the substring using slicing based on the starting index and length of the substring

    • Handle cases where the substring is not found by checking the return value of 'find'

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Are you comfortable working in NIGHT shift
  • Q2. What do you want to join this company
  • Ans. 

    I want to join this company because of its reputation for innovation and commitment to employee growth.

    • Reputation for innovation in the industry

    • Commitment to employee growth and development

    • Exciting projects and opportunities for learning and advancement

  • Answered by AI

Interview Preparation Tips

Topics to prepare for AppZen Technical Support Engineer interview:
  • SQL
  • Communication Skills
  • SDLC
Interview preparation tips for other job seekers - Be confident, ask about your team and their work and your role in the team. Is there any rotational shift or not?

Skills evaluated in this interview

Technical Support Engineer Interview Questions asked at other Companies

Q1. Admin Questions :- What is Relationships what are types of relationships
View answer (4)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. JOIN TWO TABLE WITH WHERE CLUASE
  • Ans. 

    Joining two tables with a WHERE clause in SQL

    • Use the JOIN keyword to combine two tables based on a related column

    • Add a WHERE clause to specify the condition for the join

    • Example: SELECT * FROM table1 JOIN table2 ON table1.id = table2.id WHERE table1.column = 'value'

  • Answered by AI
  • Q2. How to handel bad customer
  • Ans. 

    Handle bad customers by remaining calm, listening actively, empathizing with their situation, offering solutions, and seeking help if needed.

    • Remain calm and composed

    • Listen actively to understand their concerns

    • Empathize with their situation

    • Offer solutions or alternatives

    • Seek help from a supervisor if necessary

  • Answered by AI

Skills evaluated in this interview

Technical Support Executive Interview Questions asked at other Companies

Q1. 1. How to install windows 2. How to make pen drive bootable 3.What is taskbar 4.what is task manager 5.How to make partition in hard drive 6. How to activate windows
View answer (2)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Mar 2023. 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 - One-on-one 

(2 Questions)

  • Q1. Motivation behind looking for a change.
  • Q2. Hands on coding
Round 3 - Technical 

(1 Question)

  • Q1. Director round - technical discussion
Round 4 - HR 

(1 Question)

  • Q1. What are the compensation details

Interview Preparation Tips

Interview preparation tips for other job seekers - Not a very friendly place

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (197)

I applied via Referral and was interviewed before Aug 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. NA

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was awesome and very smooth hiring process. The interviewer was very polite person and I was evaluated against my personality, skills, professional skills, communication as well as soft skills. It was a very nice and healthy discussion post which I was very excited to be part of AppZen.
The entire process was seamless and completed within a week.
Excellent onboarding experience and AppZen values the every resource they have.?

Senior Consultant Interview Questions asked at other Companies

Q1. 1. What's the use of update sets and how do you move update set from one instance to another? Once you imported the update set, what will you do? To check the customisations, You need to do open the update set and do something. What is that... read more
View answer (3)

AppZen interview questions for popular designations

 Technical Support Engineer

 (1)

 Software Engineer

 (1)

 Technical Support Executive

 (1)

 Senior Consultant

 (1)

Jobs at AppZen

View all

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

2 Medium level DSA question

Round 2 - Technical 

(2 Questions)

  • Q1. Mirror binary tree
  • Q2. Optimally find n^m
  • Ans. 

    Use the exponentiation by squaring algorithm to optimally find n^m.

    • Use the exponentiation by squaring algorithm to reduce the number of multiplications needed.

    • Divide the exponent by 2 and recursively calculate the result.

    • Handle the cases when the exponent is even or odd separately.

    • Example: n^5 = n * n^2 * n^2

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Edit distance problem
  • Ans. 

    The edit distance problem involves finding the minimum number of operations required to transform one string into another.

    • The edit distance problem can be solved using dynamic programming.

    • Common operations include insertion, deletion, and substitution of characters.

    • Example: Given strings 'kitten' and 'sitting', the edit distance is 3 (substitute 'k' with 's', insert 'g', substitute 'n' with 'g').

  • Answered by AI
  • Q2. Light switch puzzle

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Sep 2022. There were 3 interview rounds.

Round 1 - Coding Test 

2 coding , 2 SQL with some quants

Round 2 - Technical 

(1 Question)

  • Q1. Remove redundant parentheses in a expression
  • Ans. 

    Remove redundant parentheses in a expression

    • Identify the innermost parentheses

    • Evaluate the expression inside the innermost parentheses

    • Replace the innermost parentheses with the evaluated expression

    • Repeat until no more redundant parentheses exist

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Why do you want to join Chargebee?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and focus on your strength and if you screw up a part don’t feel bad

Skills evaluated in this interview

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

A coding test on hackerrank with some basic graph problems

Round 2 - Technical 

(1 Question)

  • Q1. The interviewer asked about my projects
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Nov 2022. There were 6 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 - One-on-one 

(2 Questions)

  • Q1. What's your motivation to join this team?
  • Ans. 

    I am motivated to join this team because of the challenging work and the opportunity to learn and grow.

    • I am excited about the projects this team is working on and the potential impact they can have.

    • I am impressed by the team's expertise and collaborative approach.

    • I am looking for a supportive and innovative work environment where I can contribute my skills and knowledge.

    • I am eager to learn from my colleagues and develo...

  • Answered by AI
  • Q2. What are the projects/initiatives you have worked-on in your current role?
  • Ans. 

    I have worked on multiple projects including developing a new e-commerce platform and implementing a machine learning algorithm for fraud detection.

    • Developed a new e-commerce platform using React and Node.js

    • Implemented a machine learning algorithm for fraud detection using Python and TensorFlow

    • Collaborated with cross-functional teams to ensure project success

    • Improved website performance by optimizing code and reducing

  • Answered by AI
Round 3 - Technical 

(3 Questions)

  • Q1. Design VS code(any IDE)
  • Ans. 

    Designing an IDE like VS code requires a deep understanding of software development and user experience.

    • Identify the target audience and their needs

    • Choose the programming languages and frameworks to support

    • Create a user-friendly interface with customizable features

    • Implement debugging and testing tools

    • Ensure compatibility with different operating systems

    • Continuously update and improve the IDE based on user feedback

  • Answered by AI
  • Q2. Discuss the architechture, limitations and abilities you would want in your app
  • Ans. 

    The app architecture should be scalable, with a user-friendly interface and secure data storage.

    • The app should have a modular architecture to allow for easy scalability and maintenance.

    • The user interface should be intuitive and easy to navigate.

    • The app should have robust security measures in place to protect user data.

    • The app should be able to handle large amounts of data and traffic.

    • The app should be compatible with m...

  • Answered by AI
  • Q3. The objective is not to code, but rather to discuss how would you implement certain features
Round 4 - Technical 

(6 Questions)

  • Q1. No coding involved but deep JavaScript, CSS, Browser, APIs related questions were asked
  • Q2. Need to explain very minute details, explain working and uses
  • Q3. What is a CDN? How does the browser work?
  • Ans. 

    CDN stands for Content Delivery Network. Browser works by sending requests to servers and receiving responses.

    • CDN is a network of servers that deliver content to users based on their geographic location.

    • CDN reduces latency and improves website performance.

    • Browser sends HTTP requests to servers and receives responses containing HTML, CSS, JS, and other assets.

    • Browser renders the received content and displays it to the u

  • Answered by AI
  • Q4. CSS positioning
  • Q5. Flexbox, Grid, Browser internals
  • Q6. NO DSA question ❌
Round 5 - Coding Test 

You get 60 minutes to code an application in your choice of programming stack. Out of which 45 minutes are set aside for implementation and 15 minutes for problem discussion and conclusion.

Make sure that you think out loud while implementing the solution and not just silently coding.

Round 6 - HR 

(1 Question)

  • Q1. Conclude the whole process, discuss salary expectations, perks, benefits, and other policy discussions

Skills evaluated in this interview

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

I applied via Referral and was interviewed in May 2024. There was 1 interview round.

Round 1 - Case Study 

Guestimate question on how a new product can be launch

AppZen Interview FAQs

How many rounds are there in AppZen interview?
AppZen interview process usually has 2-3 rounds. The most common rounds in the AppZen interview process are Technical, HR and Resume Shortlist.
How to prepare for AppZen 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 AppZen. The most common topics and skills that interviewers at AppZen expect are Python, Artificial Intelligence, Aerospace, Pharma and Deep Learning.
What are the top questions asked in AppZen interview?

Some of the top questions asked at the AppZen interview -

  1. Write a python code to find the substring from the str...read more
  2. What are the applications of fl...read more
  3. write SQL query to get the certain out...read more

Tell us how to improve this page.

AppZen Interview Process

based on 3 interviews

Interview experience

3.7
  
Good
View more

Interview Questions from Similar Companies

Zoho Interview Questions
4.3
 • 516 Interviews
Freshworks Interview Questions
3.5
 • 155 Interviews
Zenoti Interview Questions
3.0
 • 42 Interviews
ClearTax Interview Questions
3.4
 • 39 Interviews
Rippling Interview Questions
2.5
 • 37 Interviews
InMobi Interview Questions
3.5
 • 35 Interviews
Druva Interview Questions
3.7
 • 25 Interviews
Chargebee Interview Questions
3.9
 • 16 Interviews
Postman Interview Questions
3.6
 • 11 Interviews
Fyle Interview Questions
4.8
 • 4 Interviews
View all

AppZen Reviews and Ratings

based on 17 reviews

3.8/5

Rating in categories

3.8

Skill development

3.0

Work-life balance

3.8

Salary

3.1

Job security

3.7

Company culture

3.2

Promotions

3.2

Work satisfaction

Explore 17 Reviews and Ratings
L1 Technical Support Consultant

Pune

1-5 Yrs

Not Disclosed

Director - Global Support

Pune

16-20 Yrs

Not Disclosed

Sr. Quality Engineer

Pune

6-8 Yrs

Not Disclosed

Explore more jobs
Data Analyst
12 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Data Scientist
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer 2
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare AppZen with

Fyle

4.3
Compare

Rippling

2.5
Compare

ClearTax

3.4
Compare

Zoho

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