Upload Button Icon Add office photos

Azentio

Compare button icon Compare button icon Compare

Filter interviews by

Azentio Interview Questions and Answers

Updated 13 Mar 2025
Popular Designations

22 Interview questions

A Senior Developer was asked 6mo ago
Q. What is Angular?
Ans. 

Angular is a platform and framework for building single-page client applications using HTML and TypeScript.

  • Developed and maintained by Google, Angular is an open-source framework.

  • It uses a component-based architecture, allowing for reusable UI components.

  • Angular supports two-way data binding, which synchronizes data between the model and the view.

  • It includes a powerful CLI (Command Line Interface) for scaffolding ...

View all Senior Developer interview questions
A Software Developer was asked 7mo ago
Q. Implement push/pull on a message queue.
Ans. 

Implementing push/pull on a message queue involves adding messages to the queue and retrieving messages from the queue.

  • Push: Add messages to the queue

  • Pull: Retrieve messages from the queue

  • Use a producer-consumer model for push/pull operations

  • Implement a mechanism for handling message acknowledgment and retransmission if needed

View all Software Developer interview questions
A Software Developer was asked 7mo ago
Q. Design a stack that supports push, pop, top, and retrieving the minimum element in constant time.
Ans. 

Implement a stack that can identify the minimum element at all times.

  • Use two stacks - one to store the actual elements and another to store the minimum values.

  • When pushing an element, check if it is smaller than the current minimum and push it to the minimum stack.

  • When popping an element, check if it is the current minimum and pop from the minimum stack as well.

  • The minimum value can be retrieved in constant time f...

View all Software Developer interview questions
A Senior Plsql Developer was asked 7mo ago
Q. What is the difference between UNION and UNION ALL?
Ans. 

Union combines and removes duplicates, Union All combines without removing duplicates.

  • Union combines result sets and removes duplicates

  • Union All combines result sets without removing duplicates

  • Union is slower than Union All as it involves removing duplicates

  • Example: SELECT column1 FROM table1 UNION SELECT column1 FROM table2;

  • Example: SELECT column1 FROM table1 UNION ALL SELECT column1 FROM table2;

View all Senior Plsql Developer interview questions
A Senior Plsql Developer was asked 7mo ago
Q. What is a trigger?
Ans. 

A trigger is a PL/SQL block that is automatically executed in response to certain events on a particular table or view.

  • Triggers can be used to enforce business rules, audit changes, or replicate data.

  • They can be classified as row-level triggers (executed for each row affected) or statement-level triggers (executed once for the entire statement).

  • Examples of trigger events include INSERT, UPDATE, DELETE operations o...

View all Senior Plsql Developer interview questions
A Senior Plsql Developer was asked 7mo ago
Q. What is a materialized view?
Ans. 

A materialized view is a database object that contains the results of a query and is stored on disk for faster access.

  • Materialized views store the results of a query like a table, allowing for faster access to data.

  • They are updated periodically to reflect changes in the underlying data.

  • Materialized views are commonly used in data warehousing and reporting applications.

  • Example: CREATE MATERIALIZED VIEW mv_sales AS ...

View all Senior Plsql Developer interview questions
A Java Developer was asked 10mo ago
Q. How can DSA implementation solve real-life problems?
Ans. 

Implementing DSA in real life involves solving complex problems efficiently using algorithms and data structures.

  • Implementing a sorting algorithm to organize patient records in a hospital database.

  • Using a graph algorithm to find the shortest path for a delivery service.

  • Applying a dynamic programming approach to optimize resource allocation in a manufacturing plant.

View all Java Developer interview questions
Are these interview questions helpful?
A Senior Executive - Finance was asked 11mo ago
Q. What is your experience in preparing Financial Statements (FS)?
Ans. 

I have over 10 years of experience in preparing financial statements for various organizations.

  • Led a team in the preparation of annual financial statements in compliance with GAAP

  • Reviewed and analyzed financial data to ensure accuracy and completeness

  • Implemented new accounting standards and procedures to improve reporting efficiency

  • Collaborated with auditors during the audit process to address any findings or disc...

View all Senior Executive - Finance interview questions
A Data Scientist was asked 11mo ago
Q. What are overfitting and underfitting, and what are some solutions to these problems?
Ans. 

Overfitting and underfitting are common problems in machine learning where the model either learns the noise in the training data or fails to capture the underlying patterns.

  • Overfitting occurs when a model learns the training data too well, including the noise and outliers, leading to poor generalization on new data.

  • Underfitting happens when a model is too simple to capture the underlying patterns in the data, res...

View all Data Scientist interview questions
A Full Stack Software Developer was asked 12mo ago
Q. Write a program that takes two numbers as input and displays their sum.
Ans. 

Take two numbers as input and display their sum

  • Create a function that takes two numbers as input

  • Add the two numbers together to get the sum

  • Return the sum as output

View all Full Stack Software Developer interview questions

Azentio Interview Experiences

45 interviews found

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

