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

Cimpress Quality Engineer Interview Questions and Answers

Updated 13 Sep 2020

Cimpress Quality Engineer Interview Experiences

1 interview found

Interview Questionnaire 

1 Question

  • Q1. 1.A brief introduction. 2. Experience 3. Technical skills.

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

Subject knowledge is must

Round 2 - HR 

(2 Questions)

  • Q1. Self introduction
  • Q2. Working experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself not lack to say answer
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Aug 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 tips
Round 2 - HR 

(1 Question)

  • Q1. Tell me about yourself
Round 3 - Aptitude Test 

Aptitude and reasoning

Round 4 - HR 

(1 Question)

  • Q1. Ops managerical round

Interview Preparation Tips

Interview preparation tips for other job seekers - Please don't join here ....The salary things are very very less if you working for more than 2 years then you will get a same package also they won't give you decent appraisal.very very worst organization .
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Sep 2023. There were 2 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 

(8 Questions)

  • Q1. Written exam by grammar
  • Q2. Chemistry oriented
  • Ans. 

    Chemical name and then reactions for chemical engineering

  • Answered Anonymously
  • Q3. Differentiate of essay and paragraph
  • Q4. Personal interview
  • Q5. Image format differentiate
  • Ans. 

    Different image formats have unique characteristics and are suitable for different purposes.

    • JPEG: lossy compression, good for photographs

    • PNG: lossless compression, supports transparency

    • GIF: limited color palette, supports animation

    • TIFF: high quality, large file size

  • Answered by AI
  • Q6. Corrections marking in page
  • Ans. 

    Corrections marking in page involves identifying and correcting errors in written content.

    • Identify errors such as spelling mistakes, grammatical errors, and formatting issues

    • Use proofreading symbols or track changes feature in word processing software to mark corrections

    • Provide clear and concise explanations for corrections made

    • Ensure consistency in corrections throughout the document

    • Examples: circling spelling mistake...

  • Answered by AI
  • Q7. Image format differentiate in correction
  • Ans. 

    Different image formats have different correction methods based on their characteristics.

    • JPEG format is lossy and may lose quality when corrected

    • PNG format is lossless and allows for corrections without quality loss

    • TIFF format is high quality but may be larger in file size

    • RAW format retains all original data for extensive corrections

  • Answered by AI
  • Q8. Corrections marking is the pages

Interview Preparation Tips

Interview preparation tips for other job seekers - Good job and then work on quality
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
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Feb 2024.

Round 1 - One-on-one 

(1 Question)

  • Q1. Work related questions
Round 2 - HR 

(1 Question)

  • Q1. Salary discussion
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 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

Cimpress Interview FAQs

How to prepare for Cimpress Quality Engineer 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 Agile, Manual Testing, Quality Engineering, Selenium and API Testing.

Tell us how to improve this page.

Interview Questions from Similar Companies

SiliconIndia Interview Questions
2.7
 • 25 Interviews
Group Bayport Interview Questions
4.1
 • 22 Interviews
Xerox Interview Questions
3.8
 • 21 Interviews
Elsevier Interview Questions
4.4
 • 19 Interviews
Amar Ujala Interview Questions
3.9
 • 19 Interviews
View all
Cimpress Quality Engineer Salary
based on 14 salaries
₹6 L/yr - ₹10 L/yr
89% more than the average Quality Engineer Salary in India
View more details

Cimpress Quality Engineer Reviews and Ratings

based on 2 reviews

4.0/5

Rating in categories

4.8

Skill development

5.0

Work-life balance

4.8

Salary

5.0

Job security

5.0

Company culture

4.0

Promotions

4.8

Work satisfaction

Explore 2 Reviews and Ratings
Senior Software Engineer
257 salaries
unlock blur

₹13 L/yr - ₹34.5 L/yr

Graphic Designer
178 salaries
unlock blur

₹1 L/yr - ₹4.6 L/yr

Software Engineer
142 salaries
unlock blur

₹9 L/yr - ₹20 L/yr

Lead Software Engineer
92 salaries
unlock blur

₹20.5 L/yr - ₹48.7 L/yr

Production Artist
57 salaries
unlock blur

₹1.8 L/yr - ₹5.3 L/yr

Explore more salaries
Compare Cimpress with

TNQ Tech Private Limited

3.6
Compare

OMICS International

2.5
Compare

Amar Ujala

3.9
Compare

Xerox

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