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 Lead Interview Questions and Answers

Updated 28 Oct 2024

Cigniti Technologies Lead Interview Experiences

1 interview found

Lead Interview Questions & Answers

user image Anonymous

posted on 28 Oct 2024

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

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

Round 1 - Technical 

(5 Questions)

  • Q1. What is closure?
  • Ans. 

    Closure is the process of finalizing or resolving something, often involving emotional healing or acceptance.

    • Closure is the act of coming to terms with a situation or relationship that has ended.

    • It involves accepting the reality of the situation and moving forward.

    • Closure can help individuals find peace and emotional healing after a difficult experience.

    • Examples of closure include talking things out with a friend after...

  • Answered by AI
  • Q2. What is the difference between let, var and const?
  • Ans. 

    let, var and const are all used to declare variables in JavaScript, but they have different scopes and mutability.

    • let is block-scoped and can be reassigned, var is function-scoped and can be reassigned, const is block-scoped and cannot be reassigned

    • Using let:

    • let x = 10;

    • x = 20; // valid

    • Using var:

    • var y = 5;

    • y = 10; // valid

    • Using const:

    • const z = 15;

    • z = 25; // error, cannot reassign a const variable

  • Answered by AI
  • Q3. What is event loop?
  • Ans. 

    Event loop is a mechanism in programming that allows for asynchronous execution of code by continuously checking and processing events.

    • Event loop is commonly used in JavaScript to handle asynchronous operations.

    • It allows for non-blocking I/O operations by delegating tasks to the operating system.

    • Event loop processes events from the event queue and executes associated callback functions.

    • Example: setTimeout() function in...

  • Answered by AI
  • Q4. What is promise, why do we need it? Why async and await was created when we have promises?
  • Q5. What is the need for callback hell
  • Ans. 

    Callback hell arises from nested callbacks in asynchronous JavaScript code, leading to unreadable and difficult-to-maintain code.

    • Nested callbacks in asynchronous code can lead to deeply nested code structures, making it hard to follow the flow of the program.

    • Error handling becomes more complex in callback hell, as errors need to be propagated through multiple levels of callbacks.

    • Callback hell can also result in code th...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - They take too many rounds depending on the client

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Cigniti Technologies?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Other and was interviewed in May 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Project Details , Framework Architecture, Roles and Responsibilities, Devops basics, Selenium Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - 3 rounds like Technical 1, Technical 2 + Manager , HR Round.

Lead Interview Questions Asked at Other Companies

asked in Leena AI
Q1. Why should we pay you XX Lakhs?
asked in Infosys
Q2. What is CBP and what are the features of it ? which fund function ... read more
Q3. Does Jensen Kobain Solutions Pvt Ltd have a hire and fire policy?
asked in Jade Global
Q4. What are the steps to load Account, Opportunities, Products, and ... read more
asked in HCLTech
Q5. What is document understanding in UiPath?

I applied via Referral and was interviewed in Jul 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic angular question with sone random logic

Interview Preparation Tips

Interview preparation tips for other job seekers - Beware with offer letter terms and norms sometime they tell you some perks but won’t be mention in offer
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Jun 2024, where I was asked the following questions.

  • Q1. Basic java questions 1 coding then scenario based questions
  • Q2. System design question
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Jun 2023. 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 - One-on-one 

(3 Questions)

  • Q1. Print greater number using lambda function
  • Ans. 

    Use lambda function to print greater number

    • Define a lambda function that takes two parameters

    • Use the max() function inside the lambda to compare the two numbers

    • Call the lambda function with two numbers to print the greater one

  • Answered by AI
  • Q2. Explain OOPs concepts
  • Ans. 

    OOPs concepts refer to Object-Oriented Programming principles like inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex implementation detail...

  • Answered by AI
  • Q3. All major C++ topics were covered
Round 3 - One-on-one 