I applied via Walk-in and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Four questions and bout 2 hrs and topics covered are exceptions,database.

Round 2 - Technical 

(2 Questions)

  • Q1. What is index ? and types?
  • Ans. 

    An index is a database object that improves the speed of data retrieval operations on a table.

    • Indexes are used to quickly locate data without having to search every row in a table.

    • Types of indexes include B-tree indexes, bitmap indexes, and function-based indexes.

    • Examples of indexes are primary keys, unique constraints, and indexes created explicitly on columns.

  • Answered by AI
  • Q2. What is trigger?
  • Ans. 

    A trigger is a PL/SQL block that is automatically executed in response to certain events on a particular table or view.

    • Triggers can be used to enforce business rules, audit changes, or replicate data.

    • They can be classified as row-level triggers (executed for each row affected) or statement-level triggers (executed once for the entire statement).

    • Examples of trigger events include INSERT, UPDATE, DELETE operations on a t...

  • Answered by AI
Round 3 - level 2 

(2 Questions)

  • Q1. What is materialized view?
  • Ans. 

    A materialized view is a database object that contains the results of a query and is stored on disk for faster access.

    • Materialized views store the results of a query like a table, allowing for faster access to data.

    • They are updated periodically to reflect changes in the underlying data.

    • Materialized views are commonly used in data warehousing and reporting applications.

    • Example: CREATE MATERIALIZED VIEW mv_sales AS SELEC...

  • Answered by AI
  • Q2. Difference between union and union all?
  • Ans. 

    Union combines and removes duplicates, Union All combines without removing duplicates.

    • Union combines result sets and removes duplicates

    • Union All combines result sets without removing duplicates

    • Union is slower than Union All as it involves removing duplicates

    • Example: SELECT column1 FROM table1 UNION SELECT column1 FROM table2;

    • Example: SELECT column1 FROM table1 UNION ALL SELECT column1 FROM table2;

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. Basics of Java has been asked with implementation
  • Q2. DSA implemention on real life problem

Interview Preparation Tips

Interview preparation tips for other job seekers - First of all they schedule more than 2 rounds of technical discussion .One round with some abroad guy .Then two tests hacker rank and psychometric and then boom.After giving all the efforts and dedication you gave to clear those rounds HR will not get back to you .As they don't know professionalism.
Interview are conducted late nights.
So my overall suggestion is to don't waste your time with this company.

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Tell me about your experience.
  • Ans. 

    I have over 15 years of experience in finance, including leading financial planning, analysis, and reporting for large organizations.

    • Led financial planning and analysis for a Fortune 500 company

    • Managed budgeting and forecasting processes

    • Implemented cost-saving initiatives resulting in significant savings

    • Prepared and presented financial reports to senior management

  • Answered by AI
  • Q2. Tell me about your Company and role.
  • Ans. 

    I work for a multinational technology company as the Senior Executive - Finance.

    • Responsible for financial planning, budgeting, and forecasting

    • Oversee financial reporting and analysis

    • Manage cash flow and financial risk

    • Collaborate with other departments to drive financial performance

    • Lead financial audits and compliance efforts

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. About IFRS - 15, 16
  • Q2. Experience on preparation of FS
  • Ans. 

    I have over 10 years of experience in preparing financial statements for various organizations.

    • Led a team in the preparation of annual financial statements in compliance with GAAP

    • Reviewed and analyzed financial data to ensure accuracy and completeness

    • Implemented new accounting standards and procedures to improve reporting efficiency

    • Collaborated with auditors during the audit process to address any findings or discrepan...

  • Answered by AI
Round 3 - One-on-one 

(2 Questions)

  • Q1. Team handling experience
  • Ans. 

    I have over 10 years of team handling experience in finance, leading teams to achieve financial goals and targets.

    • Led a team of 15 finance professionals to successfully implement cost-saving measures resulting in a 20% reduction in expenses

    • Provided mentorship and guidance to team members, resulting in improved productivity and job satisfaction

    • Managed team performance through regular feedback sessions and performance ev...

  • Answered by AI
  • Q2. Knowledge about Azentio

Senior Developer Interview Questions & Answers

user image Priya Patil

posted on 16 Dec 2024

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

(1 Question)

  • Q1. What is angular
  • Ans. 

    Angular is a platform and framework for building single-page client applications using HTML and TypeScript.

    • Developed and maintained by Google, Angular is an open-source framework.

    • It uses a component-based architecture, allowing for reusable UI components.

    • Angular supports two-way data binding, which synchronizes data between the model and the view.

    • It includes a powerful CLI (Command Line Interface) for scaffolding and m...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Naukri.com

Round 1 - One-on-one 

(2 Questions)

  • Q1. About projects you have worked on
  • Q2. Situation based questions

Interview Questions & Answers

user image Anonymous

posted on 18 Dec 2024

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jun 2024. There were 6 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. General questions about skill and previous works. About family and which is the preferred location.
Round 2 - Assignment 

Make wireframes on a topic

Round 3 - Technical 

