Premium Employer

i

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

Conduent Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Conduent Accounts Associate Interview Questions and Answers

Updated 20 Jun 2024

Conduent Accounts Associate Interview Experiences

4 interviews found

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

(2 Questions)

  • Q1. Accounting payable
  • Q2. Accounting reciveable
Interview experience
3
Average
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Referral and was interviewed before May 2022. There were 3 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 Resume tips
Round 2 - HR 

(2 Questions)

  • Q1. Willing to relocate to office
  • Q2. Basic accounting principles
Round 3 - One-on-one 

(1 Question)

  • Q1. Few questions related to the department, accounts payable. Then some aptitude related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic accounting concepts, smile and answer with confidence.

Accounts Associate Interview Questions Asked at Other Companies

Q1. what is depreciation ?
asked in Conduent
Q2. Difference between accounts receivable and bills receivable.
Q3. Three golden rules in accounting ?
Q4. What are Accounting Standards (AS)? What is Ind-AS?
asked in SBS-Global
Q5. Differencw between GSTR2B and 2A, GST return due dates, what's GS ... read more

I applied via Referral and was interviewed before Feb 2021. There were 4 interview rounds.

Round 1 - Aptitude Test 

It wasn't completely aptitude. They mainly tested accounting knowledge. Very basic accounting questions were asked like certain terminologies such as depreciation, accounts receivable, payable etc.. Also they tested the capability to write journal entries

Round 2 - HR 

(5 Questions)

  • Q1. What is your family background?
  • Q2. Why should we hire you?
  • Q3. What are your salary expectations?
  • Q4. Tell me about yourself.
  • Q5. Accounting questions were asked here too
Round 3 - One-on-one 

(2 Questions)

  • Q1. Self introduction. Then accounting questions were asked.. Also they would test the communication skill.
  • Q2. Difference between accounts receivable and bills receivable.
  • Ans. 

    Accounts receivable are amounts owed by customers for goods or services already delivered. Bills receivable are written promises to pay at a future date.

    • Accounts receivable are generated from sales transactions.

    • Bills receivable are generated from loan transactions.

    • Accounts receivable are short-term and due within a year.

    • Bills receivable are long-term and due after a year.

    • Accounts receivable are unsecured debts.

    • Bills re...

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

(1 Question)

  • Q1. General questions about family

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident and answer the questions that you know. Don't hesitate to say I don't know incase you don't know an answer because not everyone knows everything.

I applied via Walk-in and was interviewed before Jun 2019. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Basic +2 level accounting questions.
  • Q2. Basic accounting terms, journal entries

Interview Preparation Tips

Interview preparation tips for other job seekers -

Conduent interview questions for designations

 Accounts Payable Associate

 (3)

 Senior Accounts Associate

 (1)

 Accounts Supervisor

 (1)

 Accounts Analyst

 (1)

 Financial Associate

 (1)

 Associate Accountant

 (1)

 Transaction Processing Associate

 (13)

 Senior Associate 2

 (1)

Interview questions from similar companies

I applied via Recruitment Consultant and was interviewed in Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic communication skills were tested. Sone techical questn too. Versant test is mandatory

Interview Preparation Tips

Interview preparation tips for other job seekers - Please never go for these third party vendors. They misguide you regarding profile . I went for this third party vendor named savantis solution and it really misguided me

I applied via Referral and was interviewed before Jan 2021. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Previous work related queries

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepares office and sap

Analyst Interview Questions & Answers

IBM user image Anonymous

posted on 18 Dec 2020

Interview Questionnaire 

2 Questions

  • Q1. Basic finance questions
  • Q2. Journal entries and about the role applied

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and have the will power, there is nothing impossible, all we have to do is work hard and Chase our dream.

I applied via Walk-in and was interviewed before Sep 2019. There were 5 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. Where do you want to see yourself after 5 years?
  • Q2. What are your preferences?
  • Q3. If given a chance on what do you want to make changes on the project if you've been assigned to achieve positive results with fewer efforts?
  • Q4. What are your expectations?
  • Q5. How do you want a corporate structure to be?
  • Q6. Why did you leave your last company?

Interview Preparation Tips

