Upload Button Icon Add office photos
Engaged Employer

i

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

Cimpress Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Cimpress Accounts Payable Specialist Interview Questions and Answers

Updated 16 Jan 2025

Cimpress Accounts Payable Specialist Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Assignment 

Journal entries of prepaid expenses, provisions

Round 2 - Technical 

(2 Questions)

  • Q1. What is prepaid expenses
  • Ans. 

    Prepaid expenses are expenses that have been paid in advance but have not yet been incurred.

    • Prepaid expenses are recorded as assets on the balance sheet until they are used up or expire.

    • Examples of prepaid expenses include prepaid rent, insurance premiums, and subscriptions.

    • Once the prepaid expense is incurred, it is then recorded as an expense on the income statement.

  • Answered by AI
  • Q2. What is accrued income/expenses
  • Ans. 

    Accrued income/expenses refer to revenues or expenses that have been earned/incurred but not yet received/paid.

    • Accrued income is revenue that has been earned but not yet received, such as interest income.

    • Accrued expenses are costs that have been incurred but not yet paid, like salaries or utilities.

    • Accrued income/expenses are recorded in the financial statements to reflect the true financial position of a company.

    • They ...

  • Answered by AI

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Jun 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 - One-on-one 

(1 Question)

  • Q1. What is Journal? How journal will be published? How you will get the review on Manuscript? Why we will hire you? What's your strength and weakness? Published chart process?
  • Ans. 

    A journal is a publication that contains scholarly articles on a specific subject. It is published through a peer-review process.

    • Journals are academic publications that contain research articles, reviews, and other scholarly content.

    • They are typically published on a regular basis, such as monthly or quarterly.

    • The publication process involves submitting a manuscript to the journal, which is then reviewed by experts in t...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. It's salary negotiation related questions, when you will be join.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Graph ques DSA, number pattern question

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Naukri.com

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all Resume tips
Round 2 - Coding Test 

The written test involved qiestions from bssic aptitude, computer fundamentals and coding.

Round 3 - Technical 

(1 Question)

  • Q1. This was a technical discussion with the pannel. The discussion was mostly based in what's written in resume. Expect the questions from Java, OOPs, Data structures, SQL.
Round 4 - One-on-one 

(1 Question)

  • Q1. This was a one on one discussion with the manager. It was mostly to identify if the candidate meets basic non technical requirements for the job role.
Round 5 - HR 

(1 Question)

  • Q1. This round was little tricky as i was interviewed by the HR head since all other HRs were busy interviewing other candidates. it was mostly to check the communication skills, flexibility of the employee, t...
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Assignment 

They will give javascript coding(based on your role)question we need to solve and submit the solution

Round 2 - Technical 

(1 Question)

  • Q1. Asked basic js questions and some logical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be perfect in the basic conscepts
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Regarding skills set
Round 2 - Coding Test 

Had technical round with coding

Round 3 - One-on-one 

(1 Question)

  • Q1. Had discussion on skills , i joined as a fresher
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. Basic python qyestions
  • Q2. Oops concepts in python
  • Ans. 

    Oops concepts in Python include inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance allows a class to inherit attributes and methods from another class.

    • Encapsulation restricts access to certain components within a class.

    • Polymorphism allows objects to be treated as instances of their parent class.

    • Abstraction hides complex implementation details and only shows the necessary features.

  • Answered by AI
  • Q3. Sql queries in framework
  • Ans. 

    SQL queries are commonly used in frameworks for data manipulation and retrieval.

    • SQL queries are used to interact with databases within a framework.

    • Frameworks like Hibernate, Entity Framework, and Django ORM use SQL queries to perform database operations.

    • SQL queries can be written directly in code or generated by the framework based on object-relational mapping.

    • Examples: SELECT * FROM table_name WHERE condition, INSERT ...

  • Answered by AI
  • Q4. Inheritance and polymorphism
  • Q5. Design pattern in python
  • Ans. 

    Design patterns in Python are reusable solutions to common problems in software design.

    • Design patterns help in creating maintainable and scalable code.

    • Some common design patterns in Python include Singleton, Factory, Observer, and Strategy.

    • Each design pattern has its own purpose and implementation.

    • Design patterns promote code reusability and flexibility.

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed before Nov 2021. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is the use of namespace in Php?
  • Ans. 

    Namespace in PHP is used to avoid naming conflicts between classes, functions, and variables.

    • Namespace allows grouping of related classes, functions, and variables under a common name.

    • It helps in organizing code and makes it easier to maintain.

    • Namespace can be declared using the 'namespace' keyword followed by the namespace name.

    • Example: namespace MyNamespace;

    • To use a class or function from a namespace, we need to spec...

  • Answered by AI
  • Q2. Difference between interface and abstract class
  • Ans. 

    Interface defines only method signatures while abstract class can have both method signatures and implementations.

    • An interface can be implemented by multiple classes while an abstract class can only be extended by one class.

    • An abstract class can have constructors while an interface cannot.

    • An abstract class can have non-abstract methods while an interface can only have abstract methods.

    • An abstract class can have instanc...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Strong oops skills expected
