Upload Button Icon Add office photos
Engaged Employer

i

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

Cigniti Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Cigniti Technologies Test Architect Interview Questions and Answers

Updated 19 Apr 2024

Cigniti Technologies Test Architect Interview Experiences

3 interviews found

Test Architect Interview Questions & Answers

user image Ankita Maitra

posted on 19 Apr 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Framework explanation, no of frameworks worked upon, odd no program using Java 8 ,group by function, how to parss json, ci cd pipeline, java usage in framework,
Round 2 - Technical 

(1 Question)

  • Q1. Same types of questions like Excel reader data using selenium, emp table having the third highest salary

Interview Preparation Tips

Topics to prepare for Cigniti Technologies Test Architect interview:
  • Java
  • oops concept
  • data table web
  • SQL basics

I applied via Naukri.com and was interviewed in Sep 2021. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Question on collection diff between hash map and table.
  • Q2. Can we override interface. If yes how its done and if not why not
  • Ans. 

    Yes, interfaces can be overridden in Java using the 'default' keyword.

    • Interfaces can be overridden in Java 8 or later using the 'default' keyword.

    • The 'default' keyword allows us to provide a default implementation for a method in an interface.

    • If a class implements an interface with a default method, it can choose to override the default implementation.

    • Overriding a default method is done by simply providing a new implem...

  • Answered by AI
  • Q3. Write a code to show overiding in java with real world solution
  • Ans. 

    Code example of method overriding in Java

    • Create a parent class with a method

    • Create a child class that extends the parent class and overrides the method

    • Instantiate the child class and call the method to see the overridden behavior

  • Answered by AI
  • Q4. Features of java8 and uses in the project
  • Ans. 

    Java8 features include lambda expressions, streams, and functional interfaces.

    • Lambda expressions provide concise syntax for functional programming.

    • Streams allow for efficient processing of large data sets.

    • Functional interfaces enable the use of lambda expressions.

    • Optional class helps to avoid null pointer exceptions.

    • Default methods allow for adding new methods to interfaces without breaking existing implementations.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - First round =Java, selenium, devops, CI/CD, writing of programs keep it handy.

Second round =Tram management, technical challenges faced and solutions provided

Skills evaluated in this interview

Test Architect Interview Questions Asked at Other Companies

Q1. Can we override interface. If yes how its done and if not why not
Q2. Write a code to show overiding in java with real world solution
Q3. Features of java8 and uses in the project
asked in Accenture
Q4. How automation framework is built in your project
asked in Accenture
Q5. Use of object repository ( local/shared)

I appeared for an interview before Jul 2021.

Round 1 - Technical 

(1 Question)

  • Q1. Selenium, API and DB
Round 2 - Technical 

(1 Question)

  • Q1. Advanced selenium concepts, API and ETL
Round 3 - Behavioral 

(1 Question)

  • Q1. Projects worked on and details around it.
Round 4 - HR 

(1 Question)

  • Q1. Soft skills, attitude and communication.

Interview Preparation Tips

Interview preparation tips for other job seekers - Best time to apply for Cigniti is while you are serving notice period. You can easily negotiate on package. They won't consider someone with notice period above 30 days.

Interview questions from similar companies

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

Interview Questionnaire 

2 Questions

  • Q1. Explain OOPs concepts using real life example?
  • Ans. 

    OOPs concepts are used in real life to model objects and their behavior.

    • Encapsulation: A car's engine is encapsulated and can only be accessed through specific methods.

    • Inheritance: A sports car is a type of car that inherits properties and methods from the car class.

    • Polymorphism: A person can be a student, teacher, or employee, each with their own unique behavior.

    • Abstraction: A TV remote has buttons that abstract the c...

  • Answered by AI
  • Q2. Internal working of Hashmap?
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and uses hashing to locate values based on their keys.

    • Hashmap uses an array of linked lists to store key-value pairs.

    • The hash function is used to convert the key into an index of the array.

    • If two keys have the same hash value, they are stored in the same linked list.

    • Hashmap provides constant time complexity for insertion, deletion, and retrieval of values.

    • Java's H...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic knowledge of core concepts will be a good to have.

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Aug 2023. 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 tips
Round 2 - Coding Test 

Find count of pairs whose sum is k in an array, with updated scenarios with each solution
hands on code for Java8, Springboot, HIbernate, Microservice architecture
Current project internals