Interview preparation tips for other job seekers - Questions asked to a fresher I would expect those to be a friendly manner and allow him to speak what he can and not just the questions you ask.

I applied via Naukri.com and was interviewed in Feb 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. All Technical quetions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared technically

I applied via Naukri.com and was interviewed before Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Lifecycle methods of Angular
  • Ans. 

    Angular has several lifecycle methods that are called at different stages of a component's life.

    • ngOnInit() - called after the component is initialized

    • ngOnChanges() - called when the component's input properties change

    • ngDoCheck() - called during every change detection cycle

    • ngAfterViewInit() - called after the component's view has been initialized

    • ngOnDestroy() - called just before the component is destroyed

  • Answered by AI
  • Q2. What are pipes in angular?
  • Ans. 

    Pipes are a feature in Angular that allow for data transformation before displaying it in the view.

    • Pipes are used to format data in the view

    • They can be used to filter, sort, and transform data

    • Examples include the date pipe, currency pipe, and uppercase pipe

  • Answered by AI
  • Q3. How to do global error handling in angular?
  • Ans. 

    Global error handling in Angular can be done using ErrorHandler class.

    • Create a class that implements the ErrorHandler interface

    • Override the handleError() method to handle errors globally

    • Provide the ErrorHandler class in the providers array of AppModule

    • Use the error handling service to log errors or display error messages

  • Answered by AI
  • Q4. What are custom directives? What are their types? How to create with general example?
  • Ans. 

    Custom directives are a way to extend HTML with new attributes and functionality.

    • Types of custom directives are attribute, element, and class directives.

    • Attribute directives modify the behavior of existing HTML elements.

    • Element directives create new HTML elements.

    • Class directives modify the behavior of existing HTML elements based on their class.

    • To create a custom directive, use the directive() method of the AngularJS ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Be confident if you know the answers and frank if you don't.
2. Try to get your basics and core concepts to be clear clear.

Skills evaluated in this interview

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

Conduent Interview FAQs

How many rounds are there in Conduent Accounts Associate interview?
Conduent interview process usually has 2-3 rounds. The most common rounds in the Conduent interview process are One-on-one Round, HR and Aptitude Test.
How to prepare for Conduent Accounts Associate 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 Conduent. The most common topics and skills that interviewers at Conduent expect are Accounting, Accounts Payable, O2C, Cash Applications and Invoice Processing.
What are the top questions asked in Conduent Accounts Associate interview?

Some of the top questions asked at the Conduent Accounts Associate interview -

  1. Difference between accounts receivable and bills receivab...read more
  2. Self introduction. Then accounting questions were asked.. Also they would test ...read more
  3. Few questions related to the department, accounts payable. Then some aptitude r...read more

Recently Viewed

INTERVIEWS

MSCI

No Interviews

INTERVIEWS

Conduent

No Interviews

INTERVIEWS

Conduent

No Interviews

INTERVIEWS

Conduent

No Interviews

INTERVIEWS

Conduent

No Interviews

INTERVIEWS

Conduent

No Interviews

DESIGNATION

DESIGNATION

INTERVIEWS

Internshala

10 top interview questions

INTERVIEWS

Internshala

No Interviews

Tell us how to improve this page.

Conduent Accounts Associate Interview Process

based on 3 interviews

1 Interview rounds

  • HR Round
View more
Join Conduent Together we are making a difference.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.1k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.7
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
IBM Interview Questions
4.0
 • 2.3k Interviews
View all
Conduent Accounts Associate Salary
based on 395 salaries
₹1.4 L/yr - ₹4.5 L/yr
14% less than the average Accounts Associate Salary in India
View more details

Conduent Accounts Associate Reviews and Ratings

based on 51 reviews

3.5/5

Rating in categories

3.2

Skill development

3.5

Work-life balance

2.7

Salary

3.6

Job security

3.3

Company culture

2.7

Promotions

3.2

Work satisfaction

Explore 51 Reviews and Ratings
Transaction Processing Associate
988 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Associate
588 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Analyst
560 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Analyst
472 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
425 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Conduent with

Wipro

3.7
Compare

Genpact

3.8
Compare

Tech Mahindra

3.5
Compare

HCLTech

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