For Php, get knowledge about latest concepts

Skills evaluated in this interview

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

I applied via Indeed and was interviewed before Jan 2022. 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 Resume tips
Round 2 - Coding Test 

Practical module need to solve and execute the progream

Round 3 - Technical 

(3 Questions)

  • Q1. Need the linux server commands and OOP concept, CSS, etc
  • Q2. All relavent of the oops, css, aws, mysql related questions. Eg: Primary key vs Unique. Write the joins query for left and inner join. Cat command for linux server. hide vs invisible. block ns display Abs...
  • Q3. Write a program for login page with using session Database design for one example given by interviewer Palindrome program
  • Ans. 

    Program for login page with session and palindrome program

    • Create a login page with HTML and CSS

    • Use PHP to handle form submission and validate user credentials

    • Create a session for the logged-in user

    • Design a database to store user information

    • Write a program to check if a given string is a palindrome

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. For our last company of the project details and module discussion. And Technology tech interview

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. You must say your answer with confident
2. Basic technic questions and answer needs to know for your field
3. You should develop your's developing skills with relatime exmples. Like Duplicate removing, reverse the input, Loop and Loop with index concept, OOPs concepts (optional if this has yours field)
4. If you had work with database means, better you know the design of the db and connecion through the program.
5. API intergrations and UI design (optional If you had work in that otherwise needs to know the basic things)
6. Domain knowledge is most important. Example what kind of projects done by your office. If you are fresher means, better you have to search, which company you are going to interview, know those companies project, technics, and tools.

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Sdlc process, MVC architecture, entity framework, SQL queries
  • Q2. SQL queries, state vs stateless, url

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for basics alone. Work experience is important
Contribute & help others!
anonymous
You can choose to be anonymous

Cimpress Interview FAQs

How many rounds are there in Cimpress Accounts Payable Specialist interview?
Cimpress interview process usually has 2 rounds. The most common rounds in the Cimpress interview process are Assignment and Technical.
How to prepare for Cimpress Accounts Payable Specialist 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 Cimpress. The most common topics and skills that interviewers at Cimpress expect are Accounting, Analytical Skills, Claims Adjudication, Expense Management and Interpersonal Skills.
What are the top questions asked in Cimpress Accounts Payable Specialist interview?

Some of the top questions asked at the Cimpress Accounts Payable Specialist interview -

  1. What is accrued income/expen...read more
  2. What is prepaid expen...read more

Recently Viewed

INTERVIEWS

Cimpress

No Interviews

INTERVIEWS

Edu-Station

No Interviews

INTERVIEWS

CES

No Interviews

INTERVIEWS

CES

No Interviews

INTERVIEWS

Cimpress

No Interviews

INTERVIEWS

Cimpress

No Interviews

INTERVIEWS

CK Birla Healthcare

No Interviews

INTERVIEWS

Josh Software

No Interviews

INTERVIEWS

Josh Software

No Interviews

DESIGNATION

Tell us how to improve this page.

Cimpress Accounts Payable Specialist Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

SiliconIndia Interview Questions
2.7
 • 25 Interviews
Xerox Interview Questions
3.8
 • 21 Interviews
Group Bayport Interview Questions
4.2
 • 21 Interviews
Amar Ujala Interview Questions
3.9
 • 19 Interviews
Elsevier Interview Questions
4.4
 • 18 Interviews
View all

Cimpress Accounts Payable Specialist Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

4.0

Skill development

5.0

Work-life balance

4.0

Salary

4.0

Job security

5.0

Company culture

4.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Senior Software Engineer
251 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Graphic Designer
172 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
136 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Lead Software Engineer
101 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Production Artist
57 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Cimpress with

Vistaprint

3.4
Compare

Printvenue

3.9
Compare

Printstop India

3.4
Compare

Printo Document Services

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