(1 Question)

  • Q1. English vocabulary testing skills
Round 4 - Aptitude Test 

Have to complete an assignment

Round 5 - Personality Assessment 

(1 Question)

  • Q1. Online assesment
Round 6 - HR 

(1 Question)

  • Q1. Salary package discussion

Data Scientist Interview Questions & Answers

user image rishi shrestham

posted on 6 Jul 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Everything about the central tendencies in a given data set?
  • Q2. What is overfitting and underfitting and related solution?
  • Ans. 

    Overfitting and underfitting are common problems in machine learning where the model either learns the noise in the training data or fails to capture the underlying patterns.

    • Overfitting occurs when a model learns the training data too well, including the noise and outliers, leading to poor generalization on new data.

    • Underfitting happens when a model is too simple to capture the underlying patterns in the data, resultin...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Azentio Data Scientist interview:
  • Statistics
  • Deep Learning
  • data preorocessing

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Easy test with basic questions

Round 2 - Technical 

(2 Questions)

  • Q1. Implement push/pull on message queue .
  • Ans. 

    Implementing push/pull on a message queue involves adding messages to the queue and retrieving messages from the queue.

    • Push: Add messages to the queue

    • Pull: Retrieve messages from the queue

    • Use a producer-consumer model for push/pull operations

    • Implement a mechanism for handling message acknowledgment and retransmission if needed

  • Answered by AI
  • Q2. Min stack . Identify minimum element of stack at all times.
  • Ans. 

    Implement a stack that can identify the minimum element at all times.

    • Use two stacks - one to store the actual elements and another to store the minimum values.

    • When pushing an element, check if it is smaller than the current minimum and push it to the minimum stack.

    • When popping an element, check if it is the current minimum and pop from the minimum stack as well.

    • The minimum value can be retrieved in constant time from t...

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Related with my previous job ?
Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
Not Selected

I appeared for an interview in Sep 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Core java basics, collections, sql query, basic DSA questions

Top trending discussions

View All
Interview Tips & Stories
5d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Azentio?
Ask anonymously on communities.

Azentio Interview FAQs

How many rounds are there in Azentio interview?
Azentio interview process usually has 2-3 rounds. The most common rounds in the Azentio interview process are Technical, One-on-one Round and HR.
How to prepare for Azentio 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 Azentio. The most common topics and skills that interviewers at Azentio expect are Java, PLSQL, Spring Boot, Javascript and Oracle Forms.
What are the top questions asked in Azentio interview?

Some of the top questions asked at the Azentio interview -

  1. what is overfitting and underfitting and related soluti...read more
  2. What is software testin...read more
  3. what is collection? what is procedure and function and trigger and packa...read more
How long is the Azentio interview process?

The duration of Azentio interview process can vary, but typically it takes about 2-4 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

3.8/5

based on 36 interview experiences

Difficulty level

Easy 29%
Moderate 58%
Hard 13%

Duration

Less than 2 weeks 36%
2-4 weeks 41%
6-8 weeks 18%
More than 8 weeks 5%
View more

Interview Questions from Similar Companies

Chetu Interview Questions
3.3
 • 198 Interviews
HighRadius Interview Questions
2.8
 • 197 Interviews
AVASOFT Interview Questions
2.8
 • 174 Interviews
Freshworks Interview Questions
3.5
 • 171 Interviews
Oracle Cerner Interview Questions
3.6
 • 162 Interviews
Brane Enterprises Interview Questions
2.0
 • 138 Interviews
ivy Interview Questions
3.6
 • 133 Interviews
Axtria Interview Questions
2.9
 • 126 Interviews
Thomson Reuters Interview Questions
4.1
 • 125 Interviews
ServiceNow Interview Questions
4.1
 • 124 Interviews
View all

Azentio Reviews and Ratings

based on 337 reviews

3.1/5

Rating in categories

2.9

Skill development

3.1

Work-life balance

3.0

Salary

2.8

Job security

3.1

Company culture

2.6

Promotions

2.9

Work satisfaction

Explore 337 Reviews and Ratings
QA Automation -AML (Anti Money Laundering)

Bangalore / Bengaluru

5-10 Yrs

Not Disclosed

Executive Assistant

Bangalore / Bengaluru

4-8 Yrs

Not Disclosed

Explore more jobs
Software Engineer
452 salaries
unlock blur

₹3.7 L/yr - ₹9 L/yr

Senior Software Engineer
193 salaries
unlock blur

₹8.8 L/yr - ₹16.8 L/yr

Software Developer
154 salaries
unlock blur

₹2.7 L/yr - ₹10 L/yr

Business Analyst
138 salaries
unlock blur

₹5.5 L/yr - ₹12.9 L/yr

Plsql Developer
108 salaries
unlock blur

₹4 L/yr - ₹9.5 L/yr

Explore more salaries
Compare Azentio with

Thomson Reuters

4.1
Compare

HighRadius

2.8
Compare

Oracle Cerner

3.6
Compare

Chetu

3.3
Compare
write
Share an Interview