(2 Questions)

  • Q1. Singleton design pattern
  • Q2. Code for Fibonacci series -- both iterative and recursive
  • Ans. 

    Fibonacci series code in iterative and recursive methods

    • Iterative method: Use a loop to calculate Fibonacci numbers

    • Recursive method: Define a function that calls itself to calculate Fibonacci numbers

    • Example for iterative method: int fib(int n) { int a = 0, b = 1, c; for(int i = 2; i <= n; i++) { c = a + b; a = b; b = c; } return b; }

    • Example for recursive method: int fib(int n) { if(n <= 1) return n; return fib(n-1) + f...

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

(2 Questions)

  • Q1. Print 1-10 using 2 threads, in correct order
  • Ans. 

    Use two threads to print numbers 1-10 in correct order

    • Create two threads, one for printing odd numbers and one for printing even numbers

    • Use synchronization mechanisms like mutex or semaphore to ensure correct order

    • Example: Thread 1 prints 1, 3, 5, 7, 9 and Thread 2 prints 2, 4, 6, 8, 10

  • Answered by AI
  • Q2. How to do Unit testing in C++
  • Ans. 

    Unit testing in C++ involves writing test cases for individual units of code to ensure they work as expected.

    • Use a unit testing framework like Google Test or Catch2 to write and run test cases

    • Create separate test files for each unit of code being tested

    • Use assertions to check the expected behavior of the code under test

    • Mock dependencies or use dependency injection to isolate units for testing

    • Run tests regularly to catc...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Iris Software Technical Lead interview:
  • Multithreading
Interview preparation tips for other job seekers - Nice interview process, helpful recruiters.

Skills evaluated in this interview

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

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. Touches all areas like db, language , architecture, design pattens ,Data structure, Microservices ,
  • Q2. Mostly question from strings and arrays and data structure

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. What is the Microservice Design Pattern? Spring Boot, Kafka, DI IC
  • Ans. 

    Microservice Design Pattern structures applications as a collection of loosely coupled services, enhancing scalability and maintainability.

    • Microservices are independently deployable services that communicate over a network.

    • Each microservice focuses on a specific business capability, e.g., user management or payment processing.

    • Spring Boot simplifies the development of microservices with embedded servers and auto-configu...

  • Answered by AI
  • Q2. REST Api, PUB SUB
Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Apr 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(3 Questions)

  • Q1. What is authentication in API requests
  • Ans. 

    Authentication in API requests is the process of verifying the identity of the user or application making the request.

    • Authentication ensures that only authorized users or applications can access the API resources.

    • API requests are authenticated using tokens, API keys, or other credentials.

    • Authentication can be implemented using various protocols such as OAuth, JWT, or Basic Authentication.

    • Authentication is important for...

  • Answered by AI
  • Q2. What are different datatypes in python
  • Ans. 

    Python has several built-in datatypes including numeric, sequence, and mapping types.

    • Numeric types include integers, floats, and complex numbers.

    • Sequence types include lists, tuples, and range objects.

    • Mapping types include dictionaries.

    • Other datatypes include boolean, bytes, and sets.

  • Answered by AI
  • Q3. What is generator and decorator
  • Ans. 

    Generator is a function that returns an iterator. Decorator is a function that takes another function and extends its behavior.

    • Generator functions use the yield keyword to return values one at a time.

    • Decorators are used to modify the behavior of a function without changing its source code.

    • Decorators can be stacked on top of each other to create complex behavior.

    • Example of generator: function* myGenerator() { yield 1; y...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Check the JD carefully and focus on coding questions

Skills evaluated in this interview

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

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

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Technical 

(3 Questions)

  • Q1. Technical questions on the technology
  • Q2. SDLC and STLC and defect life cycle
  • Q3. Write test cases for ATM
  • Ans. 

    Test cases for ATM

    • Verify if the ATM is dispensing the correct amount of cash

    • Check if the ATM is accepting valid cards and rejecting invalid ones

    • Test if the ATM is able to handle multiple transactions in a row

    • Ensure that the ATM is properly secured and user data is protected

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

(2 Questions)

  • Q1. About SQL queries
  • Q2. Communication related questions to analyse the fluency
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before May 2022. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - Coding Test 

It's a general coding test totaly technical basicaly it is for test you core knoledge.

Round 3 - Technical 

(1 Question)

  • Q1. It's technical round appart of the coding round to check the other part of coding.
Round 4 - Client Interview 

(1 Question)

  • Q1. It is also a technical round but it is knowledge base round why they want from you.
Round 5 - One-on-one 

(1 Question)

  • Q1. Finally it's mangerial round, and salary discussion.

Cigniti Technologies Interview FAQs

How many rounds are there in Cigniti Technologies Lead interview?
Cigniti Technologies interview process usually has 1 rounds. The most common rounds in the Cigniti Technologies interview process are Technical.
How to prepare for Cigniti Technologies Lead 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 C#, Java, SQL Server, .NET Framework and .Net Core.
What are the top questions asked in Cigniti Technologies Lead interview?

Some of the top questions asked at the Cigniti Technologies Lead interview -

  1. What is the difference between let, var and con...read more
  2. What is the need for callback h...read more
  3. What is event lo...read more

Tell us how to improve this page.

Overall Interview Experience Rating

2/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

2-4 weeks 100%
View more

Interview Questions from Similar Companies

CitiusTech Interview Questions
3.3
 • 290 Interviews
Altimetrik Interview Questions
3.7
 • 241 Interviews
Xoriant Interview Questions
4.1
 • 213 Interviews
INDIUM Interview Questions
4.0
 • 198 Interviews
Incedo Interview Questions
3.1
 • 193 Interviews
Globant Interview Questions
3.7
 • 183 Interviews
Iris Software Interview Questions
4.0
 • 178 Interviews
ThoughtWorks Interview Questions
3.9
 • 157 Interviews
View all
Cigniti Technologies Lead Salary
based on 245 salaries
₹16.2 L/yr - ₹30 L/yr
34% more than the average Lead Salary in India
View more details

Cigniti Technologies Lead Reviews and Ratings

based on 23 reviews

3.1/5

Rating in categories

2.7

Skill development

2.7

Work-life balance

3.5

Salary

2.5

Job security

2.5

Company culture

2.7

Promotions

2.4

Work satisfaction

Explore 23 Reviews and Ratings
Senior Engineer
640 salaries
unlock blur

₹13.1 L/yr - ₹21.5 L/yr

Senior Test Engineer
606 salaries
unlock blur

₹9.5 L/yr - ₹17 L/yr

Test Lead
376 salaries
unlock blur

₹13.3 L/yr - ₹23.1 L/yr

Test Engineer
371 salaries
unlock blur

₹5 L/yr - ₹10.3 L/yr

Engineer
292 salaries
unlock blur

₹4.1 L/yr - ₹10 L/yr

Explore more salaries
Compare Cigniti Technologies with

Xoriant

4.1
Compare

Photon Interactive

4.1
Compare

CitiusTech

3.3
Compare

Iris Software

4.0
Compare
write
Share an Interview