Round 3 - One-on-one 

(1 Question)

  • Q1. Internal working of AWS services, deployment , monitoring, configuring alerts.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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. Questions spring, design patterns.
  • Q2. Tools used like jira, questions on agile scrum.

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview questions on Core java, java 8 streams, two coding questions java, questions on spring boot, Rest api.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant 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 - Technical 

(3 Questions)

  • Q1. Builder design pattern in java
  • Ans. 

    Builder design pattern is a creational design pattern used to construct complex objects step by step.

    • Builder pattern separates the construction of a complex object from its representation.

    • It allows the same construction process to create different representations of the object.

    • Useful when there are multiple ways to construct an object or when the object creation process is complex.

    • Example: StringBuilder in Java allows ...

  • Answered by AI
  • Q2. Docker, MQ series involved
  • Q3. JOIN Query with country , emp name
  • Ans. 

    JOIN query to retrieve country and employee name

    • Use JOIN keyword to combine data from multiple tables

    • Specify the columns to select from each table

    • Use ON keyword to specify the relationship between the tables

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - we need to work in depth in Design patterns , Micro services concepts

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Mix of coding, theory and design questions

I applied via Recruitment Consultant and was interviewed before Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Online test on selenium , java

Interview Preparation Tips

Interview preparation tips for other job seekers - For a QA tester, should focus on selenium, java

I applied via Recruitment Consulltant and was interviewed before Nov 2021. 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 tips
Round 2 - One-on-one 

(1 Question)

  • Q1. Joins, sql queries, unix commands
Round 3 - One-on-one 

(1 Question)

  • Q1. Project description, pl sql concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview process is very fast and easy.Be strong with your basics

Cigniti Technologies Interview FAQs

How many rounds are there in Cigniti Technologies Test Architect interview?
Cigniti Technologies interview process usually has 2-3 rounds. The most common rounds in the Cigniti Technologies interview process are Technical, Behavioral and HR.
How to prepare for Cigniti Technologies Test Architect 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 Cigniti Technologies. The most common topics and skills that interviewers at Cigniti Technologies expect are Core Java, JAXB, OOPS, SOAP UI and Selenium.
What are the top questions asked in Cigniti Technologies Test Architect interview?

Some of the top questions asked at the Cigniti Technologies Test Architect interview -

  1. Can we override interface. If yes how its done and if not why ...read more
  2. Write a code to show overiding in java with real world solut...read more
  3. Features of java8 and uses in the proj...read more

Tell us how to improve this page.

Cigniti Technologies Test Architect Interview Process

based on 1 interview

1 Interview rounds

  • Technical Round
View more

Interview Questions from Similar Companies

CitiusTech Interview Questions
3.4
 • 270 Interviews
Tiger Analytics Interview Questions
3.7
 • 222 Interviews
Altimetrik Interview Questions
3.8
 • 217 Interviews
Incedo Interview Questions
3.1
 • 181 Interviews
Xoriant Interview Questions
4.1
 • 181 Interviews
Globant Interview Questions
3.8
 • 172 Interviews
ThoughtWorks Interview Questions
3.9
 • 147 Interviews
Iris Software Interview Questions
4.0
 • 143 Interviews
Apexon Interview Questions
3.3
 • 139 Interviews
View all
Cigniti Technologies Test Architect Salary
based on 17 salaries
₹16.7 L/yr - ₹33 L/yr
29% more than the average Test Architect Salary in India
View more details

Cigniti Technologies Test Architect Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

4.0

Salary

4.0

Job security

4.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Senior Test Engineer
613 salaries
unlock blur

₹5.5 L/yr - ₹20 L/yr

Senior Engineer
582 salaries
unlock blur

₹7 L/yr - ₹28 L/yr

Test Lead
379 salaries
unlock blur

₹6.8 L/yr - ₹27 L/yr

Test Engineer
367 salaries
unlock blur

₹4 L/yr - ₹11.5 L/yr

Engineer
267 salaries
unlock blur

₹3.2 L/yr - ₹11 L/yr

Explore more salaries
Compare Cigniti Technologies with

Xoriant

4.1
Compare

Photon Interactive

4.0
Compare

CitiusTech

3.4
Compare

Iris Software

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